From c97390958051ff88c966350cf4cfbea6dba4415f Mon Sep 17 00:00:00 2001 From: Markus Bullmann Date: Tue, 11 Jun 2019 15:59:57 +0200 Subject: [PATCH] Initial project version --- .gitignore | 2 + code/CMakeLists.txt | 114 + code/FtmKalman.h | 76 + code/Plotti.h | 348 + code/Plotty.h | 712 + code/Settings.h | 142 + code/filter.h | 349 + code/main.cpp | 326 + code/main.h | 2 + code/mainFtm.cpp | 428 + code/mainFtm.h | 4 + code/mesh.h | 29 + code/meshPlotter.h | 240 + map/map.xml | 88 + map/map0_ap_path0.xml | 83 + measurements/data/Pixel2/Path0_0605.csv | 57852 ++++++++++++++++++++++ measurements/data/wifiModel.xml | 3 + 17 files changed, 60798 insertions(+) create mode 100644 .gitignore create mode 100644 code/CMakeLists.txt create mode 100644 code/FtmKalman.h create mode 100644 code/Plotti.h create mode 100644 code/Plotty.h create mode 100644 code/Settings.h create mode 100644 code/filter.h create mode 100644 code/main.cpp create mode 100644 code/main.h create mode 100644 code/mainFtm.cpp create mode 100644 code/mainFtm.h create mode 100644 code/mesh.h create mode 100644 code/meshPlotter.h create mode 100644 map/map.xml create mode 100644 map/map0_ap_path0.xml create mode 100644 measurements/data/Pixel2/Path0_0605.csv create mode 100644 measurements/data/wifiModel.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6bab591 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +build/ +measurements/error \ No newline at end of file diff --git a/code/CMakeLists.txt b/code/CMakeLists.txt new file mode 100644 index 0000000..2eb0610 --- /dev/null +++ b/code/CMakeLists.txt @@ -0,0 +1,114 @@ +# Usage: +# Create build folder, like RC-build next to RobotControl and WifiScan folder +# CD into build folder and execute 'cmake -DCMAKE_BUILD_TYPE=Debug ../RobotControl' +# make + +CMAKE_MINIMUM_REQUIRED(VERSION 2.8) + +# select build type +SET( CMAKE_BUILD_TYPE "${CMAKE_BUILD_TYPE}" ) + +PROJECT(ProLogic) + +IF(NOT CMAKE_BUILD_TYPE) + MESSAGE(STATUS "No build type selected. Default to Debug") + SET(CMAKE_BUILD_TYPE "Debug") +ENDIF() + + + +INCLUDE_DIRECTORIES( + ../ + ../../ + ../../../ + ../../../../ +) + + +FILE(GLOB HEADERS + filter.h + mesh.h + meshPlotter.h + Plotti.h + Plotty.h + Settings.h + FtmKalman.h + main.h + mainFtm.h +) + + +FILE(GLOB SOURCES + ../../Indoor/lib/tinyxml/tinyxml2.cpp + ../../Indoor/lib/Recast/*.cpp + main.cpp + mainFtm.cpp +) + + +if ("${CMAKE_GENERATOR}" MATCHES "Visual Studio*") + add_definitions( + -D_USE_MATH_DEFINES + -DUNICODE + -D_UNICODE + -DNOGDI + ) + + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /permissive-") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zc:__cplusplus") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c++17") +else() + # system specific compiler flags + ADD_DEFINITIONS( + + #-std=gnu++14 + + -lstdc++fs + + -Wall + -Werror=return-type + -Wextra + -Wpedantic + + -fstack-protector-all + + -g3 + #-O2 + -march=native + + ) +endif() + +add_definitions( +# -DWITH_TESTS + -DWITH_ASSERTIONS + -DWITH_DEBUG_LOG +# -DWITH_DEBUG_PLOT +# -D_GLIBCXX_DEBUG +) + +# allow OMP +find_package(OpenMP) +if (OPENMP_FOUND) + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}") + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}") +endif() + + +# build a binary file +ADD_EXECUTABLE( + ${PROJECT_NAME} + ${HEADERS} + ${SOURCES} +) + +# needed external libraries +TARGET_LINK_LIBRARIES( + ${PROJECT_NAME} +# stdc++fs +# gtest +# pthread +) + +SET(CMAKE_C_COMPILER ${CMAKE_CXX_COMPILER}) + diff --git a/code/FtmKalman.h b/code/FtmKalman.h new file mode 100644 index 0000000..13ea915 --- /dev/null +++ b/code/FtmKalman.h @@ -0,0 +1,76 @@ +#pragma once + +#include + +#include + + +struct Kalman +{ + int nucID = 0; // debug only + + Eigen::Matrix x; // predicted state + Eigen::Matrix P; // Covariance + + float R = 30; // measurement noise covariance + + float lastTimestamp = NAN; // in sec + + Kalman(): nucID(0) { } + + Kalman(int nucID) + : nucID(nucID) + {} + + Kalman(int nucID, float measStdDev) + : nucID(nucID), R(measStdDev*measStdDev) + {} + + float predict(const Timestamp timestamp, const float measurment) + { + constexpr auto square = [](float x) { return x * x; }; + const auto I = Eigen::Matrix2f::Identity(); + + // init kalman filter + if (isnan(lastTimestamp)) + { + P << 10, 0, + 0, 10; // Initial Uncertainty + + x << measurment, + 0; + } + + const float dt = isnan(lastTimestamp) ? 1 : timestamp.sec() - lastTimestamp; + lastTimestamp = timestamp.sec(); + + Eigen::Matrix H; // Measurement function + H << 1, 0; + + Eigen::Matrix2f A; // Transition Matrix + A << 1, dt, + 0, 1; + + Eigen::Matrix2f Q; // Process Noise Covariance + Q << 0, 0, + 0, square(0.3); + + // Prediction + x = A * x; // Prädizierter Zustand aus Bisherigem und System + P = A * P*A.transpose()+Q; // Prädizieren der Kovarianz + + // Correction + float Z = measurment; + auto y = Z - (H*x); // Innovation aus Messwertdifferenz + auto S = (H*P*H.transpose()+R); // Innovationskovarianz + auto K = P * H.transpose()* (1/S); //Filter-Matrix (Kalman-Gain) + + x = x + (K*y); // aktualisieren des Systemzustands + P = (I - (K*H))*P; // aktualisieren der Kovarianz + + return x(0); + } +}; + + + diff --git a/code/Plotti.h b/code/Plotti.h new file mode 100644 index 0000000..353cfa3 --- /dev/null +++ b/code/Plotti.h @@ -0,0 +1,348 @@ +#pragma once + +#include "Settings.h" + +#include + +#include +#include + +#include + +#include +#include +#include + + +#include +#include +#include +#include +#include + +#include + +struct Plotti { + + K::Gnuplot gp; + K::GnuplotSplot splot; + K::GnuplotSplotElementPoints pGrid; + K::GnuplotSplotElementLines pFloor; + K::GnuplotSplotElementLines pOutline; + K::GnuplotSplotElementLines pStairs; + K::GnuplotSplotElementPoints pAPs; + K::GnuplotSplotElementPoints pInterest; + K::GnuplotSplotElementPoints pParticles; + K::GnuplotSplotElementPoints pNormal1; + K::GnuplotSplotElementPoints pNormal2; + K::GnuplotSplotElementColorPoints pDistributation1; + K::GnuplotSplotElementColorPoints pDistributation2; + K::GnuplotSplotElementColorPoints pColorPoints; + K::GnuplotSplotElementLines gtPath; + K::GnuplotSplotElementLines estPath; + K::GnuplotSplotElementLines estPathSmoothed; + + Plotti() { + gp << "set xrange[0-50:70+50]\nset yrange[0-50:50+50]\nset ticslevel 0\n"; + splot.add(&pGrid); pGrid.setPointSize(0.25); pGrid.getColor().setHexStr("#888888"); + splot.add(&pAPs); pAPs.setPointSize(0.7); + splot.add(&pColorPoints); pColorPoints.setPointSize(0.6); + splot.add(&pDistributation1); pDistributation1.setPointSize(0.6); + splot.add(&pDistributation2); pDistributation2.setPointSize(0.6); + splot.add(&pParticles); pParticles.getColor().setHexStr("#0000ff"); pParticles.setPointSize(0.4f); + splot.add(&pNormal1); pNormal1.getColor().setHexStr("#ff00ff"); pNormal1.setPointSize(0.4f); + splot.add(&pNormal2); pNormal2.getColor().setHexStr("#00aaff"); pNormal2.setPointSize(0.4f); + splot.add(&pFloor); + splot.add(&pOutline); pOutline.getStroke().getColor().setHexStr("#999999"); + splot.add(&pStairs); pStairs.getStroke().getColor().setHexStr("#000000"); + splot.add(&pInterest); pInterest.setPointSize(2); pInterest.getColor().setHexStr("#ff0000"); + splot.add(>Path); gtPath.getStroke().setWidth(2); gtPath.getStroke().getColor().setHexStr("#000000"); + splot.add(&estPath); estPath.getStroke().setWidth(2); estPath.getStroke().getColor().setHexStr("#00ff00"); + splot.add(&estPathSmoothed); estPathSmoothed.getStroke().setWidth(2); estPathSmoothed.getStroke().getColor().setHexStr("#0000ff"); + } + + void addLabel(const int idx, const Point3 p, const std::string& str, const int fontSize = 10) { + gp << "set label " << idx << " at " << p.x << "," << p.y << "," << p.z << "'" << str << "'" << " font '," << fontSize << "'\n"; + } + + void addLabelV(const int idx, const Point3 p, const std::string& str, const int fontSize = 10) { + gp << "set label " << idx << " at " << p.x << "," << p.y << "," << p.z << "'" << str << "'" << " font '," << fontSize << "' rotate by 90\n"; + } + + + void showAngle(const int idx, const float rad, const Point2 cen, const std::string& str) { + + Point2 rot(0, 1); + Point2 pos = cen + rot.rotated(rad) * 0.05; + + gp << "set label "<> samples){ + + float min = +9999; + float max = -9999; + + pDistributation1.clear(); + for (int i = 0; i < samples.size(); ++i) { + //if (i % 10 != 0) {continue;} + + double prob = samples[i].weight; + if (prob < min) {min = prob;} + if (prob > max) {max = prob;} + + K::GnuplotPoint3 pos(samples[i].state.position.x_cm / 100.0f, samples[i].state.position.y_cm / 100.0f, samples[i].state.position.z_cm / 100.0f); + pDistributation1.add(pos, prob); + } + + if (min == max) {min -= 1;} + gp << "set cbrange [" << min << ":" << max << "]\n"; + } + + void debugDistribution2(std::vector> samples){ + + float min = +9999; + float max = -9999; + + pDistributation2.clear(); + for (int i = 0; i < samples.size(); ++i) { + if (i % 25 != 0) {continue;} + + double prob = samples[i].weight; + if (prob < min) {min = prob;} + if (prob > max) {max = prob;} + + K::GnuplotPoint3 pos(samples[i].state.position.x_cm / 100.0f, samples[i].state.position.y_cm / 100.0f, samples[i].state.position.z_cm / 100.0f); + pDistributation2.add(pos, prob); + } + + if (min == max) {min -= 1;} + gp << "set cbrange [" << min << ":" << max << "]\n"; + } + + void drawNormalN1(Distribution::NormalDistributionN normParticle){ + + pNormal1.clear(); + for (int i = 0; i < 100000; ++i) { + if (++i % 25 != 0) {continue;} + Eigen::VectorXd vec = normParticle.draw(); + K::GnuplotPoint3 pos(vec.x(), vec.y(), vec.z()); + pNormal1.add(pos); + } + + } + + void drawNormalN2(Distribution::NormalDistributionN normParticle){ + + pNormal2.clear(); + for (int i = 0; i < 100000; ++i) { + if (++i % 25 != 0) {continue;} + Eigen::VectorXd vec = normParticle.draw(); + K::GnuplotPoint3 pos(vec.x(), vec.y(), vec.z()); + pNormal2.add(pos); + } + } + + void debugWiFi(WiFiModelLogDistCeiling& model, const WiFiMeasurements& scan, const Timestamp curTS, const float z) { + + WiFiObserverFree wiFiProbability(Settings::WiFiModel::sigma, model); + const WiFiMeasurements wifiObs = Settings::WiFiModel::vg_eval.group(scan); + + float min = +9999; + float max = -9999; + + const float step = 2.0f; + for (float x = 0; x < 80; x += step) { + for (float y = 0; y < 55; y += step) { + Point3 pt(x,y,z); + double prob = wiFiProbability.getProbability(pt + Point3(0,0,1.3), curTS, wifiObs); + + if (prob < min) {min = prob;} + if (prob > max) {max = prob;} + pColorPoints.add(K::GnuplotPoint3(x,y,z), prob); + } + } + + if (min == max) {min -= 1;} + gp << "set cbrange [" << min << ":" << max << "]\n"; + + } + + template void debugProb(Grid& grid, std::function func, const MyObs& obs) { + + pColorPoints.clear(); + +// const float step = 2.0; +// float z = 0; +// for (float x = -20; x < 90; x += step) { +// for (float y = -10; y < 60; y += step) { +// const Point3 pos_m(x,y,z); +// const double prob = func(obs, pos_m); +// pColorPoints.add(K::GnuplotPoint3(x,y,z), prob); +// } +// } + + std::minstd_rand gen; + std::uniform_int_distribution dist(0, grid.getNumNodes()-1); + + float min = +9999; + float max = -9999; + + for (int i = 0; i < 10000; ++i) { + int idx = dist(gen); + Node& n = grid[idx]; + const Point3 pos_cm(n.x_cm, n.y_cm, n.z_cm); + const Point3 pos_m = pos_cm / 100.0f; + const double prob = func(obs, pos_m); + if (prob < min) {min = prob;} + if (prob > max) {max = prob;} + pColorPoints.add(K::GnuplotPoint3(pos_m.x, pos_m.y, pos_m.z), prob); + } + + if (min == max) {min -= 1;} + + gp << "set cbrange [" << min << ":" << max << "]\n"; + + } + + void addStairs(Floorplan::IndoorMap* map) { + + for (Floorplan::Floor* f : map->floors) { + for (Floorplan::Stair* stair : f->stairs) { + std::vector quads = Floorplan::getQuads(stair->getParts(), f); + for (const Floorplan::Quad3& quad : quads) { + for (int i = 0; i < 4; ++i) { + int idx1 = i; + int idx2 = (i+1) % 4; + pStairs.addSegment( + K::GnuplotPoint3(quad[idx1].x,quad[idx1].y, quad[idx1].z), + K::GnuplotPoint3(quad[idx2].x,quad[idx2].y, quad[idx2].z) + ); + } + } + } + } + + } + + void addFloors(Floorplan::IndoorMap* map) { + + for (Floorplan::Floor* f : map->floors) { + for (Floorplan::FloorObstacle* obs : f->obstacles) { + Floorplan::FloorObstacleLine* line = dynamic_cast(obs); + if (line) { + K::GnuplotPoint3 p1(line->from.x, line->from.y, f->atHeight); + K::GnuplotPoint3 p2(line->to.x, line->to.y, f->atHeight); + pFloor.addSegment(p1, p2); + } + } + } + + } + + void addOutline(Floorplan::IndoorMap* map) { + + for (Floorplan::Floor* f : map->floors) { + for (Floorplan::FloorOutlinePolygon* poly : f->outline) { + const int cnt = poly->poly.points.size(); + for (int i = 0; i < cnt; ++i) { + Point2 p1 = poly->poly.points[(i+0)]; + Point2 p2 = poly->poly.points[(i+1)%cnt]; + K::GnuplotPoint3 gp1(p1.x, p1.y, f->atHeight); + K::GnuplotPoint3 gp2(p2.x, p2.y, f->atHeight); + pOutline.addSegment(gp1, gp2); + } + } + } + + } + + template void addGrid(Grid& grid) { + pGrid.clear(); + for (const Node& n : grid) { + K::GnuplotPoint3 p(n.x_cm, n.y_cm, n.z_cm); + pGrid.add(p/100.0f); + } + } + + template void addParticles(const std::vector>& particles) { + pParticles.clear(); + int i = 0; + for (const SMC::Particle& p : particles) { + if (++i % 25 != 0) {continue;} + K::GnuplotPoint3 pos(p.state.position.x_cm, p.state.position.y_cm, p.state.position.z_cm); + pParticles.add(pos / 100.0f); + } + } + + void show() { + gp.draw(splot); + gp.flush(); + } + + void saveToFile(std::ofstream& stream){ + gp.draw(splot); + stream << "set terminal x11 size 2000,1500\n"; + stream << gp.getBuffer(); + stream << "pause -1\n"; + gp.flush(); + } + + void printSingleFloor(const std::string& path, const int floorNum) { + gp << "set terminal png size 1280,720\n"; + gp << "set output '" << path << "_" << floorNum <<".png'\n"; + gp << "set view 0,0\n"; + gp << "set zrange [" << (floorNum * 4) - 2 << " : " << (floorNum * 4) + 2 << "]\n"; + gp << "set autoscale xy\n"; + } + + void printSideView(const std::string& path, const int degree) { + gp << "set terminal png size 1280,720\n"; + gp << "set output '" << path << "_deg" << degree <<".png'\n"; + gp << "set view 90,"<< degree << "\n"; + gp << "set autoscale xy\n"; + gp << "set autoscale z\n"; + } + + void printOverview(const std::string& path) { + gp << "set terminal png size 1280,720\n"; + gp << "set output '" << path << "_overview" << ".png'\n"; + gp << "set view 75,60\n"; + gp << "set autoscale xy\n"; + gp << "set autoscale z\n"; + } + + +}; diff --git a/code/Plotty.h b/code/Plotty.h new file mode 100644 index 0000000..b988eea --- /dev/null +++ b/code/Plotty.h @@ -0,0 +1,712 @@ +#pragma once + +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +struct Color { + + uint8_t r; + uint8_t g; + uint8_t b; + + Color() : r(0), g(0), b(0) { + ; + } + + static Color fromRGB(const uint8_t r, const uint8_t g, const uint8_t b) { + Color c; c.setRGB(r,g,b); + return c; + } + + static Color fromHSV(const uint8_t h, const uint8_t s, const uint8_t v) { + Color c; c.setHSV(h,s,v); + return c; + } + + void setRGB(const uint8_t r, const uint8_t g, const uint8_t b) { + this->r = r; + this->g = g; + this->b = b; + } + + void setHSV(const uint8_t h, const uint8_t s, const uint8_t v) { + + uint8_t region, remainder, p, q, t; + + region = h / 43; + remainder = (h - (region * 43)) * 6; + + p = (v * (255 - s)) >> 8; + q = (v * (255 - ((s * remainder) >> 8))) >> 8; + t = (v * (255 - ((s * (255 - remainder)) >> 8))) >> 8; + + switch (region) { + case 0: + r = v; g = t; b = p; + break; + case 1: + r = q; g = v; b = p; + break; + case 2: + r = p; g = v; b = t; + break; + case 3: + r = p; g = q; b = v; + break; + case 4: + r = t; g = p; b = v; + break; + default: + r = v; g = p; b = q; + break; + } + + } + + std::string toHEX() const { + char buf[8]; + sprintf(buf, "#%02x%02x%02x", r, g, b); + std::string color(buf); + return color; + } + +}; + + +class Plotty { + +public: + + const Floorplan::IndoorMap* map; + K::Gnuplot gp; + K::GnuplotSplot splot; + K::GnuplotSplotElementPoints points; + K::GnuplotSplotElementColorPoints cpoints; + + K::GnuplotSplotElementLines pathReal; + K::GnuplotSplotElementLines pathEst; + K::GnuplotSplotElementColorPoints particles; + + K::GnuplotSplotElementLines mapOutlineGlass; + K::GnuplotSplotElementLines mapOutlineDrywall; + K::GnuplotSplotElementLines mapOutlineConcrete; + K::GnuplotSplotElementLines mapBBoxes; + + K::GnuplotSplotElementEmpty emptyElem; + + + K::GnuplotSplotElementPM3D pm3doutline; + + std::string codeFile; + + struct Settings { + std::vector floors = {}; + bool stairs = true; + bool obstacles = true; + bool outline = true; + bool outlineColorCustom = false; + bool skipI1 = false; + K::GnuplotColor outlineColor = K::GnuplotColor::fromRGB(128,128,128); + float minZ = -9999; + float maxZ = +9999; + } settings; + +public: + + Plotty(const Floorplan::IndoorMap* map) : map(map) { + + //gp << "set view equal xy\n"; + + //gp << "set palette model RGB\n"; + //gp << "r(x) = (x < 0) ? 0 : (x/2)\n"; + //gp << "g(x) = 0\n"; + //gp << "b(x) = (x > 0) ? 0 : (-x/2)\n"; + //gp << "set palette model RGB functions r(gray),g(gray),b(gray)\n"; + gp << "set ticslevel 0\n"; + + + // how to draw the floorplan + mapOutlineConcrete.getStroke().getColor().setHexStr("#888888"); mapOutlineConcrete.getStroke().setWidth(2); + mapOutlineDrywall.getStroke().getColor().setHexStr("#888888"); + mapOutlineGlass.getStroke().getColor().setHexStr("#888888"); mapOutlineGlass.getStroke().setType(K::GnuplotDashtype::DASHED); + mapBBoxes.getStroke().setWidth(2); + + splot.add(&emptyElem); + + splot.add(&mapOutlineConcrete); + splot.add(&mapOutlineDrywall); + splot.add(&mapOutlineGlass); + splot.add(&mapBBoxes); + + splot.add(&particles); particles.setPointSize(0.20); //particles.setColorHex("#777777"); + + splot.add(&pathReal); pathReal.getStroke().setWidth(2); pathReal.getStroke().getColor().setHexStr("#000000"); + splot.add(&pathEst); pathEst.getStroke().setWidth(2); pathEst.getStroke().getColor().setHexStr("#0000ff"); + + splot.add(&pm3doutline); + + splot.add(&points); + points.setPointType(7); + points.setPointSize(0.5); + + splot.add(&cpoints); + cpoints.setPointSize(2); + cpoints.setPointType(7); + + splot.getView().setEnabled(true); + + } + + void addCircle(int id, const Point2& center, float radius) + { + auto c = K::GnuplotCoordinate2(center.x, center.y, K::GnuplotCoordinateSystem::FIRST); + auto r = K::GnuplotCoordinate1(radius, K::GnuplotCoordinateSystem::FIRST); + + K::GnuplotFill fill(K::GnuplotFillStyle::EMPTY, K::GnuplotColor::fromRGB(0, 0, 0)); + K::GnuplotStroke stroke(K::GnuplotDashtype::SOLID, 1, K::GnuplotColor::fromRGB(255, 0, 0)); + + K::GnuplotObjectCircle* obj = new K::GnuplotObjectCircle(c, r, fill, stroke); + + splot.getObjects().set(id, obj); + + } + + void addBBoxes(const BBoxes3& boxes, const K::GnuplotColor& c) { + for (BBox3 bb : boxes.get()) { + //&&addBBoxPoly(bb, c); + //bb.shrink(0.98); + addBBoxPoly2(bb, c); + } + } + + void addBBoxPoly2(const BBox3& bb, const K::GnuplotColor& color) { + + + K::GnuplotFill filler = K::GnuplotFill(K::GnuplotFillStyle::SOLID, color); + K::GnuplotStroke stroke(K::GnuplotDashtype::NONE, 1, color); + + K::GnuplotObjectPolygon* gpol1 = new K::GnuplotObjectPolygon(filler, stroke); + gpol1->add(K::GnuplotCoordinate3(bb.getMin().x, bb.getMin().y, bb.getMin().z, K::GnuplotCoordinateSystem::FIRST)); + gpol1->add(K::GnuplotCoordinate3(bb.getMax().x, bb.getMin().y, bb.getMin().z, K::GnuplotCoordinateSystem::FIRST)); + gpol1->add(K::GnuplotCoordinate3(bb.getMax().x, bb.getMax().y, bb.getMin().z, K::GnuplotCoordinateSystem::FIRST)); + gpol1->add(K::GnuplotCoordinate3(bb.getMin().x, bb.getMax().y, bb.getMin().z, K::GnuplotCoordinateSystem::FIRST)); + gpol1->close(); + gpol1->setZIndex(bb.getMin().z - 0.1); + splot.getObjects().add(gpol1); + + K::GnuplotColor color2 = K::GnuplotColor::fromRGB(128,128,128); + K::GnuplotStroke stroke2(K::GnuplotDashtype::NONE, 1, color2); + K::GnuplotFill noFiller = K::GnuplotFill(K::GnuplotFillStyle::EMPTY_BORDER, color2); + + K::GnuplotObjectPolygon* gpol2 = new K::GnuplotObjectPolygon(noFiller, stroke2); + gpol2->add(K::GnuplotCoordinate3(bb.getMin().x, bb.getMin().y, bb.getMax().z-2, K::GnuplotCoordinateSystem::FIRST)); + gpol2->add(K::GnuplotCoordinate3(bb.getMax().x, bb.getMin().y, bb.getMax().z-2, K::GnuplotCoordinateSystem::FIRST)); + gpol2->add(K::GnuplotCoordinate3(bb.getMax().x, bb.getMax().y, bb.getMax().z-2, K::GnuplotCoordinateSystem::FIRST)); + gpol2->add(K::GnuplotCoordinate3(bb.getMin().x, bb.getMax().y, bb.getMax().z-2, K::GnuplotCoordinateSystem::FIRST)); + gpol2->close(); + gpol2->setZIndex(bb.getMin().z + 3.1); + splot.getObjects().add(gpol2); + + K::GnuplotObjectPolygon* gpol3a = new K::GnuplotObjectPolygon(noFiller, stroke2); + gpol3a->add(K::GnuplotCoordinate3(bb.getMin().x, bb.getMin().y, bb.getMin().z, K::GnuplotCoordinateSystem::FIRST)); + gpol3a->add(K::GnuplotCoordinate3(bb.getMin().x, bb.getMin().y, bb.getMax().z-2, K::GnuplotCoordinateSystem::FIRST)); + gpol3a->setZIndex(bb.getMin().z + 1.1); + splot.getObjects().add(gpol3a); + K::GnuplotObjectPolygon* gpol3b = new K::GnuplotObjectPolygon(noFiller, stroke2); + gpol3b->add(K::GnuplotCoordinate3(bb.getMax().x, bb.getMin().y, bb.getMin().z, K::GnuplotCoordinateSystem::FIRST)); + gpol3b->add(K::GnuplotCoordinate3(bb.getMax().x, bb.getMin().y, bb.getMax().z-2, K::GnuplotCoordinateSystem::FIRST)); + gpol3b->setZIndex(bb.getMin().z + 1.1); + splot.getObjects().add(gpol3b); + K::GnuplotObjectPolygon* gpol3c = new K::GnuplotObjectPolygon(noFiller, stroke2); + gpol3c->add(K::GnuplotCoordinate3(bb.getMin().x, bb.getMax().y, bb.getMin().z, K::GnuplotCoordinateSystem::FIRST)); + gpol3c->add(K::GnuplotCoordinate3(bb.getMin().x, bb.getMax().y, bb.getMax().z-2, K::GnuplotCoordinateSystem::FIRST)); + gpol3c->setZIndex(bb.getMin().z + 1.1); + splot.getObjects().add(gpol3c); + K::GnuplotObjectPolygon* gpol3d = new K::GnuplotObjectPolygon(noFiller, stroke2); + gpol3d->add(K::GnuplotCoordinate3(bb.getMax().x, bb.getMax().y, bb.getMin().z, K::GnuplotCoordinateSystem::FIRST)); + gpol3d->add(K::GnuplotCoordinate3(bb.getMax().x, bb.getMax().y, bb.getMax().z-2, K::GnuplotCoordinateSystem::FIRST)); + gpol3d->setZIndex(bb.getMin().z + 1.1); + splot.getObjects().add(gpol3d); + + + } + + void addBBox(const BBox3& bb) { + + +// // floor +// mapBBoxes.add({bb.getMin().x, bb.getMin().y, bb.getMin().z}); +// mapBBoxes.add({bb.getMax().x, bb.getMin().y, bb.getMin().z}); +// mapBBoxes.add({bb.getMax().x, bb.getMax().y, bb.getMin().z}); +// mapBBoxes.add({bb.getMin().x, bb.getMax().y, bb.getMin().z}); +// mapBBoxes.add({bb.getMin().x, bb.getMin().y, bb.getMin().z}); +// mapBBoxes.splitFace(); mapBBoxes.splitFace(); + +// // ceil +// mapBBoxes.add({bb.getMin().x, bb.getMin().y, bb.getMax().z}); +// mapBBoxes.add({bb.getMax().x, bb.getMin().y, bb.getMax().z}); +// mapBBoxes.add({bb.getMax().x, bb.getMax().y, bb.getMax().z}); +// mapBBoxes.add({bb.getMin().x, bb.getMax().y, bb.getMax().z}); +// mapBBoxes.add({bb.getMin().x, bb.getMin().y, bb.getMax().z}); +// mapBBoxes.splitFace(); mapBBoxes.splitFace(); + +// // up +// mapBBoxes.addSegment({bb.getMin().x, bb.getMin().y, bb.getMin().z}, {bb.getMin().x, bb.getMin().y, bb.getMax().z}); +// mapBBoxes.addSegment({bb.getMax().x, bb.getMin().y, bb.getMin().z}, {bb.getMax().x, bb.getMin().y, bb.getMax().z}); +// mapBBoxes.addSegment({bb.getMin().x, bb.getMax().y, bb.getMin().z}, {bb.getMin().x, bb.getMax().y, bb.getMax().z}); +// mapBBoxes.addSegment({bb.getMax().x, bb.getMax().y, bb.getMin().z}, {bb.getMax().x, bb.getMax().y, bb.getMax().z}); + + } + + void addBBoxPoly(const BBox3& bb, K::GnuplotColor c) { + + K::GnuplotObjectPolygon* poly = new K::GnuplotObjectPolygon(); + poly->add(K::GnuplotCoordinate3(bb.getMin().x, bb.getMin().y, bb.getMin().z, K::GnuplotCoordinateSystem::FIRST)); + poly->add(K::GnuplotCoordinate3(bb.getMax().x, bb.getMin().y, bb.getMin().z, K::GnuplotCoordinateSystem::FIRST)); + poly->add(K::GnuplotCoordinate3(bb.getMax().x, bb.getMax().y, bb.getMin().z, K::GnuplotCoordinateSystem::FIRST)); + poly->add(K::GnuplotCoordinate3(bb.getMin().x, bb.getMax().y, bb.getMin().z, K::GnuplotCoordinateSystem::FIRST)); + poly->close(); + poly->setStroke(K::GnuplotStroke::NONE()); + poly->setFill(K::GnuplotFill(K::GnuplotFillStyle::SOLID, c)); + splot.getObjects().add(poly); + + } + + void setGroundTruth(const Point3 pos_m) { + gp << "set arrow 998 from " << pos_m.x << "," << pos_m.y << "," << pos_m.z << " to " << pos_m.x << "," << pos_m.y << "," << pos_m.z+1 << " front \n"; + } + void setCurEst(const Point3 pos_m) { + gp << "set arrow 999 from " << pos_m.x << "," << pos_m.y << "," << pos_m.z << " to " << pos_m.x << "," << pos_m.y << "," << pos_m.z+1 << " front \n"; + } + + + void setPaletteRedBlue() { + + float max = -9999; + float min = +9999; + for (const auto& e : cpoints.get()) { + if (e.color > max) {max = e.color;} + if (e.color < min) {min = e.color;} + } + setPaletteRedBlue(min, max); + + } + + void setPaletteRedBlue(const float blueVal, const float redVal) { + + // we need to map the range from [blueVal:redVal] to [0:1] + const float min = blueVal; + const float max = redVal; + const float range = (max - min); + const float center01 = (0-min)/range; + + // values above 0 dB = red + // values below 0 dB = blue + gp << "set palette model RGB\n"; + gp << "cen01 = " << center01 << "\n"; + gp << "r(x) = (x < cen01) ? 0 : ((x-cen01) / (1-cen01))\n"; + gp << "g(x) = 0\n"; + gp << "b(x) = (x > cen01) ? 0 : (1 - (x/cen01))\n"; + gp << "set palette model RGB functions r(gray),g(gray),b(gray)\n"; + } + + void addLabel(const std::string& txt, const Point3 pos) { + //gp << "set label '" << txt << "' at " << pos.x << "," << pos.y << "," << pos.z << "\n"; + splot.getCustom() << "set label '" << txt << "' at " << pos.x << "," << pos.y << "," << pos.z << " front\n"; + } + + void setActivity(const int act) { + + std::string activity = "Unkown"; + if(act == 0){ + activity = "Standing"; + } else if(act == 1) { + activity = "Walking"; + } else if(act == 2) { + activity = "Up"; + } else if(act == 3) { + activity = "Down"; + } + + gp << "set label 1002 at screen 0.02, 0.94 'Act: " << activity << "'\n"; + } + + void addRectangle(const Point3 p1, const Point3 p2, const Color c, bool front = false, bool fill = true) { + std::vector points = { + Point3(p1.x, p1.y, p1.z), + Point3(p2.x, p1.y, p1.z), + Point3(p2.x, p2.y, p1.z), + Point3(p1.x, p2.y, p1.z), + Point3(p1.x, p1.y, p1.z), + }; + addPolygon(points, c.toHEX(), front, fill); + } + + void addRectangleW(const Point3 p1, const Point3 p2, const K::GnuplotColor c, const float w, bool front = false) { + std::vector points = { + Point3(p1.x, p1.y, p1.z), + Point3(p2.x, p1.y, p1.z), + Point3(p2.x, p2.y, p1.z), + Point3(p1.x, p2.y, p1.z), + Point3(p1.x, p1.y, p1.z), + }; + K::GnuplotObjectPolygon* poly = new K::GnuplotObjectPolygon(); + poly->getStroke().setWidth(w); + poly->getStroke().setColor(c); + poly->setFront(front); + for (const Point3 p : points) { + poly->add(K::GnuplotCoordinate3(p.x, p.y, p.z, K::GnuplotCoordinateSystem::FIRST)); + } + splot.getObjects().add(poly); + } + + K::GnuplotObjectPolygon* addStartIndicator(const Point3 pt, const std::string& color, const float s = 2) { + +// for (const Point3 p : points) { +// if (p.z < settings.minZ) {return nullptr;} +// if (p.z > settings.maxZ) {return nullptr;} +// } + K::GnuplotObjectPolygon* poly = new K::GnuplotObjectPolygon(); + poly->setFill(K::GnuplotFill(K::GnuplotFillStyle::SOLID, K::GnuplotColor::fromHexStr(color))); + poly->setStroke(K::GnuplotStroke(K::GnuplotDashtype::SOLID, 1, K::GnuplotColor::fromRGB(0,0,0))); + //poly->setStroke(K::GnuplotStroke::NONE()); + poly->add(K::GnuplotCoordinate3(pt.x-s, pt.y-s, pt.z, K::GnuplotCoordinateSystem::FIRST)); + poly->add(K::GnuplotCoordinate3(pt.x+s, pt.y-s, pt.z, K::GnuplotCoordinateSystem::FIRST)); + poly->add(K::GnuplotCoordinate3(pt.x+s, pt.y+s, pt.z, K::GnuplotCoordinateSystem::FIRST)); + poly->add(K::GnuplotCoordinate3(pt.x-s, pt.y+s, pt.z, K::GnuplotCoordinateSystem::FIRST)); + poly->close(); + poly->setFront(true); + splot.getObjects().add(poly); + + return poly; + + } + + K::GnuplotObjectPolygon* addPolygon(const std::vector& points, const std::string& color, bool front = false, bool fill = true, const float alpha = 1) { + + for (const Point3 p : points) { + if (p.z < settings.minZ) {return nullptr;} + if (p.z > settings.maxZ) {return nullptr;} + } + + const K::GnuplotFill pfill = (fill) ? (K::GnuplotFill(K::GnuplotFillStyle::SOLID, K::GnuplotColor::fromHexStr(color))) : (K::GnuplotFill::NONE()); + const K::GnuplotStroke pstroke = (!fill) ? (K::GnuplotStroke(K::GnuplotDashtype::SOLID, 1.0, K::GnuplotColor::fromHexStr(color))) : (K::GnuplotStroke::NONE()); + + K::GnuplotObjectPolygon* poly = new K::GnuplotObjectPolygon(pfill, pstroke); + for (const Point3 p : points) { + poly->add(K::GnuplotCoordinate3(p.x, p.y, p.z, K::GnuplotCoordinateSystem::FIRST)); + poly->setZIndex(p.z); // manual depth ordering + poly->getFill().setAlpha(alpha); + } + poly->setFront(front); + + splot.getObjects().add(poly); + + +// gp << "set object polygon from "; +// for (size_t i = 0; i < points.size(); ++i) { +// const Point3 p = points[i]; +// if (i > 0) {gp << " to ";} +// gp << p.x << "," << p.y << "," << p.z << " "; +// } +// gp << (front ? "front" : ""); +// if (fill) {gp << " fs solid ";} else {gp << " fs transparent ";} +// gp << " fc rgb " << "'" << color << "'"; +// gp << "\n"; + + return poly; + + } + + void setZRange(const float min, const float max) { + gp << "set zrange [" << min << ":" << max << "]\n"; + } + + + K::GnuplotObjectPolygon* addFloorRect(const Point3 pos_m, const float size, Color c, float ratio = 1.0) { + + const Point3 p1 = pos_m + Point3(-size, -size/ratio, 0); + const Point3 p2 = pos_m + Point3(+size, -size/ratio, 0); + const Point3 p3 = pos_m + Point3(+size, +size/ratio, 0); + const Point3 p4 = pos_m + Point3(-size, +size/ratio, 0); + + std::vector points = {p1,p2,p3,p4,p1}; + + return addPolygon(points, c.toHEX(), false, true); + +// gp << "set object polygon from "; +// for (size_t i = 0; i < points.size(); ++i) { +// const Point3 p = points[i]; +// if (i > 0) {gp << " to ";} +// gp << p.x << "," << p.y << "," << p.z << " "; +// } +// gp << "front fs solid fc rgb " << "'" << c.toHEX() << "'"; +// gp << "\n"; + + } + + template void showParticles(const std::vector& particles) { + this->particles.clear(); + double min = +999; + double max = -999; + for (const T& p : particles) { + const K::GnuplotPoint3 p3(p.state.pos.pos.x, p.state.pos.pos.y, p.state.pos.pos.z); + const double prob = std::pow(p.weight, 0.25); + this->particles.add(p3, prob); + if (prob > max) {max = prob;} + if (prob < min) {min = prob;} + } + splot.getAxisCB().setRange(min, max + 0.000001); + } + + // estimated path + void addEstimationNode(const Point3 pos){ + K::GnuplotPoint3 est(pos.x, pos.y, std::round(pos.z * 10) / 10); + pathEst.add(est); + } + + + void setTitle(const std::string& title) { + gp << "set title '" << title << "'\n"; + } + + void setGroundTruth(const std::vector indices) { + const std::vector path = FloorplanHelper::getGroundTruth(map, indices); + pathReal.clear(); + for (const Point3& p : path) { + pathReal.add(K::GnuplotPoint3(p.x, p.y, p.z)); + } + } + + void equalXY() { + gp << "set view equal xy\n"; + } + + void setView(const float degX, const float degY) { + //gp << "set view " << degX << "," << degY << "\n"; + splot.getView().setCamera(degX, degY); + } + + void setScale(const float x, const float y, const float ox = 0, const float oy = 0) { + gp << "set multiplot layout 1,1 scale " << x << "," << y << " offset " << ox << "," << oy << "\n"; + } + + void writeCodeTo(const std::string& file) { + this->codeFile = file; + } + + void noFrame() { + gp << "unset border\n"; +// gp << "unset xtics\n"; +// gp << "unset ytics\n"; +// gp << "unset ztics\n"; + splot.getAxisX().setTicsVisible(false); + splot.getAxisY().setTicsVisible(false); + splot.getAxisZ().setTicsVisible(false); + } + + void writeEpsTex(const std::string file, K::GnuplotSize size = K::GnuplotSize(8.5, 5.1)) { + gp.setTerminal("epslatex", size); + gp.setOutput(file); + } + + void plot() { + + this->mapOutlineConcrete.getStroke().setColor(settings.outlineColor); + this->mapOutlineDrywall.getStroke().setColor(settings.outlineColor); + this->mapOutlineGlass.getStroke().setColor(settings.outlineColor); + + gp.draw(splot); + gp << "unset multiplot\n"; // scaling + if (codeFile != "") { + std::ofstream out(codeFile); + out << gp.getBuffer(); + out.close(); + } + gp.flush(); + } + + void closeStream(){ + gp.close(); + } + + void saveToFile(std::ofstream& stream){ + gp.draw(splot); + stream << "set terminal x11 size 2000,1500\n"; + stream << gp.getBuffer(); + stream << "pause -1\n"; + gp.flush(); + } + + void printOverview(const std::string& path) { + gp << "set terminal png size 2000,1500\n"; + gp << "set output '" << path << "_overview" << ".png'\n"; + gp << "set view 75,60\n"; + gp << "set autoscale xy\n"; + gp << "set autoscale z\n"; + } + + void buildFloorplan() { + + std::vector floors; + + BBox3 bbox = FloorplanHelper::getBBox(map); + + // only some floors?? + if (settings.floors.empty()) { + floors = map->floors; + } else { + for (int i : settings.floors) { + floors.push_back(map->floors[i]); + } + } + +// mapOutlineDrywall.addSegment( +// K::GnuplotPoint3(bbox.getMin().x, bbox.getMin().y, bbox.getMin().z), +// K::GnuplotPoint3(bbox.getMax().x, bbox.getMax().y, bbox.getMax().z) +// ); + + splot.getAxisX().setRange(K::GnuplotAxis::Range(bbox.getMin().x, bbox.getMax().x)); + splot.getAxisY().setRange(K::GnuplotAxis::Range(bbox.getMin().y, bbox.getMax().y)); + splot.getAxisZ().setRange(K::GnuplotAxis::Range(0, 11)); + + // process each selected floor + for (Floorplan::Floor* floor : floors) { + + const float vo = floor->atHeight * 4.5; + + // plot the floor's outline + if (settings.outline) { + for (Floorplan::FloorOutlinePolygon* poly : floor->outline) { + + if (floor->atHeight < settings.minZ) {continue;} + if (floor->atHeight > settings.maxZ) {continue;} + + // for toni + if (settings.skipI1) { + if (floor->atHeight == 4) { + //if (poly->poly.points[2].y < 0) { + if (poly->poly.points[0].x > 70 && poly->poly.points[0].y < 50) { + continue; + } + } + } + + const float v = 180 + vo; + + K::GnuplotColor color = K::GnuplotColor::fromRGB(v,v,v); + if (poly->outdoor) {color = K::GnuplotColor::fromRGB(180, 240, 180);} + if (poly->method == Floorplan::OutlineMethod::REMOVE) {color = K::GnuplotColor::fromRGB(245,245,245);} + K::GnuplotFill filler(K::GnuplotFillStyle::SOLID, color); + K::GnuplotObjectPolygon* gpol = new K::GnuplotObjectPolygon(filler, K::GnuplotStroke::NONE()); + for (Point2 pt : poly->poly.points) { + K::GnuplotCoordinate3 coord(pt.x, pt.y, floor->atHeight, K::GnuplotCoordinateSystem::FIRST); + gpol->add(coord); + } + gpol->close(); + gpol->setZIndex(floor->atHeight-0.1); // below the lines + //gpol->setFront(true); + splot.getObjects().add(gpol); + + } + } + + // plot obstacles? + if (settings.obstacles) { + for (Floorplan::FloorObstacle* obs : floor->obstacles) { + Floorplan::FloorObstacleLine* line = dynamic_cast(obs); + if (line) { + + if (floor->atHeight < settings.minZ) {continue;} + if (floor->atHeight > settings.maxZ) {continue;} + +// const K::GnuplotPoint3 p1(line->from.x, line->from.y, floor->atHeight); +// const K::GnuplotPoint3 p2(line->to.x, line->to.y, floor->atHeight); +// switch(line->material) { +// case Floorplan::Material::CONCRETE: mapOutlineConcrete.addSegment(p1, p2); break; +// case Floorplan::Material::GLASS: mapOutlineGlass.addSegment(p1, p2); break; +// case Floorplan::Material::UNKNOWN: +// case Floorplan::Material::DRYWALL: mapOutlineDrywall.addSegment(p1, p2); break; +// } + +// K::GnuplotObjectArrow* arrow = new K::GnuplotObjectArrow( +// K::GnuplotCoordinate3(line->from.x, line->from.y, floor->atHeight, K::GnuplotCoordinateSystem::FIRST), +// K::GnuplotCoordinate3(line->to.x, line->to.y, floor->atHeight, K::GnuplotCoordinateSystem::FIRST) +// ); +// arrow->setHead(K::GnuplotObjectArrow::Head::NONE); +// splot.getObjects().add(arrow); + + const float v = 140 + vo; + + // drawing outlines as polygon is a hack for correct depth-order in gnuplot + K::GnuplotColor color = (settings.outlineColorCustom) ? (settings.outlineColor) : (K::GnuplotColor::fromRGB(v,v,v)); + K::GnuplotFill filler = K::GnuplotFill(K::GnuplotFillStyle::EMPTY_BORDER, color); + K::GnuplotStroke stroke(K::GnuplotDashtype::NONE, 6, color); + //K::GnuplotObjectPolygon* gpol = new K::GnuplotObjectPolygon(K::GnuplotFill::NONE(), stroke); + K::GnuplotObjectPolygon* gpol = new K::GnuplotObjectPolygon(filler, stroke); + //K::GnuplotObjectPolygon* gpol = new K::GnuplotObjectPolygon(K::GnuplotFill::NONE(), K::GnuplotStroke::NONE()); + + gpol->add(K::GnuplotCoordinate3(line->from.x, line->from.y, floor->atHeight, K::GnuplotCoordinateSystem::FIRST)); + gpol->add(K::GnuplotCoordinate3(line->to.x, line->to.y, floor->atHeight, K::GnuplotCoordinateSystem::FIRST)); + gpol->close(); + gpol->setZIndex(floor->atHeight); // above the ground polygon + //gpol->setFront(true); + splot.getObjects().add(gpol); + + } + } + } + + // plot the stairs as polygon + if (settings.stairs) { + for (Floorplan::Stair* s : floor->stairs) { + std::vector quads = Floorplan::getQuads(s->getParts(), floor); + for (const Floorplan::Quad3& q : quads) { +// K::GnuplotObjectPolygon* poly = addPolygon({q.p1, q.p2, q.p3, q.p4, q.p1}, "#c0c0c0"); +// if (poly) { +// poly->setZIndex(floor->atHeight+1.5); // above the floor +// } + + const float v1 = 180 + q.p1.z * 4.5; + const float v2 = 140 + q.p1.z * 4.5; + + const float z = (q.p1.z + q.p2.z + q.p3.z + q.p4.z) / 4.0f; + + if (z < settings.minZ) {continue;} + if (z > settings.maxZ) {continue;} + + K::GnuplotColor color = K::GnuplotColor::fromRGB(v1,v1,v1); + K::GnuplotColor color2 = K::GnuplotColor::fromRGB(v2,v2,v2); + K::GnuplotFill filler(K::GnuplotFillStyle::SOLID, color); + K::GnuplotStroke stroke(K::GnuplotDashtype::SOLID, 1, color2); + K::GnuplotObjectPolygon* gpol = new K::GnuplotObjectPolygon(filler, stroke); + gpol->add(K::GnuplotCoordinate3(q.p1.x, q.p1.y, q.p1.z, K::GnuplotCoordinateSystem::FIRST)); + gpol->add(K::GnuplotCoordinate3(q.p2.x, q.p2.y, q.p2.z, K::GnuplotCoordinateSystem::FIRST)); + gpol->add(K::GnuplotCoordinate3(q.p3.x, q.p3.y, q.p3.z, K::GnuplotCoordinateSystem::FIRST)); + gpol->add(K::GnuplotCoordinate3(q.p4.x, q.p4.y, q.p4.z, K::GnuplotCoordinateSystem::FIRST)); + gpol->close(); + gpol->setZIndex(z); // above the ground + splot.getObjects().add(gpol); + + } + } + } + + } + + } + +}; diff --git a/code/Settings.h b/code/Settings.h new file mode 100644 index 0000000..0d0014a --- /dev/null +++ b/code/Settings.h @@ -0,0 +1,142 @@ +#pragma once + +#include +#include +#include + +namespace Settings { + + const bool useKLB = false; + + const int numParticles = 5000; + const int numBSParticles = 50; + + const MACAddress NUC1("38:de:ad:6d:77:25"); + const MACAddress NUC2("38:de:ad:6d:60:ff"); + const MACAddress NUC3("1c:1b:b5:ef:a2:9a"); + const MACAddress NUC4("1c:1b:b5:ec:d1:82"); + + struct NUCSettings + { + int ID; + float ftm_offset; + float rssi_pathloss; + }; + + const std::unordered_map NUCS = { + { NUC1, { 1, 1.25, 3.375 }}, + { NUC2, { 2, 2.00, 3.000 }}, + { NUC3, { 3, 1.75, 3.375 }}, + { NUC4, { 4, 2.75, 2.750 }} + }; + + namespace IMU { + const float turnSigma = 2.5; // 3.5 + const float stepLength = 1.00; + const float stepSigma = 0.15; //toni changed + } + + const float smartphoneAboveGround = 1.3; + + const float offlineSensorSpeedup = 2; + + namespace Grid { + constexpr int gridSize_cm = 20; + } + + namespace Smoothing { + const bool activated = true; + const double stepLength = 0.7; + const double stepSigma = 0.2; + const double headingSigma = 25.0; + const double zChange = 0.0; // mu change in height between two time steps + const double zSigma = 0.1; + const int lag = 5; + + } + + namespace KDE { + const Point2 bandwidth(1,1); + const float gridSize = 0.2; + } + + namespace KDE3D { + const Point3 bandwidth(1, 1, 1); + const Point3 gridSize(0.2, 0.2, 1); // in meter + } + + //const GridPoint destination = GridPoint(70*100, 35*100, 0*100); // use destination + const GridPoint destination = GridPoint(0,0,0); // do not use destination + + namespace SensorDebug { + const Timestamp updateEvery = Timestamp::fromMS(200); + } + + namespace WiFiModel { + constexpr float sigma = 8.0; + /** if the wifi-signal-strengths are stored on the grid-nodes, this needs a grid rebuild! */ + constexpr float TXP = -45; + constexpr float EXP = 2.3; + constexpr float WAF = -11.0; + + const bool optimize = false; + const bool useRegionalOpt = false; + + // how to perform VAP grouping. see + // - calibration in Controller.cpp + // - eval in Filter.h + // NOTE: maybe the UAH does not allow valid VAP grouping? delete the grid and rebuild without! + const VAPGrouper vg_calib = VAPGrouper(VAPGrouper::Mode::LAST_MAC_DIGIT_TO_ZERO, VAPGrouper::Aggregation::MAXIMUM, VAPGrouper::TimeAggregation::AVERAGE, 1); // Frank: WAS MAXIMUM + const VAPGrouper vg_eval = VAPGrouper(VAPGrouper::Mode::LAST_MAC_DIGIT_TO_ZERO, VAPGrouper::Aggregation::MAXIMUM, VAPGrouper::TimeAggregation::AVERAGE, 1); // Frank: WAS MAXIMUM + } + + namespace BeaconModel { + constexpr float sigma = 8.0; + constexpr float TXP = -71; + constexpr float EXP = 1.5; + constexpr float WAF = -20.0; //-5 //20?? + } + + namespace MapView3D { + const int maxColorPoints = 1000; + constexpr int fps = 15; + const Timestamp msPerFrame = Timestamp::fromMS(1000/fps); + } + + namespace Filter { + const Timestamp updateEvery = Timestamp::fromMS(500); + constexpr bool useMainThread = false; // perform filtering in the main thread + } + + const std::string mapDir = "../map/"; + const std::string dataDir = "../measurements/data/"; + const std::string errorDir = "../measurements/error/"; + + /** describes one dataset (map, training, parameter-estimation, ...) */ + struct DataSetup { + std::string map; + std::vector training; + std::unordered_map APs; + int numGTPoints; + }; + + /** all configured datasets */ + const struct Data { + + const DataSetup Path0 = { + mapDir + "map0_ap_path0.xml", + { + dataDir + "Pixel2/Path0_0605.csv", + }, + { + { NUC1, { 7.5, 18.7, 0.8} }, // NUC 1 + { NUC2, { 8.6, 26.8, 0.8} }, // NUC 2 + { NUC3, {21.6, 19.1, 0.8} }, // NUC 3 + { NUC4, {20.8, 27.1, 0.8} }, // NUC 4 + }, + 4 + }; + } data; + +} + diff --git a/code/filter.h b/code/filter.h new file mode 100644 index 0000000..0592d5d --- /dev/null +++ b/code/filter.h @@ -0,0 +1,349 @@ +#pragma once + +#include "mesh.h" +#include "Settings.h" +#include + +#include +#include +#include +//#include + +#include +#include +#include +#include +#include +#include + +#include +//#include +//#include +//#include +//#include +//#include +//#include +//#include + +#include +#include +#include +#include +#include + +#include "FtmKalman.h" + +struct MyState { + + /** the state's position (within the mesh) */ + MyNavMeshLocation pos; + + /** the state's heading */ + Heading heading; + + MyState() : pos(), heading(0) {;} + + MyState(Point3 p) : pos(p, nullptr), heading(0){;} + + MyState& operator += (const MyState& o) { + pos.tria = nullptr; // impossible + pos.pos += o.pos.pos; + return *this; + } + + MyState& operator /= (const double val) { + pos.tria = nullptr; // impossible + pos.pos /= val; + return *this; + } + + MyState operator * (const double val) const { + MyState res; + res.pos.pos = pos.pos * val; + return res; + } + + float getX(){ + return pos.pos.x; + } + + float getY() { + return pos.pos.y; + } + + float getZ() { + return pos.pos.z; + } + + + float getBinValue(const int dim) const { + switch (dim) { + case 0: return this->pos.pos.x; + case 1: return this->pos.pos.y; + case 2: return this->pos.pos.z; + case 3: return this->heading.getRAD(); + } + throw "cant find this value within the bin"; + } + +}; + +struct MyControl { + + int numStepsSinceLastEval = 0; + float headingChangeSinceLastEval = 0; + + void afterEval() { + numStepsSinceLastEval = 0; + headingChangeSinceLastEval = 0; + } + + //wifi + std::map wifi; + + //time + Timestamp currentTime; + + //last estimation + Point3 lastEstimate = Point3(26, 43, 7.5); + +}; + +struct MyObservation { + + // pressure + float sigmaPressure = 0.10f; + float relativePressure = 0; + + //wifi + std::unordered_map wifi; + + //time + Timestamp currentTime; + + //activity + Activity activity; + +}; + +class MyPFInitUniform : public SMC::ParticleFilterInitializer { + + const MyNavMesh* mesh; + +public: + + MyPFInitUniform(const MyNavMesh* mesh) : mesh(mesh) { + ; + } + + virtual void initialize(std::vector>& particles) override { + + /** random position and heading within the mesh */ + Distribution::Uniform dHead(0, 2*M_PI); + MyNavMeshRandom rnd = mesh->getRandom(); + for (SMC::Particle& p : particles) { + p.state.pos = rnd.draw(); + p.state.heading = dHead.draw(); + p.weight = 1.0 / particles.size(); + } + } + +}; + +class MyPFInitFixed : public SMC::ParticleFilterInitializer { + + const MyNavMesh* mesh; + const Point3 pos; + +public: + + MyPFInitFixed(const MyNavMesh* mesh, const Point3 pos) : mesh(mesh), pos(pos) { + ; + } + + virtual void initialize(std::vector>& particles) override { + + /** random position and heading within the mesh */ + Distribution::Uniform dHead(0, 2*M_PI); + for (SMC::Particle& p : particles) { + p.state.pos = mesh->getLocation(pos); + p.state.heading = 1.5*M_PI;// dHead.draw(); + p.weight = 1.0 / particles.size(); + } + } + +}; + +class MyPFTransStatic : public SMC::ParticleFilterTransition{ + void transition(std::vector>& particles, const MyControl* control) override { + // nop + } +}; + +class MyPFTrans : public SMC::ParticleFilterTransition { + + using MyNavMeshWalk = NM::NavMeshWalkSimple; + //using MyNavMeshWalk = NM::NavMeshWalkWifiRegional; + //using MyNavMeshWalk = NM::NavMeshWalkUnblockable; + //using MyNavMeshWalk = NM::NavMeshWalkKLD; + //using MyNavMeshWalk = NM::NavMeshWalkSinkOrSwim; + + MyNavMeshWalk walker; + + const double lambda = 0.03; + +public: + + //std::vector listRadiusSub; + + MyPFTrans(MyNavMesh& mesh) : + walker(mesh) { + + // how to evaluate drawn points + walker.addEvaluator(new NM::WalkEvalHeadingStartEndNormal(0.04)); + walker.addEvaluator(new NM::WalkEvalDistance(0.1)); + //walker.addEvaluator(new NM::WalkEvalApproachesTarget(0.9)); // 90% for particles moving towards the target + } + + void transition(std::vector>& particles, const MyControl* control) override { + + // walking and heading random + Distribution::Normal dStepSizeFloor(0.60, 0.1); + Distribution::Normal dStepSizeStair(0.35, 0.1); + Distribution::Normal dHeading(0.0, 0.1); + + #pragma omp parallel for num_threads(3) + for (int i = 0; i < particles.size(); ++i) { + SMC::Particle& p = particles[i]; + + // how to walk + MyNavMeshWalkParams params; + params.heading = p.state.heading + control->headingChangeSinceLastEval + dHeading.draw(); + params.numSteps = control->numStepsSinceLastEval; + params.start = p.state.pos; + + params.stepSizes.stepSizeFloor_m = dStepSizeFloor.draw(); + params.stepSizes.stepSizeStair_m = dStepSizeStair.draw(); + + if(params.stepSizes.stepSizeFloor_m < 0.1 || params.stepSizes.stepSizeStair_m < 0.1){ + params.stepSizes.stepSizeFloor_m = 0.1; + params.stepSizes.stepSizeStair_m = 0.1; + } + + double deltaUnblockable = 0.01; + + // walk + MyNavMeshWalk::ResultEntry res = walker.getOne(params); + //MyNavMeshWalk::ResultEntry res = walker.getOne(params, kld, lambda, qualityWifi); + + // assign back to particle's state + p.weight *= res.probability; + p.state.pos = res.location; + p.state.heading = res.heading; + + } + + // reset the control (0 steps, 0 delta-heading) + //control->afterEval(); + + } + + +}; + +class MyPFEval : public SMC::ParticleFilterEvaluation { + + //TODO: add this to transition probability + double getStairProb(const SMC::Particle& p, const Activity act) { + + const float kappa = 0.75; + + switch (act) { + + case Activity::WALKING: + if (p.state.pos.tria->getType() == (int) NM::NavMeshType::FLOOR_INDOOR) {return kappa;} + if (p.state.pos.tria->getType() == (int) NM::NavMeshType::DOOR) {return kappa;} + if (p.state.pos.tria->getType() == (int) NM::NavMeshType::STAIR_LEVELED) {return kappa;} + {return 1-kappa;} + + case Activity::WALKING_UP: + case Activity::WALKING_DOWN: + if (p.state.pos.tria->getType() == (int) NM::NavMeshType::STAIR_SKEWED) {return kappa;} + if (p.state.pos.tria->getType() == (int) NM::NavMeshType::STAIR_LEVELED) {return kappa;} + if (p.state.pos.tria->getType() == (int) NM::NavMeshType::ELEVATOR) {return kappa;} + {return 1-kappa;} + } + return 1.0; + } + +public: + + // FRANK + MyPFEval() { }; + + bool assignProps = false; + + std::shared_ptr> kalmanMap; + + virtual double evaluation(std::vector>& particles, const MyObservation& observation) override { + + double sum = 0; + + //#pragma omp parallel for num_threads(3) + for (int i = 0; i < particles.size(); ++i) { + SMC::Particle& p = particles[i]; + + double pFtm = 1.0; + + if (observation.wifi.size() == 0) + { + printf(""); + } + + for (auto& wifi : observation.wifi) { + + if ( (true && wifi.second.getAP().getMAC() == Settings::NUC1) + || (true && wifi.second.getAP().getMAC() == Settings::NUC2) + || (true && wifi.second.getAP().getMAC() == Settings::NUC3) + || (true && wifi.second.getAP().getMAC() == Settings::NUC4) + ) + { + float rssi_pathloss = Settings::NUCS.at(wifi.second.getAP().getMAC()).rssi_pathloss; + + float rssiDist = LogDistanceModel::rssiToDistance(-40, rssi_pathloss, wifi.second.getRSSI()); + float ftmDist = wifi.second.getFtmDist(); + + Point3 apPos = Settings::data.Path0.APs.find(wifi.first)->second; + Point3 particlePos = p.state.pos.pos; + particlePos.z = 1.3; // smartphone höhe + float apDist = particlePos.getDistance(apPos); + + auto kalman = kalmanMap->at(wifi.second.getAP().getMAC()); + + pFtm *= Distribution::Normal::getProbability(ftmDist, std::sqrt(kalman.P(0,0)), apDist); + //pFtm *= Distribution::Normal::getProbability(apDist, 3.5, ftmDist); + //pFtm *= Distribution::Region::getProbability(apDist, 3.5/2, ftmDist); + } + } + + + double prob = pFtm; + + if (assignProps) + p.weight = prob; // p.weight *= prob + else + p.weight *= prob; + + #pragma omp atomic + sum += prob; + } + + return sum; + + } + +}; + + +using MyFilter = SMC::ParticleFilter; + diff --git a/code/main.cpp b/code/main.cpp new file mode 100644 index 0000000..4a88858 --- /dev/null +++ b/code/main.cpp @@ -0,0 +1,326 @@ +//#include "main.h" + +#include "mesh.h" +#include "filter.h" +#include "Settings.h" +#include "meshPlotter.h" +#include "Plotty.h" + +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +#include + +#include "FtmKalman.h" +#include "mainFtm.h" + +#include + +using namespace std::chrono_literals; + +static Stats::Statistics run(Settings::DataSetup setup, int numFile, std::string folder) { + + // reading file + std::string currDir = std::filesystem::current_path().string(); + + Floorplan::IndoorMap* map = Floorplan::Reader::readFromFile(setup.map); + Offline::FileReader fr(setup.training[numFile]); + + // ground truth + std::vector gtPath; + for(int i = 0; i < setup.numGTPoints; ++i){gtPath.push_back(i);} + Interpolator gtInterpolator = fr.getGroundTruthPath(map, gtPath); + Stats::Statistics errorStats; + + //calculate distance of path + std::vector::InterpolatorEntry> gtEntries = gtInterpolator.getEntries(); + double distance = 0; + for(int i = 1; i < gtEntries.size(); ++i){ + distance += gtEntries[i].value.getDistance(gtEntries[i-1].value); + } + + std::cout << "Distance of Path: " << distance << std::endl; + + // error file + const long int t = static_cast(time(NULL)); + auto evalDir = std::experimental::filesystem::path(Settings::errorDir); + evalDir.append(folder); + + if (!std::experimental::filesystem::exists(evalDir)) { + std::experimental::filesystem::create_directory(evalDir); + } + + std::ofstream errorFile; + errorFile.open (evalDir.string() + "/" + std::to_string(numFile) + "_" + std::to_string(t) + ".csv"); + + + // wifi + auto kalmanMap = std::make_shared>(); + kalmanMap->insert({ Settings::NUC1, Kalman(1, 6.156) }); + kalmanMap->insert({ Settings::NUC2, Kalman(2, 5.650) }); + kalmanMap->insert({ Settings::NUC3, Kalman(3, 6.107) }); + kalmanMap->insert({ Settings::NUC4, Kalman(4, 3.985) }); + + + // mesh + NM::NavMeshSettings set; + MyNavMesh mesh; + MyNavMeshFactory fac(&mesh, set); + fac.build(map); + + const Point3 srcPath0(9.8, 24.9, 0); // fixed start pos + + // add shortest-path to destination + //const Point3 dst(51, 45, 1.7); + //const Point3 dst(25, 45, 0); + //NM::NavMeshDijkstra::stamp(mesh, dst); + + // debug show + //MeshPlotter dbg; + //dbg.addFloors(map); + //dbg.addOutline(map); + //dbg.addMesh(mesh); + ////dbg.addDijkstra(mesh); + //dbg.draw(); + + Plotty plot(map); + plot.buildFloorplan(); + plot.setGroundTruth(gtPath); + plot.plot(); + + // particle-filter + const int numParticles = 5000; + //auto init = std::make_unique(&mesh, srcPath0); // known position + auto init = std::make_unique(&mesh); // uniform distribution + auto eval = std::make_unique(); + eval->kalmanMap = kalmanMap; + + auto trans = std::make_unique(mesh); + //auto trans = std::make_unique(); + + auto resample = std::make_unique>(); + auto estimate = std::make_unique>(); + + // setup + MyFilter pf(numParticles, std::move(init)); + pf.setEvaluation(std::move(eval)); + pf.setTransition(std::move(trans)); + pf.setResampling(std::move(resample)); + pf.setEstimation(std::move(estimate)); + pf.setNEffThreshold(0.85); + + // sensors + MyControl ctrl; + MyObservation obs; + + StepDetection sd; + PoseDetection pd; + TurnDetection td(&pd); + RelativePressure relBaro; + ActivityDetector act; + relBaro.setCalibrationTimeframe( Timestamp::fromMS(5000) ); + Timestamp lastTimestamp = Timestamp::fromMS(0); + + int i = 0; + // parse each sensor-value within the offline data + for (const Offline::Entry& e : fr.getEntries()) { + + const Timestamp ts = Timestamp::fromMS(e.ts); + + if (e.type == Offline::Sensor::WIFI_FTM) { + auto ftm = fr.getWifiFtm()[e.idx].data; + + float ftm_offset = Settings::NUCS.at(ftm.getAP().getMAC()).ftm_offset; + float ftmDist = ftm.getFtmDist() + ftm_offset; // in m; plus static offset + + auto& kalman = kalmanMap->at(ftm.getAP().getMAC()); + float predictDist = kalman.predict(ts, ftmDist); + + ftm.setFtmDist(predictDist); + + obs.wifi.insert_or_assign(ftm.getAP().getMAC(), ftm); + } else if (e.type == Offline::Sensor::WIFI) { + //obs.wifi = fr.getWiFiGroupedByTime()[e.idx].data; + //ctrl.wifi = fr.getWiFiGroupedByTime()[e.idx].data; + } else if (e.type == Offline::Sensor::ACC) { + if (sd.add(ts, fr.getAccelerometer()[e.idx].data)) { + ++ctrl.numStepsSinceLastEval; + } + const Offline::TS& _acc = fr.getAccelerometer()[e.idx]; + pd.addAccelerometer(ts, _acc.data); + + //simpleActivity walking / standing + act.add(ts, fr.getAccelerometer()[e.idx].data); + + } else if (e.type == Offline::Sensor::GYRO) { + const Offline::TS& _gyr = fr.getGyroscope()[e.idx]; + const float delta_gyro = td.addGyroscope(ts, _gyr.data); + + ctrl.headingChangeSinceLastEval += delta_gyro; + + } else if (e.type == Offline::Sensor::BARO) { + relBaro.add(ts, fr.getBarometer()[e.idx].data); + obs.relativePressure = relBaro.getPressureRealtiveToStart(); + obs.sigmaPressure = relBaro.getSigma(); + + //simpleActivity stairs up / down + act.add(ts, fr.getBarometer()[e.idx].data); + obs.activity = act.get(); + } + + if (ctrl.numStepsSinceLastEval > 0) + //if (ts - lastTimestamp >= Timestamp::fromMS(500)) + //if (obs.wifi.size() == 4) + { + + obs.currentTime = ts; + ctrl.currentTime = ts; + +// if(ctrl.numStepsSinceLastEval > 0){ +// pf.updateTransitionOnly(&ctrl); +// } + MyState est = pf.update(&ctrl, obs); //pf.updateEvaluationOnly(obs); + ctrl.afterEval(); + Point3 gtPos = gtInterpolator.get(static_cast(ts.ms())) + Point3(0,0,0.1); + lastTimestamp = ts; + + ctrl.lastEstimate = est.pos.pos; + + + // draw wifi ranges + for (auto& ftm : obs.wifi) + { + int nucid = Settings::NUCS.at(ftm.second.getAP().getMAC()).ID; + + if (nucid == 1) + { + Point3 apPos = Settings::data.Path0.APs.find(ftm.first)->second; + //plot.addCircle(nucid, apPos.xy(), ftm.second.getFtmDist()); + } + } + + obs.wifi.clear(); + + //plot + //dbg.showParticles(pf.getParticles()); + //dbg.setCurPos(est.pos.pos); + //dbg.setGT(gtPos); + //dbg.addEstimationNode(est.pos.pos); + //dbg.addGroundTruthNode(gtPos); + //dbg.setTimeInMinute(static_cast(ts.sec()) / 60, static_cast(static_cast(ts.sec())%60)); + //dbg.draw(); + + plot.showParticles(pf.getParticles()); + plot.setCurEst(est.pos.pos); + plot.setGroundTruth(gtPos); + + plot.addEstimationNode(est.pos.pos); + plot.setActivity((int) act.get()); + //plot.setView(0, 0); + //plot.splot.getView().setEnabled(false); + //plot.splot.getView().setCamera(0, 0); + //plot.splot.getView().setEqualXY(true); + + plot.plot(); + + + //std::this_thread::sleep_for(500ms); + + // error calc +// float err_m = gtPos.getDistance(est.pos.pos); +// errorStats.add(err_m); +// errorFile << ts.ms() << " " << err_m << "\n"; + + //error calc with penalty for wrong floor + double errorFactor = 3.0; + Point3 gtPosError = Point3(gtPos.x, gtPos.y, errorFactor * gtPos.z); + Point3 estError = Point3(est.pos.pos.x, est.pos.pos.y, errorFactor * est.pos.pos.z); + float err_m = gtPosError.getDistance(estError); + errorStats.add(err_m); + errorFile << ts.ms() << " " << err_m << "\n"; + } + } + + + + // get someting on console + std::cout << "Statistical Analysis Filtering: " << std::endl; + std::cout << "Median: " << errorStats.getMedian() << " Average: " << errorStats.getAvg() << " Std: " << errorStats.getStdDev() << std::endl; + + // save the statistical data in file + errorFile << "========================================================== \n"; + errorFile << "Average of all statistical data: \n"; + errorFile << "Median: " << errorStats.getMedian() << "\n"; + errorFile << "Average: " << errorStats.getAvg() << "\n"; + errorFile << "Standard Deviation: " << errorStats.getStdDev() << "\n"; + errorFile << "75 Quantil: " << errorStats.getQuantile(0.75) << "\n"; + errorFile.close(); + + return errorStats; +} + +int main(int argc, char** argv) +{ + //mainFtm(argc, argv); + //return 0; + + + Stats::Statistics statsAVG; + Stats::Statistics statsMedian; + Stats::Statistics statsSTD; + Stats::Statistics statsQuantil; + Stats::Statistics tmp; + + std::string evaluationName = "prologic/tmp"; + + for(int i = 0; i < 1; ++i){ + for(int j = 0; j < 1; ++j){ + tmp = run(Settings::data.Path0, j, evaluationName); + statsMedian.add(tmp.getMedian()); + statsAVG.add(tmp.getAvg()); + statsSTD.add(tmp.getStdDev()); + statsQuantil.add(tmp.getQuantile(0.75)); + } + + std::cout << "Iteration " << i << " completed" << std::endl; + } + + std::cout << "==========================================================" << std::endl; + std::cout << "Average of all statistical data: " << std::endl; + std::cout << "Median: " << statsMedian.getAvg() << std::endl; + std::cout << "Average: " << statsAVG.getAvg() << std::endl; + std::cout << "Standard Deviation: " << statsSTD.getAvg() << std::endl; + std::cout << "75 Quantil: " << statsQuantil.getAvg() << std::endl; + std::cout << "==========================================================" << std::endl; + + //EDIT THIS EDIT THIS EDIT THIS EDIT THIS EDIT THIS EDIT THIS EDIT THIS EDIT THIS + std::ofstream finalStatisticFile; + finalStatisticFile.open (Settings::errorDir + evaluationName + ".csv", std::ios_base::app); + + finalStatisticFile << "========================================================== \n"; + finalStatisticFile << "Average of all statistical data: \n"; + finalStatisticFile << "Median: " << statsMedian.getAvg() << "\n"; + finalStatisticFile << "Average: " << statsAVG.getAvg() << "\n"; + finalStatisticFile << "Standard Deviation: " << statsSTD.getAvg() << "\n"; + finalStatisticFile << "75 Quantil: " << statsQuantil.getAvg() << "\n"; + finalStatisticFile << "========================================================== \n"; + + finalStatisticFile.close(); + + //std::this_thread::sleep_for(std::chrono::seconds(60)); + +} diff --git a/code/main.h b/code/main.h new file mode 100644 index 0000000..3f59c93 --- /dev/null +++ b/code/main.h @@ -0,0 +1,2 @@ +#pragma once + diff --git a/code/mainFtm.cpp b/code/mainFtm.cpp new file mode 100644 index 0000000..a0cc5fd --- /dev/null +++ b/code/mainFtm.cpp @@ -0,0 +1,428 @@ +#include "mainFtm.h" + +#include "mesh.h" +#include "filter.h" +#include "Settings.h" +//#include "meshPlotter.h" +#include "Plotty.h" + +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +#include + +#include "FtmKalman.h" + +#include + +using namespace std::chrono_literals; + +std::vector> getFtmValues(Offline::FileReader& fr, Interpolator& gtInterpolator, const MACAddress nuc) +{ + std::vector> result; + + for (const Offline::Entry& e : fr.getEntries()) + { + if (e.type == Offline::Sensor::WIFI_FTM) + { + const Timestamp ts = Timestamp::fromMS(e.ts); + + Point3 gtPos = gtInterpolator.get(static_cast(ts.ms())) + Point3(0, 0, 1.3); + + auto wifi = fr.getWifiFtm()[e.idx].data; + + if (wifi.getAP().getMAC() == nuc) + { + Point3 apPos = Settings::data.Path0.APs.find(wifi.getAP().getMAC())->second; + float apDist = gtPos.getDistance(apPos); + float ftmDist = wifi.getFtmDist(); + float rssi = wifi.getRSSI(); + + result.push_back({ apDist, ftmDist, rssi }); + } + } + } + + return result; +} + +std::pair optimizeFtm(std::vector>& values) +{ + std::vector> error; + + for (float offset = 0; offset < 10.0f; offset += 0.25) + { + Stats::Statistics diffs; + + for (const auto& data : values) + { + float apDist = std::get<0>(data); + float ftmDist = std::get<1>(data); + ftmDist += offset; + + float diff = (apDist - ftmDist); + + diffs.add(diff); + } + + error.push_back({ offset, diffs.getSquaredSumAvg() }); + } + + auto minElement = std::min_element(error.begin(), error.end(), [](std::pair a, std::pair b) { + return a.second < b.second; + }); + + std::cout << "Min ftm offset \t" << minElement->first << "\t" << minElement->second << "\n"; + + return *minElement; +} + +std::pair optimizeRssi(std::vector>& values) +{ + std::vector> error; + + for (float pathLoss = 2.0f; pathLoss < 4.0f; pathLoss += 0.125) + { + Stats::Statistics diffs; + + for (const auto& data : values) + { + float apDist = std::get<0>(data); + float rssi = std::get<2>(data); + float rssiDist = LogDistanceModel::rssiToDistance(-40, pathLoss, rssi); + + float diff = (apDist - rssiDist); + + diffs.add(diff); + } + + error.push_back({ pathLoss, diffs.getSquaredSumAvg() }); + } + + auto minElement = std::min_element(error.begin(), error.end(), [](std::pair a, std::pair b) { + return a.second < b.second; + }); + + std::cout << "Min path loss \t" << minElement->first << "\t" << minElement->second << "\n"; + + return *minElement; +} + +void optimize(Offline::FileReader& fr, Interpolator& gtInterpolator) +{ + int i = 1; + for (auto nuc : {Settings::NUC1, Settings::NUC2, Settings::NUC3, Settings::NUC4}) + { + auto values = getFtmValues(fr, gtInterpolator, nuc); + std::cout << "NUC" << i++ << "\n"; + + optimizeFtm(values); + optimizeRssi(values); + } +} + +void exportFtmValues(Offline::FileReader& fr, Interpolator& gtInterpolator) +{ + std::fstream fs; + fs.open("test.txt", std::fstream::out); + + fs << "timestamp;nucid;dist;rssiDist;ftmDist;ftmStdDev" << "\n"; + + for (const Offline::Entry& e : fr.getEntries()) + { + if (e.type == Offline::Sensor::WIFI_FTM) + { + const Timestamp ts = Timestamp::fromMS(e.ts); + + Point3 gtPos = gtInterpolator.get(static_cast(ts.ms())) + Point3(0, 0, 1.3); + + auto wifi = fr.getWifiFtm()[e.idx].data; + + int nucid = Settings::NUCS.at(wifi.getAP().getMAC()).ID; + float ftm_offset = Settings::NUCS.at(wifi.getAP().getMAC()).ftm_offset; + float rssi_pathloss = Settings::NUCS.at(wifi.getAP().getMAC()).rssi_pathloss; + + float rssiDist = LogDistanceModel::rssiToDistance(-40, rssi_pathloss, wifi.getRSSI()); + float ftmDist = wifi.getFtmDist() + ftm_offset; //in m; plus static offset + float ftmStdDev = wifi.getFtmDistStd(); + + Point3 apPos = Settings::data.Path0.APs.find(wifi.getAP().getMAC())->second; + float apDist = gtPos.getDistance(apPos); + + fs << ts.ms() << ";" << nucid << ";" << apDist << ";" << rssiDist << ";" << ftmDist << ";" << ftmStdDev << "\n"; + } + + } + fs.close(); + +} + +static Stats::Statistics run(Settings::DataSetup setup, int numFile, std::string folder) { + + // reading file + std::string currDir = std::filesystem::current_path().string(); + + Floorplan::IndoorMap* map = Floorplan::Reader::readFromFile(setup.map); + Offline::FileReader fr(setup.training[numFile]); + + // ground truth + std::vector gtPath; + for(int i = 0; i < setup.numGTPoints; ++i){gtPath.push_back(i);} + Interpolator gtInterpolator = fr.getGroundTruthPath(map, gtPath); + Stats::Statistics errorStats; + + //calculate distance of path + std::vector::InterpolatorEntry> gtEntries = gtInterpolator.getEntries(); + double distance = 0; + for(int i = 1; i < gtEntries.size(); ++i){ + distance += gtEntries[i].value.getDistance(gtEntries[i-1].value); + } + + std::cout << "Distance of Path: " << distance << std::endl; + + // error file + const long int t = static_cast(time(NULL)); + auto evalDir = std::experimental::filesystem::path(Settings::errorDir); + evalDir.append(folder); + + if (!std::experimental::filesystem::exists(evalDir)) { + std::experimental::filesystem::create_directory(evalDir); + } + + std::ofstream errorFile; + errorFile.open (evalDir.string() + "/" + std::to_string(numFile) + "_" + std::to_string(t) + ".csv"); + + + // wifi + auto kalmanMap = std::make_shared>(); + kalmanMap->insert({ Settings::NUC1, Kalman(1, 6.156) }); + kalmanMap->insert({ Settings::NUC2, Kalman(2, 5.650) }); + kalmanMap->insert({ Settings::NUC3, Kalman(3, 6.107) }); + kalmanMap->insert({ Settings::NUC4, Kalman(4, 3.985) }); + + // mesh + NM::NavMeshSettings set; + MyNavMesh mesh; + MyNavMeshFactory fac(&mesh, set); + fac.build(map); + + const Point3 srcPath0(9.8, 24.9, 0); // fixed start pos + + // add shortest-path to destination + //const Point3 dst(51, 45, 1.7); + //const Point3 dst(25, 45, 0); + //NM::NavMeshDijkstra::stamp(mesh, dst); + + // debug show + //MeshPlotter dbg; + //dbg.addFloors(map); + //dbg.addOutline(map); + //dbg.addMesh(mesh); + ////dbg.addDijkstra(mesh); + //dbg.draw(); + + Plotty plot(map); + plot.buildFloorplan(); + plot.setGroundTruth(gtPath); + plot.plot(); + + // particle-filter + const int numParticles = 5000; + //auto init = std::make_unique(&mesh, srcPath0); // known position + auto init = std::make_unique(&mesh); // uniform distribution + auto eval = std::make_unique(); + eval->assignProps = true; + eval->kalmanMap = kalmanMap; + + //auto trans = std::make_unique(mesh); + auto trans = std::make_unique(); + + auto resample = std::make_unique>(); + auto estimate = std::make_unique>(); + + // setup + MyFilter pf(numParticles, std::move(init)); + pf.setEvaluation(std::move(eval)); + pf.setTransition(std::move(trans)); + pf.setResampling(std::move(resample)); + pf.setEstimation(std::move(estimate)); + //pf.setNEffThreshold(0.85); + pf.setNEffThreshold(0.0); + + // sensors + MyControl ctrl; + MyObservation obs; + + StepDetection sd; + PoseDetection pd; + TurnDetection td(&pd); + RelativePressure relBaro; + ActivityDetector act; + relBaro.setCalibrationTimeframe( Timestamp::fromMS(5000) ); + Timestamp lastTimestamp = Timestamp::fromMS(0); + + //optimize(fr, gtInterpolator); + //return errorStats; + + int i = 0; + //exportFtmValues(fr, gtInterpolator); + + + // parse each sensor-value within the offline data + for (const Offline::Entry& e : fr.getEntries()) { + + const Timestamp ts = Timestamp::fromMS(e.ts); + + if (e.type == Offline::Sensor::WIFI_FTM) { + auto ftm = fr.getWifiFtm()[e.idx].data; + + float ftm_offset = Settings::NUCS.at(ftm.getAP().getMAC()).ftm_offset; + float ftmDist = ftm.getFtmDist() + ftm_offset; // in m; plus static offset + + auto& kalman = kalmanMap->at(ftm.getAP().getMAC()); + float predictDist = kalman.predict(ts, ftmDist); + + //ftm.setFtmDist(predictDist); + + obs.wifi.insert_or_assign(ftm.getAP().getMAC(), ftm); + } + + //if (ctrl.numStepsSinceLastEval > 0) + //if (ts - lastTimestamp >= Timestamp::fromMS(500)) + if (obs.wifi.size() == 4) + { + + obs.currentTime = ts; + ctrl.currentTime = ts; + +// if(ctrl.numStepsSinceLastEval > 0){ +// pf.updateTransitionOnly(&ctrl); +// } + MyState est = pf.update(&ctrl, obs); //pf.updateEvaluationOnly(obs); + ctrl.afterEval(); + Point3 gtPos = gtInterpolator.get(static_cast(ts.ms())) + Point3(0,0,0.1); + lastTimestamp = ts; + + ctrl.lastEstimate = est.pos.pos; + + + // draw wifi ranges + for (auto& ftm : obs.wifi) + { + int nucid = Settings::NUCS.at(ftm.second.getAP().getMAC()).ID; + + if (nucid == 1) + { + Point3 apPos = Settings::data.Path0.APs.find(ftm.first)->second; + // plot.addCircle(nucid, apPos.xy(), ftm.second.getFtmDist()); + } + } + + obs.wifi.clear(); + + //plot + //dbg.showParticles(pf.getParticles()); + //dbg.setCurPos(est.pos.pos); + //dbg.setGT(gtPos); + //dbg.addEstimationNode(est.pos.pos); + //dbg.addGroundTruthNode(gtPos); + //dbg.setTimeInMinute(static_cast(ts.sec()) / 60, static_cast(static_cast(ts.sec())%60)); + //dbg.draw(); + + plot.showParticles(pf.getParticles()); + plot.setCurEst(est.pos.pos); + plot.setGroundTruth(gtPos); + + plot.addEstimationNode(est.pos.pos); + plot.setActivity((int) act.get()); + plot.splot.getView().setCamera(0, 0); + plot.splot.getView().setEqualXY(true); + + plot.plot(); + + + //std::this_thread::sleep_for(500ms); + + // error calc +// float err_m = gtPos.getDistance(est.pos.pos); +// errorStats.add(err_m); +// errorFile << ts.ms() << " " << err_m << "\n"; + + //error calc with penalty for wrong floor + double errorFactor = 3.0; + Point3 gtPosError = Point3(gtPos.x, gtPos.y, errorFactor * gtPos.z); + Point3 estError = Point3(est.pos.pos.x, est.pos.pos.y, errorFactor * est.pos.pos.z); + float err_m = gtPosError.getDistance(estError); + errorStats.add(err_m); + errorFile << ts.ms() << " " << err_m << "\n"; + } + } + + + + // get someting on console + std::cout << "Statistical Analysis Filtering: " << std::endl; + std::cout << "Median: " << errorStats.getMedian() << " Average: " << errorStats.getAvg() << " Std: " << errorStats.getStdDev() << std::endl; + + // save the statistical data in file + errorFile << "========================================================== \n"; + errorFile << "Average of all statistical data: \n"; + errorFile << "Median: " << errorStats.getMedian() << "\n"; + errorFile << "Average: " << errorStats.getAvg() << "\n"; + errorFile << "Standard Deviation: " << errorStats.getStdDev() << "\n"; + errorFile << "75 Quantil: " << errorStats.getQuantile(0.75) << "\n"; + errorFile.close(); + + return errorStats; +} + +int mainFtm(int argc, char** argv) { + + Stats::Statistics statsAVG; + Stats::Statistics statsMedian; + Stats::Statistics statsSTD; + Stats::Statistics statsQuantil; + Stats::Statistics tmp; + + std::string evaluationName = "prologic/tmp"; + + for(int i = 0; i < 1; ++i){ + for(int j = 0; j < 1; ++j){ + tmp = run(Settings::data.Path0, j, evaluationName); + statsMedian.add(tmp.getMedian()); + statsAVG.add(tmp.getAvg()); + statsSTD.add(tmp.getStdDev()); + statsQuantil.add(tmp.getQuantile(0.75)); + } + + std::cout << "Iteration " << i << " completed" << std::endl; + } + + std::cout << "==========================================================" << std::endl; + std::cout << "Average of all statistical data: " << std::endl; + std::cout << "Median: " << statsMedian.getAvg() << std::endl; + std::cout << "Average: " << statsAVG.getAvg() << std::endl; + std::cout << "Standard Deviation: " << statsSTD.getAvg() << std::endl; + std::cout << "75 Quantil: " << statsQuantil.getAvg() << std::endl; + std::cout << "==========================================================" << std::endl; + + + //std::this_thread::sleep_for(std::chrono::seconds(60)); + + + return 0; +} diff --git a/code/mainFtm.h b/code/mainFtm.h new file mode 100644 index 0000000..c59939c --- /dev/null +++ b/code/mainFtm.h @@ -0,0 +1,4 @@ +#pragma once + +int mainFtm(int argc, char** argv); + diff --git a/code/mesh.h b/code/mesh.h new file mode 100644 index 0000000..9987042 --- /dev/null +++ b/code/mesh.h @@ -0,0 +1,29 @@ +#pragma once + + +#include +#include +#include +#include + +#include +#include + +/** the triangle to use with the nav-mesh */ +class MyNavMeshTriangle : public NM::NavMeshTriangle, public NM::NavMeshTriangleDijkstra { + + // add own parameters here + +public: + + MyNavMeshTriangle(const Point3 p1, const Point3 p2, const Point3 p3, uint8_t type) : NM::NavMeshTriangle(p1, p2, p3, type) { + } + +}; + +using MyNavMeshFactory = NM::NavMeshFactory; +using MyNavMesh = NM::NavMesh; +using MyNavMeshLocation = NM::NavMeshLocation; +using MyNavMeshRandom = NM::NavMeshRandom; +using MyNavMeshWalkParams = NM::NavMeshWalkParams; + diff --git a/code/meshPlotter.h b/code/meshPlotter.h new file mode 100644 index 0000000..cde67c0 --- /dev/null +++ b/code/meshPlotter.h @@ -0,0 +1,240 @@ +#pragma once + +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +class NavMeshTriangleDijkstra; + +/** + * debug plot NavMeshes + */ +class MeshPlotter { + +public: + + K::Gnuplot gp; + K::GnuplotSplot plot; + K::GnuplotSplotElementLines pFloor; + K::GnuplotSplotElementLines pOutline; + K::GnuplotSplotElementLines lines; + K::GnuplotSplotElementPoints border; + K::GnuplotSplotElementColorPoints particles; + K::GnuplotSplotElementColorPoints distances; + K::GnuplotSplotElementLines pathEstimated; + K::GnuplotSplotElementLines shortestPath; + K::GnuplotSplotElementLines groundtruthPath; + +private: + + K::GnuplotFill gFill[6] = { + K::GnuplotFill(K::GnuplotFillStyle::SOLID, K::GnuplotColor::fromHexStr("#0000ff"), 1), // unknown + K::GnuplotFill(K::GnuplotFillStyle::SOLID, K::GnuplotColor::fromHexStr("#999999"), 1), // indoor + K::GnuplotFill(K::GnuplotFillStyle::SOLID, K::GnuplotColor::fromHexStr("#44ffee"), 1), // outdoor + K::GnuplotFill(K::GnuplotFillStyle::SOLID, K::GnuplotColor::fromHexStr("#666699"), 1), // door + K::GnuplotFill(K::GnuplotFillStyle::SOLID, K::GnuplotColor::fromHexStr("#444444"), 1), // stairs_level + K::GnuplotFill(K::GnuplotFillStyle::SOLID, K::GnuplotColor::fromHexStr("#666666"), 1) // stairs_skewed + }; + +public: + + MeshPlotter() { + gp << "set view equal xy\n"; + plot.add(&lines); lines.setShowPoints(true); + plot.add(&border); + plot.add(&particles); particles.setPointType(7); particles.setPointSize(0.2); + plot.add(&pathEstimated); pathEstimated.getStroke().setWidth(2); pathEstimated.setShowPoints(false); pathEstimated.getStroke().getColor().setHexStr("#00ff00"); + plot.add(&groundtruthPath); groundtruthPath.getStroke().setWidth(2); groundtruthPath.getStroke().getColor().setHexStr("#000000"); + plot.add(&distances); distances.setPointSize(0.75); distances.setPointType(7); + plot.add(&shortestPath); shortestPath.getStroke().setWidth(3); + plot.add(&pFloor); + plot.add(&pOutline); pOutline.getStroke().getColor().setHexStr("#999999"); + } + + void draw() { + gp.draw(plot); + gp.flush(); + } + + template void showParticles(const std::vector& particles) { + this->particles.clear(); + double min = +999; + double max = -999; + for (const T& p : particles) { + const K::GnuplotPoint3 p3(p.state.pos.pos.x, p.state.pos.pos.y, p.state.pos.pos.z); + const double prob = std::pow(p.weight, 0.25); + this->particles.add(p3, prob); + if (prob > max) {max = prob;} + if (prob < min) {min = prob;} + } + plot.getAxisCB().setRange(min, max + 0.000001); + } + + + template void addMesh(NM::NavMesh& nm) { + + K::GnuplotStroke gStroke = K::GnuplotStroke(K::GnuplotDashtype::SOLID, 1, K::GnuplotColor::fromHexStr("#666600")); + + const BBox3 bbox = nm.getBBox(); + + border.add(K::GnuplotPoint3(bbox.getMin().x,bbox.getMin().y,bbox.getMin().z)); + border.add(K::GnuplotPoint3(bbox.getMax().x,bbox.getMax().y,bbox.getMax().z)); +// lines.add(K::GnuplotPoint3(bbox.getMin().x,bbox.getMin().y,bbox.getMin().z), K::GnuplotPoint3(bbox.getMax().x, 0, 0)); +// lines.add(K::GnuplotPoint3(bbox.getMin().x,bbox.getMin().y,bbox.getMin().z), K::GnuplotPoint3(0,bbox.getMax().y,0)); +// lines.addSegment(K::GnuplotPoint3(bbox.getMin().x,bbox.getMin().y,bbox.getMin().z), K::GnuplotPoint3(0,0,bbox.getMax().z)); + + //stairs in eigene group? vlt gehen dann auch die dellen weg? + + for (const Tria* tria : nm) { + const uint8_t type = tria->getType(); + if (type < 0 || type > 5) { + throw std::runtime_error("out of type-bounds"); + } + K::GnuplotObjectPolygon* pol = new K::GnuplotObjectPolygon(gFill[type], gStroke); + pol->add(K::GnuplotCoordinate3(tria->getP1().x, tria->getP1().y, tria->getP1().z, K::GnuplotCoordinateSystem::FIRST)); + pol->add(K::GnuplotCoordinate3(tria->getP2().x, tria->getP2().y, tria->getP2().z, K::GnuplotCoordinateSystem::FIRST)); + pol->add(K::GnuplotCoordinate3(tria->getP3().x, tria->getP3().y, tria->getP3().z, K::GnuplotCoordinateSystem::FIRST)); + pol->close(); + pol->setZIndex(tria->getP3().z); + plot.getObjects().add(pol); + + //for (int i = 0; i < nm.getNumNeighbors(tria); ++i) { + // const Tria* o = nm.getNeighbor(tria, i); + // const Point3 p1 = tria->getCenter(); + // const Point3 p2 = o.getCenter(); + // //lines.addSegment(K::GnuplotPoint3(p1.x,p1.y,p1.z+0.1), K::GnuplotPoint3(p2.x,p2.y,p2.z+0.1)); + //} + + for (const NM::NavMeshTriangle* o : *tria) { + const Point3 p1 = tria->getCenter(); + const Point3 p2 = o->getCenter(); + // lines.addSegment(K::GnuplotPoint3(p1.x,p1.y,p1.z+0.1), K::GnuplotPoint3(p2.x,p2.y,p2.z+0.1)); + } + + } + + plot.getObjects().reOrderByZIndex(); + + } + + template void addDijkstra(NM::NavMesh& mesh) { + + distances.clear(); + + // ensure Tria extends NavMeshTriangleDijkstra + StaticAssert::AinheritsB(); + + NM::NavMeshRandom rnd = mesh.getRandom(); + + for (int i = 0; i < 5000; ++i) { + NM::NavMeshLocation loc = rnd.draw(); + float v = loc.tria->interpolate(loc.pos, loc.tria->spFromP1.distance, loc.tria->spFromP2.distance, loc.tria->spFromP3.distance); + distances.add(K::GnuplotPoint3(loc.pos.x, loc.pos.y, loc.pos.z), v); + } + + +// Distribution::Uniform dist (-0.5, +0.5); +// for (const Tria* t : mesh) { +// const Point3 posC = t->getCenter(); +// distances.add(K::GnuplotPoint3(posC.x+dist.draw(), posC.y+dist.draw(), posC.z), t->distAtCenter); +// const Point3 pos1 = t->getP1(); +// distances.add(K::GnuplotPoint3(pos1.x+dist.draw(), pos1.y+dist.draw(), pos1.z), t->distAtP1); +// const Point3 pos2 = t->getP2(); +// distances.add(K::GnuplotPoint3(pos2.x+dist.draw(), pos2.y+dist.draw(), pos2.z), t->distAtP2); +// const Point3 pos3 = t->getP3(); +// distances.add(K::GnuplotPoint3(pos3.x+dist.draw(), pos3.y+dist.draw(), pos3.z), t->distAtP3); +// } + + } + + template void addDijkstra(std::vector>& path) { + shortestPath.clear(); + for (auto& e : path) { + K::GnuplotPoint3 gp(e.pos.x, e.pos.y, e.pos.z); + shortestPath.add(gp); + } + } + + void addGroundTruthNode(const Point3 pos) { + K::GnuplotPoint3 gp(pos.x, pos.y, std::round(pos.z * 10) / 10); + groundtruthPath.add(gp); + } + + void addEstimationNode(const Point3 pos){ + K::GnuplotPoint3 est(pos.x, pos.y, std::round(pos.z * 10) / 10); + pathEstimated.add(est); + } + + + void setTimeInMinute(const int minutes, const int seconds) { + gp << "set label 1002 at screen 0.02, 0.94 'Time: " << minutes << ":" << seconds << "'\n"; + } + + void setGT(const Point3 pt) { + gp << "set arrow 31337 from " << pt.x << "," << pt.y << "," << (pt.z+1.4) << " to " << pt.x << "," << pt.y << "," << pt.z << " front \n"; + } + + void setCurPos(const Point3 pt) { + gp << "set arrow 31338 from " << pt.x << "," << pt.y << "," << (pt.z+0.9) << " to " << pt.x << "," << pt.y << "," << pt.z << " lw 2 lc 'green' front \n"; + } + + void saveToFile(std::ofstream& stream){ + gp.draw(plot); + stream << "set terminal x11 size 2000,1500\n"; + stream << gp.getBuffer(); + stream << "pause -1\n"; + gp.flush(); + } + + void printOverview(const std::string& path) { + gp << "set terminal png size 1280,720\n"; + gp << "set output '" << path << "_overview" << ".png'\n"; + gp << "set view 75,60\n"; + gp << "set autoscale xy\n"; + gp << "set autoscale z\n"; + draw(); + } + + + //meshless drawing + void addFloors(Floorplan::IndoorMap* map) { + + for (Floorplan::Floor* f : map->floors) { + for (Floorplan::FloorObstacle* obs : f->obstacles) { + Floorplan::FloorObstacleLine* line = dynamic_cast(obs); + if (line) { + K::GnuplotPoint3 p1(line->from.x, line->from.y, f->atHeight); + K::GnuplotPoint3 p2(line->to.x, line->to.y, f->atHeight); + pFloor.addSegment(p1, p2); + } + } + } + + } + + void addOutline(Floorplan::IndoorMap* map) { + + for (Floorplan::Floor* f : map->floors) { + for (Floorplan::FloorOutlinePolygon* poly : f->outline) { + const int cnt = poly->poly.points.size(); + for (int i = 0; i < cnt; ++i) { + Point2 p1 = poly->poly.points[(i+0)]; + Point2 p2 = poly->poly.points[(i+1)%cnt]; + K::GnuplotPoint3 gp1(p1.x, p1.y, f->atHeight); + K::GnuplotPoint3 gp2(p2.x, p2.y, f->atHeight); + pOutline.addSegment(gp1, gp2); + } + } + } + + } + +}; + diff --git a/map/map.xml b/map/map.xml new file mode 100644 index 0000000..fae2eb6 --- /dev/null +++ b/map/map.xml @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/map/map0_ap_path0.xml b/map/map0_ap_path0.xml new file mode 100644 index 0000000..e77606c --- /dev/null +++ b/map/map0_ap_path0.xml @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/measurements/data/Pixel2/Path0_0605.csv b/measurements/data/Pixel2/Path0_0605.csv new file mode 100644 index 0000000..c413003 --- /dev/null +++ b/measurements/data/Pixel2/Path0_0605.csv @@ -0,0 +1,57852 @@ +78;-1;1;1 +79;99;0 +79;50;STANDING;1 +80;0;-0.43463135;5.800949;8.350128 +80;0;-0.43463135;5.800949;8.350128 +80;0;-0.43463135;5.800949;8.350128 +80;0;-0.45851135;5.781952;8.245224 +80;0;-0.48239136;5.7629547;8.140289 +80;0;-0.45373535;5.7486877;8.140289 +80;0;-0.43463135;5.7201843;8.121216 +80;0;-0.38685608;5.6774445;8.183212 +80;0;-0.35820007;5.658432;8.2070465 +80;13;135.59698 +80;0;-0.34864807;5.6299133;8.254761 +80;0;-0.3295288;5.6204224;8.30722 +80;0;-0.3390808;5.568161;8.350128 +80;0;-0.3152008;5.5824127;8.38353 +80;0;-0.2722168;5.5729218;8.378754 +80;0;-0.25309753;5.558655;8.354904 +80;0;-0.25787354;5.577652;8.373978 +80;0;-0.22442627;5.568161;8.378754 +80;0;-0.23399353;5.549164;8.373978 +80;0;-0.26264954;5.5871735;8.369217 +81;0;-0.2817688;5.558655;8.316757 +81;0;-0.29130554;5.5301514;8.288132 +81;0;-0.3295288;5.5539093;8.249985 +81;0;-0.3534088;5.5396423;8.221359 +85;0;-0.3534088;5.544403;8.235672 +85;0;-0.36297607;5.5729218;8.202286 +86;0;-0.38208008;5.549164;8.121216 +87;0;-0.36775208;5.577652;8.125992 +89;0;-0.4202881;5.5729218;8.097366 +92;0;-0.41552734;5.5634003;8.097366 +92;4;-13.607788;-8.9904785;-64.64691 +92;6;0.5319531;-0.6013769;0.051271386 +92;7;0.87539256;0.41822997;-0.24242833;0.0;-0.4815621;0.71061844;-0.51295155;0.0;-0.042257678 +95;0;-0.45851135;5.558655;8.08783 +96;0;-0.45373535;5.5871735;8.03537 +100;0;-0.47763062;5.6204224;8.049683 +101;4;-13.607788;-8.9904785;-64.64691 +101;6;0.5397783;-0.60870355;0.059265852 +101;7;0.8737232;0.42163604;-0.24255063;0.0;-0.4839902;0.7037492;-0.5200872;0.0;-0.048592657 +101;0;-0.44895935;5.648926;8.054443 +103;0;-0.4298401;5.5919037;8.102127 +106;0;-0.41552734;5.5158997;8.08783 +108;0;-0.44418335;5.4826508;8.068741 +111;4;-12.5564575;-8.9904785;-63.597107 +111;6;0.52275044;-0.59612656;0.05499439 +111;7;0.8805469;0.41315013;-0.2322585;0.0;-0.4717712;0.7170011;-0.5131679;0.0;-0.045485828 +111;0;-0.47763062;5.511139;8.03537 +113;0;-0.49671936;5.534912;8.078278 +115;0;-0.47283936;5.5396423;8.106903 +118;0;-0.46806335;5.5301514;8.154587 +119;5;999.50464 +120;4;-12.5564575;-8.9904785;-63.597107 +120;6;0.5279048;-0.5951567;0.05733587 +120;7;0.878628;0.41711444;-0.23244002;0.0;-0.4751433;0.7153321;-0.5123855;0.0;-0.04745157 +120;0;-0.43940735;5.534912;8.140289 +122;0;-0.46806335;5.4826508;8.149826 +123;3;-0.0697937;-0.04057312;0.025726318 +125;0;-0.45373535;5.444641;8.2118225 +125;3;-0.075302124;-0.043014526;0.024505615 +127;0;-0.42507935;5.468399;8.230911 +127;1;-0.38148436;5.5268164;8.095979 +128;3;-0.079574585;-0.043014526;0.025115967 +130;4;-12.107849;-7.7911377;-63.29651 +130;6;0.49998444;-0.58579963;0.051598422 +130;7;0.89009213;0.39947966;-0.21943553;0.0;-0.4537499;0.73126966;-0.5092697;0.0;-0.042976353 +130;0;-0.43940735;5.454132;8.249985 +130;3;-0.08018494;-0.04423523;0.025726318 +131;12;0.28901348;-0.053710938;-0.23829147;0.9256368 +133;0;-0.44418335;5.4351196;8.2595215 +133;1;-0.37911916;5.523764;8.098172 +133;3;-0.08079529;-0.03996277;0.02633667 +134;0;-0.4298401;5.411377;8.230911 +135;12;0.28880814;-0.05377967;-0.23827559;0.925701 +135;3;-0.08079529;-0.03691101;0.026947021 +137;0;-0.46328735;5.4398804;8.249985 +138;1;-0.37692294;5.520677;8.100381 +138;3;-0.079574585;-0.033233643;0.02999878 +139;4;-12.107849;-7.7911377;-63.29651 +139;6;0.5113239;-0.58221817;0.056097228 +139;7;0.8858119;0.40871233;-0.2197532;0.0;-0.46167538;0.728415;-0.5062286;0.0;-0.046830356 +139;0;-0.44895935;5.4493866;8.273819 +140;3;-0.075302124;-0.02835083;0.032440186 +140;12;0.28860357;-0.053837202;-0.2382535;0.9257672 +141;0;-0.4202881;5.3971252;8.269058 +142;1;-0.37490243;5.5177264;8.102484 +142;3;-0.07347107;-0.022857666;0.03366089 +144;0;-0.46328735;5.35437;8.254761 +144;12;0.2884102;-0.05388285;-0.23821555;0.9258346 +144;3;-0.0697937;-0.017959595;0.036727905 +146;0;-0.4298401;5.3828583;8.254761 +147;1;-0.37316903;5.51499;8.104427 +147;3;-0.06796265;-0.009414673;0.03855896 +150;4;-11.956787;-8.390808;-65.54718 +150;6;0.49622765;-0.57722473;0.052024793 +150;7;0.89170575;0.39897215;-0.21373357;0.0;-0.45051295;0.73690724;-0.5039899;0.0;-0.043576088 +150;0;-0.4202881;5.344864;8.245209 +150;3;-0.063079834;-0.0033111572;0.041000366 +150;12;0.28823394;-0.053911716;-0.23816049;0.92590195 +151;0;-0.41552734;5.3591156;8.269058 +152;1;-0.37187183;5.512514;8.106172 +152;3;-0.060638428;0.0021820068;0.044052124 +154;0;-0.4298401;5.387619;8.254761 +154;12;0.28807977;-0.05391587;-0.23808514;0.92596906 +155;3;-0.05697632;0.007080078;0.04649353 +156;0;-0.41552734;5.368622;8.230911 +156;1;-0.37085646;5.5103087;8.107717 +157;3;-0.055755615;0.013183594;0.048934937 +158;5;999.50464 +159;4;-12.857056;-8.691406;-64.34631 +159;6;0.53018886;-0.5773739;0.050440934 +159;7;0.87553126;0.4237224;-0.23217334;0.0;-0.48131108;0.7228651;-0.49578798;0.0;-0.042246483 +159;0;-0.41552734;5.4066315;8.2595215 +159;3;-0.05697632;0.01928711;0.05015564 +160;12;0.28794605;-0.05390327;-0.23798913;0.92603606 +161;0;-0.45373535;5.378128;8.2165985 +161;1;-0.37018082;5.508205;8.109177 +161;3;-0.055130005;0.02355957;0.05078125 +164;13;129.70099 +164;0;-0.41073608;5.3828583;8.235672 +166;12;0.28782377;-0.053869233;-0.23787531;0.92610526 +166;3;-0.055130005;0.026626587;0.05078125 +166;0;-0.44895935;5.420868;8.187988 +166;1;-0.3698168;5.506151;8.110588 +166;3;-0.055130005;0.02722168;0.053222656 +168;4;-13.757324;-7.7911377;-64.497375 +168;6;0.543197;-0.5841098;0.05477661 +168;7;0.87038213;0.43117923;-0.23773843;0.0;-0.49025416;0.7141287;-0.4996711;0.0;-0.04567198 +169;0;-0.40596008;5.420868;8.187988 +169;3;-0.05697632;0.02784729;0.053833008 +170;12;0.28770915;-0.053817082;-0.23775247;0.9261755 +171;0;-0.41552734;5.4161377;8.173676 +171;1;-0.36947623;5.5040655;8.11202 +171;3;-0.058807373;0.026626587;0.053222656 +173;0;-0.41552734;5.4303894;8.192749 +173;12;0.28759345;-0.053760882;-0.23762196;0.92624813 +174;3;-0.06185913;0.026626587;0.05444336 +175;0;-0.45373535;5.420868;8.178452 +176;1;-0.36909264;5.501814;8.1135645 +176;3;-0.06430054;0.022338867;0.053222656 +178;4;-13.157654;-8.691406;-65.54718 +178;6;0.53229314;-0.5846296;0.055422556 +178;7;0.8758379;0.42322144;-0.23193006;0.0;-0.48038948;0.7185405;-0.502917;0.0;-0.04619413 +179;0;-0.43940735;5.3971252;8.173676 +179;3;-0.06796265;0.021728516;0.052597046 +179;12;0.28746775;-0.05370445;-0.23749197;0.9263238 +180;0;-0.47283936;5.458893;8.1689 +180;1;-0.36855674;5.499336;8.115269 +181;2;0.033420116;0.05334711;-0.055024147; +181;3;-0.07469177;0.018066406;0.05078125 +183;0;-0.47763062;5.4826508;8.192749 +183;12;0.28732675;-0.053654257;-0.2373679;0.9264023 +183;3;-0.07774353;0.016235352;0.049545288 +185;0;-0.43940735;5.458893;8.183212 +185;3;-0.08140564;0.014404297;0.05015564 +187;1;-0.36790448;5.4964576;8.117248 +187;4;-13.607788;-8.691406;-63.89618 +187;6;0.5502674;-0.5876273;0.053644672 +187;7;0.86670256;0.43520057;-0.24377686;0.0;-0.49682522;0.70940435;-0.49991012;0.0;-0.04462482 +188;0;-0.43940735;5.4351196;8.221359 +188;3;-0.08811951;0.0107421875;0.048324585 +188;12;0.28716087;-0.05360729;-0.23725457;0.9264855 +190;0;-0.46328735;5.4731293;8.2165985 +190;1;-0.3670996;5.4932466;8.119458 +190;3;-0.09240723;0.008300781;0.04710388 +192;0;-0.4202881;5.4826508;8.2070465 +192;12;0.28697354;-0.053564973;-0.23714752;0.9265733 +193;3;-0.09851074;0.006454468;0.04588318 +194;0;-0.41073608;5.4493866;8.2165985 +195;1;-0.36616495;5.489612;8.121958 +195;3;-0.1027832;0.0040283203;0.045272827 +196;5;999.50464 +198;4;-12.107849;-8.540344;-65.69672 +198;6;0.49058217;-0.5850358;0.049947 +198;7;0.8939484;0.39278534;-0.21581466;0.0;-0.44623291;0.73536557;-0.51001334;0.0;-0.04162312 +200;0;-0.42507935;5.5301514;8.221359 +200;3;-0.10646057;3.6621094E-4;0.04588318 +200;12;0.28675988;-0.053526238;-0.23705153;0.9266663 +200;0;-0.39640808;5.5158997;8.221359 +200;1;-0.3650531;5.48562;8.124704 +200;2;0.038092315;-0.020347595;-0.0682888; +200;3;-0.11193848;-0.0020751953;0.044052124 +202;0;-0.37728882;5.511139;8.269058 +202;12;0.28652298;-0.053493217;-0.23696226;0.9267643 +202;3;-0.11378479;-0.0027008057;0.043441772 +204;0;-0.41073608;5.5158997;8.254761 +204;1;-0.36381114;5.4812994;8.127675 +204;3;-0.11317444;-0.0033111572;0.04222107 +207;4;-12.107849;-8.09021;-64.497375 +207;6;0.48978704;-0.5884981;0.049716476 +207;7;0.89432055;0.39129865;-0.21696988;0.0;-0.44551307;0.73398596;-0.51262313;0.0;-0.041335903 +207;0;-0.39640808;5.47789;8.316757 +207;3;-0.1162262;3.6621094E-4;0.043441772 +208;12;0.28626534;-0.053464416;-0.23688126;0.92686623 +209;0;-0.41552734;5.47789;8.335815 +209;1;-0.36263087;5.4769034;8.130691 +209;3;-0.1186676;9.613037E-4;0.04283142 +211;0;-0.4202881;5.501648;8.335815 +212;12;0.28600425;-0.053431883;-0.2368019;0.92696905 +212;3;-0.11683655;0.0028076172;0.04222107 +214;0;-0.38685608;5.511139;8.340591 +214;1;-0.3615895;5.4723883;8.133778 +214;3;-0.1162262;0.007080078;0.044052124 +216;4;-13.607788;-7.6400757;-63.597107 +216;6;0.5293253;-0.5834089;0.046349112 +216;7;0.875109;0.42142692;-0.23787294;0.0;-0.48237836;0.7203743;-0.4983692;0.0;-0.03866864 +217;0;-0.40596008;5.5063934;8.378754 +217;3;-0.1162262;0.0107421875;0.045272827 +217;12;0.2857383;-0.05338997;-0.23672126;0.927074 +220;1;-0.36076796;5.467932;8.136809 +221;2;0.007721573;-0.060605526;-0.16834164; +221;0;-0.38208008;5.5063934;8.345367 +221;3;-0.11317444;0.015014648;0.04649353 +221;0;-0.38685608;5.4969025;8.373978 +222;12;0.28547943;-0.053334773;-0.23663083;0.92718 +222;3;-0.11071777;0.01928711;0.047714233 +223;0;-0.36775208;5.454132;8.35968 +224;1;-0.3602002;5.4636173;8.139733 +224;3;-0.10949707;0.024169922;0.049545288 +226;4;-11.956787;-8.390808;-63.89618 +226;6;0.49179783;-0.5776415;0.04396282 +226;7;0.89196587;0.39559647;-0.21886161;0.0;-0.45060116;0.73846686;-0.50162274;0.0;-0.036818117 +226;0;-0.36297607;5.468399;8.38829 +226;3;-0.10522461;0.028442383;0.05078125 +227;12;0.2852327;-0.05326493;-0.23652813;0.92728615 +228;0;-0.37252808;5.4256287;8.416901 +228;1;-0.35991308;5.4595103;8.142501 +229;3;-0.1015625;0.032730103;0.052001953 +231;0;-0.38685608;5.444641;8.393066 +231;12;0.28500247;-0.053179853;-0.23641245;0.9273914 +231;3;-0.095458984;0.036392212;0.053222656 +233;0;-0.40596008;5.4256287;8.407364 +233;1;-0.35988706;5.455753;8.1450205 +234;3;-0.091796875;0.041885376;0.053222656 +235;5;999.50464 +235;4;-13.006592;-8.540344;-65.24658 +236;6;0.52611613;-0.5725636;0.048248775 +236;7;0.8768798;0.42208844;-0.23005037;0.0;-0.47899735;0.7268469;-0.49219412;0.0;-0.040538076 +236;0;-0.37728882;5.4161377;8.402588 +236;3;-0.08811951;0.045547485;0.05444336 +237;12;0.2847962;-0.053083066;-0.23628455;0.92749286 +238;0;-0.38208008;5.411377;8.38353 +238;1;-0.36018762;5.4523273;8.1473 +239;3;-0.0844574;0.050445557;0.05505371 +239;2;-0.010836303;-0.017997742;-0.22647762; +240;0;-0.38685608;5.47789;8.416901 +241;12;0.284614;-0.05297163;-0.23614657;0.92759025 +241;3;-0.07896423;0.05593872;0.05810547 +243;0;-0.38685608;5.4256287;8.402588 +243;1;-0.36078754;5.44923;8.149345 +243;3;-0.07408142;0.05899048;0.056884766 +245;4;-12.5564575;-8.691406;-65.097046 +245;6;0.512235;-0.57287055;0.04600762 +245;7;0.88294744;0.41187707;-0.22530183;0.0;-0.46787807;0.7324907;-0.49451718;0.0;-0.03864879 +245;0;-0.35820007;5.4303894;8.41214 +246;3;-0.0697937;0.06265259;0.057495117 +246;12;0.2844551;-0.0528457;-0.23599498;0.92768484 +248;0;-0.36775208;5.4256287;8.416901 +255;1;-0.3616696;5.446513;8.151122 +255;3;-0.06674194;0.066329956;0.056274414 +255;0;-0.36297607;5.4351196;8.38353 +255;12;0.28432205;-0.052708756;-0.23583557;0.9277739 +255;3;-0.062469482;0.069992065;0.05505371 +255;0;-0.39640808;5.4398804;8.373978 +256;1;-0.36288026;5.444081;8.152694 +256;3;-0.058807373;0.07243347;0.056274414 +256;4;-13.456726;-7.1914673;-65.24658 +256;6;0.5165496;-0.57559496;0.047302775 +256;7;0.8812679;0.41430286;-0.22742075;0.0;-0.47094977;0.7294202;-0.49613783;0.0;-0.039666016 +256;0;-0.36775208;5.4256287;8.378754 +256;3;-0.056365967;0.073654175;0.057495117 +256;12;0.28420976;-0.052558582;-0.23567362;0.92785805 +261;1;-0.36425027;5.4419255;8.154071 +261;12;0.2841156;-0.052402373;-0.23550472;0.9279386 +261;0;-0.38208008;5.4351196;8.364441 +261;3;-0.054534912;0.073654175;0.05810547 +261;0;-0.3534088;5.4303894;8.364441 +261;3;-0.050857544;0.073654175;0.059936523 +262;2;-0.019128382;-0.022433281;-0.22276974; +262;1;-0.3655887;5.439964;8.15532 +262;0;-0.3534088;5.4303894;8.369217 +262;3;-0.047805786;0.07487488;0.061157227 +266;12;0.28403232;-0.052249026;-0.23532999;0.928017 +266;4;-12.107849;-7.4905396;-65.69672 +266;6;0.4717885;-0.57516164;0.042202152 +266;7;0.9003941;0.3813563;-0.20942295;0.0;-0.4336327;0.7474381;-0.5032883;0.0;-0.0354015 +266;0;-0.36297607;5.4018707;8.373978 +266;3;-0.047805786;0.07426453;0.06237793 +267;0;-0.37252808;5.4256287;8.393066 +267;1;-0.36689264;5.438197;8.15644 +267;3;-0.046585083;0.07304382;0.064208984 +270;12;0.28396004;-0.05209823;-0.23514794;0.9280938 +270;0;-0.37252808;5.387619;8.378754 +270;3;-0.04475403;0.07426453;0.06726074 +273;1;-0.368065;5.4365106;8.157511 +273;0;-0.3343048;5.4398804;8.378754 +273;3;-0.04475403;0.07121277;0.06665039 +273;5;999.52856 +274;4;-13.157654;-7.6400757;-65.097046 +274;6;0.50162697;-0.5754825;0.03987796 +274;7;0.88653755;0.40340164;-0.22653522;0.0;-0.46144605;0.7355748;-0.495981;0.0;-0.033445943 +274;0;-0.34864807;5.4398804;8.38829 +274;3;-0.044143677;0.06816101;0.06788635 +275;12;0.28389105;-0.051952552;-0.23495615;0.9281716 +276;0;-0.3390808;5.4303894;8.35968 +277;1;-0.36903533;5.4348865;8.158549 +277;2;-0.045472145;-0.015755177;-0.2004919; +277;3;-0.04475403;0.065719604;0.06788635 +279;0;-0.3295288;5.4351196;8.369217 +279;12;0.2838228;-0.051818375;-0.23476467;0.92824835 +279;3;-0.04475403;0.06387329;0.069107056 +281;0;-0.3199768;5.4636383;8.350128 +281;1;-0.36978203;5.433253;8.159603 +281;3;-0.042922974;0.06021118;0.068481445 +283;4;-12.406921;-7.1914673;-66.14685 +283;6;0.46322614;-0.5790686;0.038301244 +284;7;0.903323;0.37399006;-0.21009307;0.0;-0.4277622;0.7487689;-0.5063247;0.0;-0.03204926 +284;0;-0.28652954;5.444641;8.345367 +284;3;-0.042922974;0.05593872;0.069107056 +284;12;0.28375104;-0.051695824;-0.2345738;0.9283255 +286;0;-0.32476807;5.468399;8.38829 +286;1;-0.37026063;5.431682;8.160627 +286;3;-0.043533325;0.053497314;0.07154846 +288;0;-0.30085754;5.501648;8.354904 +289;12;0.28367907;-0.05158878;-0.23438536;0.92840093 +289;3;-0.042922974;0.052886963;0.07092285 +290;0;-0.25787354;5.47789;8.345367 +291;3;-0.042312622;0.049224854;0.07154846 +291;1;-0.37048018;5.430115;8.161661 +293;4;-12.70752;-6.890869;-64.497375 +293;6;0.46364728;-0.5806415;0.030890372 +293;7;0.90157753;0.37391987;-0.21758167;0.0;-0.431846;0.74784034;-0.50422573;0.0;-0.025823668 +293;0;-0.24832153;5.47789;8.350128 +293;3;-0.042922974;0.04676819;0.07154846 +295;12;0.28360382;-0.05149496;-0.23419599;0.9284769 +295;0;-0.23876953;5.5063934;8.321533 +296;1;-0.37048748;5.428574;8.162686 +296;2;-0.113280684;-0.07073355;-0.17377758; +296;3;-0.04475403;0.041885376;0.068481445 +298;0;-0.25309753;5.468399;8.335815 +298;12;0.28352702;-0.05141327;-0.23400937;0.92855203 +298;3;-0.043533325;0.03883362;0.06726074 +300;0;-0.23876953;5.4826508;8.354904 +300;1;-0.3702922;5.4269648;8.163764 +301;3;-0.044143677;0.037002563;0.06604004 +302;4;-12.107849;-8.09021;-67.64679 +302;6;0.43589297;-0.5805478;0.028570592 +302;7;0.91273886;0.35304445;-0.20559005;0.0;-0.40784442;0.7579755;-0.5090539;0.0;-0.023886401 +303;0;-0.26264954;5.468399;8.350128 +303;3;-0.046585083;0.032730103;0.064208984 +304;12;0.2834429;-0.051345203;-0.2338363;0.9286251 +305;0;-0.24832153;5.4636383;8.350128 +305;1;-0.36995453;5.4253006;8.1648855 +305;3;-0.04597473;0.03211975;0.06298828 +307;0;-0.22442627;5.4636383;8.378754 +308;12;0.2833532;-0.05128685;-0.23367317;0.92869663 +308;3;-0.047805786;0.03211975;0.061767578 +310;0;-0.22921753;5.4018707;8.350128 +310;1;-0.36957943;5.423571;8.166051 +310;3;-0.04902649;0.03211975;0.06237793 +311;5;999.52856 +313;9;52ADB5BC186F;-91;-2147483648 +315;4;-13.607788;-7.3410034;-63.89618 +315;6;0.4969032;-0.5740357;0.027443888 +315;7;0.88583535;0.40029743;-0.23464383;0.0;-0.46342725;0.7381636;-0.49025476;0.0;-0.023042187 +315;0;-0.21487427;5.411377;8.35968 +315;12;0.2832588;-0.051231913;-0.23351823;0.92876744 +315;3;-0.051467896;0.03211975;0.06237793 +316;1;-0.3692055;5.42171;8.167305 +316;2;-0.15984705;-0.05262232;-0.16622639; +316;0;-0.25309753;5.4161377;8.321533 +316;3;-0.0526886;0.030883789;0.06298828 +318;0;-0.23876953;5.4066315;8.35968 +319;3;-0.0526886;0.030288696;0.061157227 +319;12;0.28315696;-0.05117503;-0.2333637;0.9288405 +319;0;-0.19099426;5.4303894;8.350128 +320;1;-0.36877835;5.4197507;8.168624 +320;3;-0.055130005;0.029663086;0.061157227 +322;4;-11.506653;-7.0404053;-65.097046 +322;6;0.41575307;-0.57649195;0.022869226 +322;7;0.9196074;0.33860406;-0.19917206;0.0;-0.39237058;0.7669605;-0.5077568;0.0;-0.019171432 +322;0;-0.18144226;5.4161377;8.354904 +322;3;-0.055755615;0.028442383;0.061767578 +323;12;0.28304884;-0.051120196;-0.23321109;0.92891484 +324;0;-0.22921753;5.4018707;8.369217 +324;1;-0.36830705;5.4176817;8.170018 +325;3;-0.058807373;0.02722168;0.059936523 +327;0;-0.21009827;5.3971252;8.393066 +327;12;0.28293362;-0.051066693;-0.23306124;0.9289904 +327;3;-0.059417725;0.02722168;0.059326172 +329;0;-0.19577026;5.378128;8.373978 +329;1;-0.3678115;5.4154644;8.17151 +329;3;-0.06124878;0.02784729;0.05871582 +332;4;-11.657715;-6.890869;-64.497375 +332;6;0.42746773;-0.5707786;0.02337415 +332;7;0.9150049;0.3488507;-0.20265552;0.0;-0.4029631;0.76576287;-0.5012265;0.0;-0.019667102 +332;0;-0.23399353;5.3591156;8.397842 +333;3;-0.063690186;0.029067993;0.05871582 +333;12;0.28280938;-0.05101399;-0.23291717;0.9290673 +333;9;2AEC2AEBC4E1;-78;-2147483648 +335;1;-0.36739138;5.4131093;8.173089 +335;2;-0.1843881;-0.0071282387;-0.18556595; +335;0;-0.23399353;5.35437;8.402588 +336;3;-0.06613159;0.030288696;0.05810547 +336;0;-0.21487427;5.3591156;8.393066 +337;12;0.2826784;-0.050956;-0.23277472;0.92914605 +338;3;-0.067352295;0.030288696;0.059326172 +340;1;-0.3670432;5.410587;8.174774 +340;0;-0.23876953;5.3353577;8.41214 +340;3;-0.068573;0.029663086;0.059936523 +341;4;-12.857056;-6.2911987;-66.596985 +341;6;0.45493793;-0.5650376;0.028376304 +341;7;0.9046021;0.37110886;-0.20969778;0.0;-0.42558283;0.75866586;-0.49325973;0.0;-0.023962513 +341;0;-0.23399353;5.35437;8.426437 +342;12;0.2825388;-0.05089149;-0.23263155;0.92922795 +342;3;-0.06918335;0.029663086;0.05871582 +343;0;-0.21487427;5.330597;8.41214 +343;1;-0.36665493;5.407979;8.1765175 +344;3;-0.0697937;0.029067993;0.05810547 +346;0;-0.23876953;5.35437;8.41214 +346;12;0.282394;-0.05082764;-0.23248766;0.9293114 +346;3;-0.07040405;0.029067993;0.056884766 +349;1;-0.36629328;5.405321;8.178291 +349;0;-0.23876953;5.35437;8.450302 +349;3;-0.0697937;0.02722168;0.055664062 +350;5;999.52856 +350;4;-13.157654;-7.0404053;-63.597107 +350;6;0.4923302;-0.5646011;0.028248223 +350;7;0.8880259;0.39932156;-0.22793056;0.0;-0.45917392;0.74446815;-0.4846921;0.0;-0.023860984 +351;0;-0.21966553;5.378128;8.464584 +351;3;-0.0697937;0.026000977;0.053222656 +351;12;0.28224632;-0.050763205;-0.23234843;0.9293946 +353;0;-0.22921753;5.3496094;8.497986 +353;1;-0.3659132;5.402666;8.180062 +353;2;-0.16864237;0.02347231;-0.2370882; +354;3;-0.068573;0.026626587;0.049545288 +355;0;-0.22921753;5.264099;8.517059 +356;3;-0.071014404;0.026626587;0.04710388 +356;12;0.28209803;-0.050702278;-0.23221761;0.92947567 +358;0;-0.23876953;5.254593;8.464584 +358;1;-0.36569276;5.3999777;8.181848 +358;3;-0.071624756;0.02784729;0.04588318 +361;4;-11.956787;-6.590271;-64.34631 +361;6;0.45502946;-0.55537635;0.028200585 +361;7;0.9044249;0.3734345;-0.20630631;0.0;-0.42595962;0.76324326;-0.48581696;0.0;-0.02395892 +361;0;-0.26264954;5.264099;8.46936 +361;3;-0.071014404;0.026626587;0.043441772 +361;12;0.28194946;-0.05063664;-0.23209968;0.9295538 +367;0;-0.25787354;5.297348;8.435989 +367;1;-0.36559483;5.397241;8.183657 +368;12;0.28179935;-0.050566774;-0.23199043;0.9296304 +368;1;-0.365332;5.394631;8.1853895 +368;3;-0.06918335;0.02355957;0.04283142 +368;0;-0.25309753;5.278351;8.464584 +368;3;-0.06674194;0.01928711;0.041610718 +369;0;-0.25309753;5.3163605;8.488449 +369;3;-0.06552124;0.016235352;0.03794861 +370;4;-12.5564575;-6.2911987;-65.54718 +370;6;0.4605554;-0.55933756;0.029807867 +370;7;0.90243655;0.37671524;-0.20903106;0.0;-0.43008164;0.7592912;-0.48837167;0.0;-0.02526161 +370;0;-0.2722168;5.321106;8.483673 +371;12;0.2816538;-0.050510056;-0.23189011;0.92970264 +371;3;-0.063690186;0.013183594;0.036117554 +372;0;-0.29130554;5.2736053;8.488449 +372;1;-0.36494288;5.3921423;8.187047 +372;2;-0.13907713;0.081299305;-0.2731352; +373;3;-0.062469482;0.0107421875;0.033050537 +375;12;0.2815124;-0.050466523;-0.23180552;0.9297689 +375;0;-0.2722168;5.2688446;8.517059 +375;3;-0.060028076;0.009521484;0.032440186 +378;0;-0.26264954;5.2498474;8.521835 +379;1;-0.36448446;5.389773;8.188627 +379;3;-0.05758667;0.007080078;0.033050537 +379;4;-12.5564575;-6.2911987;-66.29639 +379;6;0.46366346;-0.5519229;0.030811017 +379;7;0.9012194;0.3808224;-0.20682806;0.0;-0.43256837;0.7616146;-0.48252216;0.0;-0.026231978 +380;0;-0.30085754;5.2498474;8.555222 +380;3;-0.055130005;0.0052490234;0.032440186 +380;12;0.28137627;-0.050432112;-0.23173313;0.9298301 +381;0;-0.2722168;5.230835;8.521835 +382;1;-0.36387196;5.3875933;8.190089 +382;3;-0.0526886;0.0040283203;0.032440186 +384;0;-0.27697754;5.240341;8.49321 +384;12;0.28124878;-0.05040928;-0.2316628;0.9298873 +384;3;-0.0526886;0.0015869141;0.03366089 +386;0;-0.28652954;5.1833344;8.483673 +387;1;-0.3631206;5.385557;8.191462 +387;3;-0.050247192;-2.593994E-4;0.03366089 +388;5;999.52856 +389;4;-12.406921;-7.7911377;-65.24658 +389;6;0.4939761;-0.5481987;0.033761397 +389;7;0.88829345;0.40465352;-0.21723281;0.0;-0.45837173;0.7514369;-0.4745923;0.0;-0.028808689 +389;0;-0.23399353;5.2260895;8.459839 +390;12;0.28112754;-0.050396238;-0.23159361;0.9299419 +390;3;-0.047195435;-0.0027008057;0.035507202 +391;0;-0.27697754;5.2165833;8.507523 +391;1;-0.36215872;5.383678;8.192739 +392;2;-0.12080631;0.12341213;-0.2985201; +392;3;-0.04475403;-0.003921509;0.03489685 +394;0;-0.30085754;5.2688446;8.540909 +394;3;-0.042312622;-0.0033111572;0.036117554 +395;12;0.28101262;-0.05039587;-0.23152347;0.9299942 +396;0;-0.25309753;5.240341;8.540909 +396;3;-0.038650513;-0.0020751953;0.036117554 +396;1;-0.36109132;5.3820057;8.193884 +401;4;-13.607788;-7.940674;-65.54718 +402;6;0.51800174;-0.5501332;0.029624889 +402;7;0.8760968;0.42208877;-0.23301399;0.0;-0.48147362;0.7406216;-0.46868193;0.0;-0.025250187 +402;0;-0.2817688;5.240341;8.526611 +402;12;0.28090787;-0.050403837;-0.23145202;0.9300431 +402;3;-0.036209106;-0.0020751953;0.0342865 +402;0;-0.24354553;5.2593536;8.49321 +402;1;-0.36009145;5.380571;8.19487 +402;3;-0.0337677;-0.0014801025;0.0342865 +403;0;-0.29130554;5.211838;8.474136 +403;12;0.2808177;-0.050411575;-0.23137948;0.930088 +404;3;-0.031311035;-8.544922E-4;0.032440186 +405;0;-0.26742554;5.2165833;8.450302 +406;1;-0.35917577;5.3793254;8.195729 +406;3;-0.028259277;-8.544922E-4;0.029388428 +408;4;-13.757324;-7.1914673;-66.44745 +408;6;0.5072231;-0.5528375;0.0316363 +408;7;0.8817274;0.41339323;-0.2272941;0.0;-0.47099036;0.7438894;-0.47412694;0.0;-0.026919203 +408;0;-0.27697754;5.2070923;8.455063 +408;3;-0.025817871;-0.0027008057;0.029388428 +409;12;0.2807391;-0.050418742;-0.23130983;0.93012863 +410;0;-0.26742554;5.221344;8.474136 +410;1;-0.35833815;5.378288;8.196446 +411;2;-0.11703107;0.11811495;-0.2817793; +411;3;-0.023376465;-0.0014801025;0.026947021 +413;0;-0.22921753;5.240341;8.464584 +413;12;0.2806729;-0.050427783;-0.23124875;0.9301633 +413;3;-0.02154541;-0.0027008057;0.024505615 +415;0;-0.2817688;5.230835;8.459839 +415;1;-0.35758093;5.3774247;8.197045 +415;3;-0.020324707;-0.0027008057;0.023284912 +418;4;-11.506653;-7.6400757;-65.54718 +418;6;0.4582465;-0.55352885;0.03329433 +418;7;0.90407383;0.37631825;-0.2025711;0.0;-0.42643708;0.76291025;-0.4859211;0.0;-0.028317414 +419;0;-0.3056488;5.2450867;8.474136 +419;3;-0.0209198;-0.003921509;0.022064209 +423;12;0.2806173;-0.05043733;-0.23119552;0.9301928 +424;1;-0.3568591;5.3766284;8.197599 +424;0;-0.28652954;5.240341;8.44075 +424;9;2AEC2AEBC4E1;-80;-2147483648 +426;3;-0.019104004;-0.0045318604;0.020233154 +426;0;-0.25787354;5.2498474;8.435989 +426;12;0.28056547;-0.05044872;-0.23114969;0.93021923 +426;3;-0.018478394;-0.0033111572;0.019012451 +426;0;-0.2817688;5.2688446;8.397842 +426;1;-0.3561887;5.3759027;8.198104 +426;3;-0.018478394;-0.0045318604;0.017181396 +427;5;999.5459 +427;4;-13.456726;-8.09021;-64.94751 +427;6;0.51847637;-0.5600733;0.03353994 +427;7;0.87691486;0.41984415;-0.23398943;0.0;-0.4798052;0.7358709;-0.47778744;0.0;-0.028410252 +427;0;-0.24832153;5.311615;8.402588 +428;3;-0.018478394;-0.007583618;0.01473999 +428;12;0.28051805;-0.050460543;-0.23111078;0.93024254 +429;0;-0.24832153;5.2688446;8.393066 +430;1;-0.3555265;5.375188;8.198602 +430;3;-0.0178833;-0.009414673;0.012283325 +430;2;-0.119647294;0.09133482;-0.21885777; +432;0;-0.25309753;5.287857;8.38829 +432;12;0.28047058;-0.050474927;-0.23108146;0.93026346 +432;3;-0.0178833;-0.011245728;0.011062622 +434;0;-0.25309753;5.264099;8.369217 +434;1;-0.35480264;5.3744826;8.199096 +435;3;-0.016036987;-0.011856079;0.008621216 +437;4;-13.607788;-6.2911987;-64.64691 +437;6;0.49454495;-0.5612528;0.030232271 +437;7;0.8874187;0.40181753;-0.22589973;0.0;-0.46025333;0.74515474;-0.48260877;0.0;-0.025590409 +438;0;-0.23876953;5.3163605;8.38829 +438;3;-0.018478394;-0.014297485;0.0061798096 +438;12;0.28042233;-0.05049645;-0.2310643;0.930281 +439;0;-0.24354553;5.3163605;8.373978 +439;1;-0.354084;5.3738017;8.199572 +440;3;-0.019699097;-0.014297485;0.0061798096 +441;0;-0.22921753;5.3163605;8.402588 +442;12;0.28037485;-0.050521534;-0.23105855;0.93029535 +442;3;-0.019699097;-0.014297485;0.0049591064 +444;1;-0.35336274;5.373022;8.200115 +444;0;-0.22442627;5.3163605;8.397842 +444;3;-0.02154541;-0.0155181885;0.0031280518 +446;4;-12.5564575;-8.390808;-66.29639 +446;6;0.47038814;-0.5642149;0.026717916 +446;7;0.8975491;0.38298526;-0.21846731;0.0;-0.44033635;0.7532344;-0.48861226;0.0;-0.022574186 +446;0;-0.20533752;5.3163605;8.38353 +447;3;-0.022155762;-0.014297485;0.0012969971 +447;12;0.28032145;-0.05054688;-0.23105794;0.93031025 +449;0;-0.21009827;5.3496094;8.364441 +449;1;-0.35270113;5.372153;8.200713 +449;3;-0.022766113;-0.012466431;0.0019073486 +450;2;-0.15209979;0.034898758;-0.16672134; +451;0;-0.21487427;5.3258667;8.345367 +452;12;0.28026354;-0.05057022;-0.23106547;0.93032455 +452;3;-0.02520752;-0.011856079;6.866455E-4 +454;0;-0.20533752;5.302109;8.378754 +454;1;-0.3521714;5.371199;8.20136 +454;3;-0.02520752;-0.012466431;0.0019073486 +456;4;-12.5564575;-7.6400757;-64.34631 +456;6;0.47066584;-0.5640559;0.024502026 +456;7;0.89693874;0.383233;-0.22053017;0.0;-0.44167006;0.75320387;-0.4874544;0.0;-0.020704437 +457;0;-0.21966553;5.278351;8.345367 +457;3;-0.02520752;-0.012466431;6.866455E-4 +457;12;0.28020224;-0.050585583;-0.23107347;0.93034023 +459;1;-0.35163167;5.3701954;8.202041 +459;0;-0.22921753;5.3068542;8.326294 +459;3;-0.02520752;-0.012466431;0.0012969971 +462;12;0.28013825;-0.05060091;-0.23108184;0.9303566 +462;0;-0.22442627;5.311615;8.350128 +462;3;-0.023986816;-0.011856079;-0.0011444092 +463;0;-0.19577026;5.3068542;8.33107 +463;1;-0.35113293;5.3692155;8.202703 +463;3;-0.02520752;-0.011856079;-0.0011444092 +465;5;999.5459 +466;4;-12.857056;-5.9906006;-63.89618 +466;6;0.45830056;-0.5670538;0.02349449 +466;7;0.90214103;0.37317955;-0.21651448;0.0;-0.43098593;0.7564441;-0.49197915;0.0;-0.019815478 +466;0;-0.21487427;5.3068542;8.33107 +466;3;-0.023986816;-0.011245728;-0.0023651123 +467;12;0.2800759;-0.05061522;-0.23109262;0.93037194 +468;0;-0.23876953;5.287857;8.35968 +468;1;-0.35070753;5.368231;8.203366 +468;3;-0.02520752;-0.010635376;-0.004211426 +469;2;-0.16448152;0.03814268;-0.12653923; +471;12;0.28001392;-0.050626688;-0.23110712;0.93038636 +471;0;-0.23876953;5.2830963;8.364441 +471;3;-0.027038574;-0.009414673;-0.004211426 +473;0;-0.22442627;5.2926025;8.364441 +473;1;-0.35040495;5.3671794;8.204067 +473;3;-0.028259277;-0.007583618;-0.0048065186 +475;4;-13.006592;-7.7911377;-65.24658 +475;6;0.4835059;-0.56399053;0.02682456 +475;7;0.8917173;0.39288846;-0.22467464;0.0;-0.45202452;0.74825186;-0.48558483;0.0;-0.022667482 +476;0;-0.21487427;5.254593;8.35968 +476;3;-0.02947998;-0.005142212;-0.006652832 +476;12;0.2799496;-0.050632376;-0.23112623;0.9304006 +478;1;-0.35028186;5.366016;8.204833 +479;0;-0.21009827;5.297348;8.38829 +479;3;-0.031921387;-0.0045318604;-0.0060424805 +480;0;-0.24354553;5.287857;8.402588 +480;3;-0.031921387;-0.0045318604;-0.005432129 +481;12;0.27988136;-0.050627332;-0.2311466;0.93041635 +482;0;-0.22442627;5.278351;8.33107 +482;1;-0.35023478;5.3647337;8.205674 +483;3;-0.03253174;-0.0027008057;-0.009094238 +485;4;-12.70752;-6.440735;-64.497375 +485;6;0.4637367;-0.56457734;0.026931955 +485;7;0.9005078;0.37788004;-0.21515673;0.0;-0.43424442;0.75559175;-0.49042132;0.0;-0.022749767 +485;0;-0.23876953;5.264099;8.354904 +485;3;-0.036209106;-0.0027008057;-0.009094238 +485;12;0.27980742;-0.05061649;-0.23116615;0.93043435 +487;0;-0.22921753;5.297348;8.350128 +487;1;-0.35034588;5.3633494;8.206574 +488;3;-0.03742981;-0.0020751953;-0.010314941 +488;2;-0.1540178;0.054685116;-0.14186287; +490;0;-0.24354553;5.3258667;8.364441 +490;12;0.2797296;-0.050597984;-0.23119223;0.9304523 +490;3;-0.038024902;-0.0014801025;-0.010925293 +492;0;-0.25309753;5.311615;8.364441 +492;1;-0.35053298;5.361832;8.207557 +492;3;-0.039260864;-8.544922E-4;-0.0115356445 +494;4;-12.257385;-7.0404053;-64.34631 +494;6;0.46465725;-0.5655675;0.030249523 +494;7;0.9008294;0.37833774;-0.21299532;0.0;-0.43342167;0.7547694;-0.49241096;0.0;-0.025535308 +495;0;-0.25309753;5.278351;8.378754 +495;3;-0.039260864;3.6621094E-4;-0.015197754 +495;12;0.27964488;-0.05057442;-0.23122154;0.9304718 +497;0;-0.22442627;5.297348;8.378754 +497;1;-0.35085195;5.360237;8.208586 +497;3;-0.040481567;3.6621094E-4;-0.017654419 +499;0;-0.25309753;5.297348;8.38353 +500;12;0.2795573;-0.05054464;-0.23125629;0.930491 +500;3;-0.04109192;3.6621094E-4;-0.017654419 +501;0;-0.2722168;5.287857;8.431213 +501;1;-0.35130307;5.3585935;8.209639 +502;3;-0.040481567;-2.593994E-4;-0.019470215 +504;5;999.5459 +504;4;-12.5564575;-7.3410034;-63.146973 +504;6;0.49401963;-0.5599283;0.032275576 +504;7;0.8881024;0.40175995;-0.22330034;0.0;-0.45883167;0.74598575;-0.48267877;0.0;-0.027342128 +504;0;-0.26742554;5.3496094;8.393066 +504;3;-0.043533325;9.613037E-4;-0.020095825 +505;12;0.27946836;-0.050510008;-0.23129997;0.93050873 +506;0;-0.23876953;5.2830963;8.397842 +506;1;-0.35181266;5.35688;8.210734 +507;2;-0.132831;0.026297092;-0.15982628; +507;3;-0.04475403;0.0015869141;-0.020095825 +509;0;-0.25787354;5.3258667;8.393066 +509;12;0.2793758;-0.050473012;-0.23134907;0.9305264 +509;3;-0.046585083;3.6621094E-4;-0.020095825 +511;0;-0.25309753;5.321106;8.397842 +511;1;-0.3523515;5.3550334;8.211917 +511;3;-0.046585083;-2.593994E-4;-0.020095825 +513;4;-12.70752;-7.4905396;-64.94751 +513;6;0.47933283;-0.56457424;0.030129278 +513;7;0.8943338;0.38961864;-0.21991938;0.0;-0.44667608;0.74960804;-0.48843455;0.0;-0.025449859 +514;0;-0.24354553;5.311615;8.38829 +514;3;-0.048416138;-2.593994E-4;-0.020690918 +515;12;0.27927607;-0.050432652;-0.23139858;0.9305462 +517;1;-0.3528476;5.353113;8.213147 +517;0;-0.25309753;5.302109;8.402588 +518;3;-0.050247192;-0.0027008057;-0.021316528 +520;0;-0.28652954;5.344864;8.397842 +521;12;0.27917168;-0.0503937;-0.23144983;0.9305669 +521;3;-0.04963684;-0.0033111572;-0.020690918 +521;1;-0.35325545;5.3510976;8.214443 +521;0;-0.26742554;5.3353577;8.397842 +521;3;-0.048416138;-0.0057525635;-0.020095825 +524;9;2AEC2AEBC4E1;-82;-2147483648 +526;4;-13.006592;-7.4905396;-64.497375 +526;6;0.49310333;-0.56576014;0.031833794 +526;7;0.88849825;0.39960322;-0.22558402;0.0;-0.45809275;0.74361247;-0.4870232;0.0;-0.026868958 +526;0;-0.30085754;5.344864;8.416901 +526;3;-0.047195435;-0.0045318604;-0.021911621 +527;12;0.27906045;-0.05035903;-0.23150456;0.9305884 +527;1;-0.35358202;5.3491654;8.215688 +527;2;-0.11550656;-0.002784729;-0.16744518; +527;0;-0.2960968;5.3163605;8.397842 +528;3;-0.04597473;-0.0045318604;-0.023132324 +528;0;-0.2722168;5.311615;8.393066 +529;3;-0.042922974;-0.0057525635;-0.023132324 +529;12;0.27895275;-0.050330296;-0.23156051;0.93060845 +531;0;-0.26264954;5.297348;8.38829 +531;1;-0.35395828;5.3473597;8.216846 +531;3;-0.041748047;-0.0057678223;-0.023803711 +533;4;-13.456726;-7.4905396;-65.69672 +533;6;0.49842215;-0.5630508;0.031301223 +533;7;0.88589334;0.40424547;-0.22754925;0.0;-0.4631335;0.74274945;-0.48356035;0.0;-0.02646495 +534;0;-0.2817688;5.3401184;8.431213 +534;3;-0.040527344;-0.0057678223;-0.025619507 +534;12;0.27885273;-0.05030209;-0.23162077;0.93062496 +535;0;-0.25787354;5.330597;8.445526 +536;1;-0.35434946;5.3456817;8.217921 +536;3;-0.03869629;-0.0069885254;-0.026855469 +538;0;-0.27697754;5.321106;8.450302 +539;12;0.27875984;-0.050276093;-0.23168454;0.9306383 +539;3;-0.035629272;-0.0051574707;-0.025619507 +540;0;-0.25787354;5.3401184;8.431213 +540;1;-0.35476726;5.3441567;8.218896 +540;3;-0.035629272;-0.0027160645;-0.025619507 +542;5;999.5459 +543;0;-0.26742554;5.3068542;8.474136 +543;3;-0.035629272;-0.0014953613;-0.026229858 +543;4;-12.107849;-7.4905396;-66.44745 +543;6;0.45959827;-0.5592676;0.031547382 +543;7;0.9032084;0.37600476;-0.2069664;0.0;-0.4283688;0.75968456;-0.48926428;0.0;-0.02673651 +544;12;0.27867573;-0.050251987;-0.23175146;0.93064815 +545;0;-0.2722168;5.330597;8.459839 +545;1;-0.35533297;5.342688;8.219826 +545;3;-0.033187866;3.5095215E-4;-0.026229858 +545;2;-0.1184746;-0.00625515;-0.19853592; +547;0;-0.28652954;5.3068542;8.421677 +554;12;0.2785973;-0.05021999;-0.23181485;0.93065757 +554;3;-0.033813477;0.0033874512;-0.025619507 +554;1;-0.35605803;5.3413043;8.220694 +554;0;-0.30085754;5.3258667;8.464584 +554;3;-0.032577515;0.0040130615;-0.025024414 +554;4;-12.857056;-7.0404053;-65.097046 +554;6;0.4899666;-0.56132513;0.035528142 +554;7;0.89068973;0.39838362;-0.21900272;0.0;-0.45361602;0.7469526;-0.4861011;0.0;-0.030070039 +554;0;-0.2817688;5.321106;8.421677 +554;3;-0.032577515;0.005844116;-0.023803711 +554;12;0.27852583;-0.050180253;-0.23187536;0.930666 +554;1;-0.3568623;5.339963;8.22153 +554;0;-0.2722168;5.330597;8.44075 +555;3;-0.033813477;0.0070648193;-0.022583008 +557;0;-0.27697754;5.311615;8.445526 +557;12;0.27845788;-0.05013534;-0.2319303;0.9306751 +557;3;-0.033187866;0.0070648193;-0.021362305 +559;0;-0.27697754;5.278351;8.421677 +559;1;-0.3576935;5.3385754;8.222395 +560;3;-0.031967163;0.005844116;-0.020736694 +561;4;-13.157654;-8.390808;-64.34631 +561;6;0.5177742;-0.5596191;0.032876793 +561;7;0.8770902;0.4194468;-0.23404522;0.0;-0.47951728;0.7363752;-0.47729954;0.0;-0.027856665 +562;0;-0.2960968;5.264099;8.483673 +562;3;-0.032577515;0.0052337646;-0.021362305 +562;12;0.27838793;-0.050086282;-0.23197883;0.9306865 +564;0;-0.3056488;5.2830963;8.478897 +564;1;-0.358439;5.33724;8.223229 +564;3;-0.033187866;0.005844116;-0.021957397 +564;2;-0.103096575;0.007936001;-0.20832253; +566;0;-0.28652954;5.264099;8.483673 +566;12;0.2783202;-0.05004218;-0.23202592;0.9306975 +567;3;-0.033187866;0.0052337646;-0.020141602 +569;0;-0.3152008;5.2450867;8.478897 +569;3;-0.033813477;0.007659912;-0.018920898 +569;1;-0.3591889;5.3358583;8.224093 +571;4;-12.406921;-7.1914673;-66.44745 +571;6;0.480009;-0.5536784;0.037157632 +571;7;0.895399;0.3927943;-0.20969823;0.0;-0.4441421;0.7544708;-0.4832302;0.0;-0.031598862 +571;0;-0.3199768;5.2688446;8.502762 +571;3;-0.033187866;0.0070648193;-0.019515991 +572;12;0.27824977;-0.049997058;-0.23207338;0.930709 +573;13;122.331985 +573;0;-0.27697754;5.287857;8.478897 +574;1;-0.3599584;5.334477;8.224956 +574;3;-0.033187866;0.0070648193;-0.020141602 +576;0;-0.30085754;5.2498474;8.497986 +576;12;0.27817994;-0.049949475;-0.2321153;0.9307221 +576;3;-0.033813477;0.0070648193;-0.017700195 +578;0;-0.2960968;5.287857;8.512299 +578;1;-0.36070803;5.333093;8.22582 +578;3;-0.032577515;0.006439209;-0.018295288 +580;4;-13.607788;-7.3410034;-65.54718 +581;6;0.51486045;-0.55559254;0.03477057 +581;7;0.8788643;0.4183486;-0.22930805;0.0;-0.47615695;0.7394488;-0.47590998;0.0;-0.029534709 +581;9;52ADB5BC186F;-81;-2147483648 +582;0;-0.26742554;5.264099;8.54567 +582;3;-0.033187866;0.005844116;-0.016464233 +582;12;0.27810976;-0.049902804;-0.23215672;0.93073523 +583;5;999.54926 +583;0;-0.2960968;5.240341;8.526611 +583;1;-0.361379;5.3317323;8.226672 +583;2;-0.098311394;0.041689873;-0.26101112; +583;3;-0.033813477;0.005844116;-0.017074585 +585;0;-0.27697754;5.264099;8.521835 +585;12;0.2780401;-0.049859475;-0.23219524;0.93074864 +586;3;-0.033187866;0.0046081543;-0.016464233 +587;0;-0.3104248;5.2260895;8.559982 +588;1;-0.36199966;5.3303466;8.227544 +588;3;-0.03440857;0.0046081543;-0.017700195 +590;4;-12.107849;-6.1401367;-64.94751 +590;6;0.47169787;-0.5478309;0.03624877 +590;7;0.89878994;0.38790092;-0.20422919;0.0;-0.43728662;0.7604354;-0.4801234;0.0;-0.030937213 +590;0;-0.2960968;5.211838;8.579071 +590;3;-0.035629272;0.0040130615;-0.017700195 +591;12;0.2779681;-0.049818058;-0.23223317;0.930763 +592;0;-0.2960968;5.2260895;8.521835 +592;1;-0.36260808;5.3288946;8.228457 +593;3;-0.036254883;0.0015716553;-0.017700195 +595;0;-0.3104248;5.2260895;8.536133 +595;12;0.2778925;-0.049777266;-0.23227394;0.9307775 +595;3;-0.035629272;3.5095215E-4;-0.017074585 +599;0;-0.2960968;5.240341;8.583832 +599;1;-0.3630773;5.327408;8.229399 +599;3;-0.03503418;-0.002090454;-0.017700195 +599;4;-12.857056;-7.6400757;-65.84625 +600;6;0.5023495;-0.5478325;0.03448104 +600;7;0.88457805;0.41102323;-0.2204122;0.0;-0.46546274;0.7481895;-0.47281805;0.0;-0.029429097 +600;0;-0.3152008;5.221344;8.540909 +600;3;-0.033187866;-0.0039367676;-0.020736694 +600;12;0.27781287;-0.049743608;-0.2323164;0.93079257 +602;0;-0.3056488;5.211838;8.574295 +602;1;-0.3634369;5.325987;8.230303 +603;3;-0.031967163;-0.004547119;-0.020141602 +603;2;-0.09441301;0.07109976;-0.30637264; +604;0;-0.3152008;5.211838;8.569519 +605;12;0.2777351;-0.049718544;-0.23236538;0.9308049 +605;3;-0.032577515;-0.006378174;-0.020141602 +607;1;-0.36372402;5.3246384;8.231163 +607;0;-0.3104248;5.2498474;8.574295 +607;3;-0.029525757;-0.0082092285;-0.020736694 +609;4;-12.5564575;-5.9906006;-64.64691 +609;6;0.48322675;-0.54910654;0.036188316 +609;7;0.8936945;0.3963329;-0.2103103;0.0;-0.4476134;0.75532395;-0.47867328;0.0;-0.030861577 +610;0;-0.32476807;5.2450867;8.540909 +610;3;-0.02708435;-0.010040283;-0.020736694 +610;12;0.27766052;-0.04969935;-0.2324178;0.9308151 +612;0;-0.2960968;5.2260895;8.569519 +612;1;-0.3638816;5.3234468;8.231927 +612;3;-0.02281189;-0.010040283;-0.021957397 +614;0;-0.2817688;5.2070923;8.593384 +615;12;0.27759242;-0.04969031;-0.23247345;0.9308219 +615;3;-0.019744873;-0.010650635;-0.021362305 +617;0;-0.30085754;5.2070923;8.540909 +617;1;-0.3640108;5.3225255;8.232516 +617;3;-0.014862061;-0.011871338;-0.021362305 +623;4;-12.70752;-8.540344;-65.24658 +623;6;0.516568;-0.54722023;0.03521091 +623;7;0.87802714;0.4217769;-0.22621365;0.0;-0.47766578;0.7425471;-0.46953094;0.0;-0.030062998 +623;12;0.27753955;-0.04968716;-0.23253118;0.93082345 +623;2;-0.08970383;0.07600498;-0.3163538; +623;1;-0.36407983;5.321881;8.232929 +623;0;-0.3152008;5.211838;8.540909 +623;3;-0.013641357;-0.011260986;-0.020736694 +623;5;999.54926 +624;0;-0.3056488;5.197586;8.588608 +624;12;0.2775013;-0.04969106;-0.23258753;0.9308205 +624;3;-0.009994507;-0.010040283;-0.021957397 +624;0;-0.2960968;5.211838;8.598129 +625;3;-0.0063323975;-0.007598877;-0.0231781 +626;0;-0.3104248;5.1928253;8.540909 +627;1;-0.3642941;5.3214746;8.233184 +627;3;-0.0026550293;-0.0057678223;-0.021362305 +629;9;2AEC2AEBC4E1;-79;-2147483648 +630;4;-13.456726;-6.890869;-64.94751 +630;6;0.5207466;-0.54598415;0.03632965 +630;7;0.87625915;0.42519563;-0.22666837;0.0;-0.4808392;0.7413355;-0.46820432;0.0;-0.031041095 +631;12;0.27747867;-0.049691014;-0.2326448;0.93081295 +631;0;-0.34864807;5.2260895;8.54567 +631;3;-2.1362305E-4;-0.0051574707;-0.021362305 +631;1;-0.36461368;5.3213396;8.233256 +631;0;-0.30085754;5.221344;8.555222 +632;3;0.0034484863;-0.0027160645;-0.019515991 +633;0;-0.2817688;5.2070923;8.564758 +634;12;0.27747262;-0.04968838;-0.23269622;0.93080205 +634;3;0.006500244;-0.002090454;-0.019515991 +636;0;-0.30085754;5.2165833;8.550446 +636;1;-0.3650028;5.321458;8.233163 +636;3;0.009552002;-2.746582E-4;-0.020736694 +639;4;-11.207581;-7.6400757;-64.64691 +639;6;0.464285;-0.54753417;0.035171673 +639;7;0.9017861;0.3823225;-0.2015226;0.0;-0.43113855;0.7634281;-0.48093367;0.0;-0.030023765 +639;12;0.2774827;-0.0496838;-0.23274101;0.9307882 +640;0;-0.27697754;5.2450867;8.517059 +640;3;0.011398315;-2.746582E-4;-0.020736694 +641;0;-0.30085754;5.240341;8.555222 +641;1;-0.365501;5.321795;8.232923 +641;2;-0.095330775;0.07546282;-0.30512524; +642;3;0.01322937;0.0015716553;-0.021362305 +643;0;-0.3438568;5.211838;8.540909 +643;12;0.277506;-0.04967645;-0.23278593;0.93077034 +644;3;0.01322937;0.0033874512;-0.021362305 +646;0;-0.36297607;5.2498474;8.507523 +646;1;-0.36614332;5.3222427;8.232605 +646;3;0.015060425;0.0040130615;-0.022583008 +649;4;-11.657715;-7.1914673;-64.94751 +649;6;0.4802768;-0.55247957;0.04263945 +649;7;0.89639664;0.39328733;-0.20444585;0.0;-0.44176513;0.7549242;-0.4846989;0.0;-0.036284804 +649;0;-0.32476807;5.2498474;8.512299 +649;3;0.013839722;0.0027923584;-0.023803711 +649;12;0.27753788;-0.04966385;-0.23283067;0.9307503 +650;1;-0.36685607;5.322737;8.232254 +650;0;-0.29130554;5.264099;8.526611 +650;3;0.014450073;0.0033874512;-0.024398804 +655;0;-0.34864807;5.2355957;8.517059 +656;12;0.27757287;-0.04964895;-0.23287845;0.93072873 +656;3;0.01322937;0.0027923584;-0.026229858 +656;0;-0.3438568;5.264099;8.474136 +656;1;-0.3676168;5.3232026;8.231918 +656;3;0.011993408;9.460449E-4;-0.026855469 +658;4;-13.157654;-7.6400757;-66.29639 +658;6;0.5122376;-0.55549043;0.040554963 +659;7;0.88141286;0.41643402;-0.22292183;0.0;-0.47108895;0.74059033;-0.4791672;0.0;-0.03444775 +659;0;-0.3438568;5.254593;8.483673 +659;3;0.009552002;-0.0014953613;-0.027450562 +659;12;0.27760687;-0.049632847;-0.23293126;0.93070626 +660;0;-0.36775208;5.2688446;8.497986 +660;3;0.007736206;-0.004547119;-0.028671265 +660;5;999.54926 +660;1;-0.36829507;5.3235464;8.231667 +660;2;-0.05930853;0.047624588;-0.2605381; +662;0;-0.39163208;5.2736053;8.488449 +662;12;0.27763247;-0.049620952;-0.23299088;0.9306843 +662;3;0.0046691895;-0.0057678223;-0.028671265 +664;0;-0.39163208;5.2498474;8.517059 +664;1;-0.368826;5.323705;8.23154 +665;3;3.9672852E-4;-0.009429932;-0.03111267 +667;4;-12.857056;-7.6400757;-65.097046 +667;6;0.52588886;-0.55191374;0.04594971 +667;7;0.8760548;0.42744905;-0.22319335;0.0;-0.48062265;0.73646337;-0.47605014;0.0;-0.039113455 +667;0;-0.39163208;5.2450867;8.497986 +667;3;-8.239746E-4;-0.012481689;-0.03173828 +668;12;0.27764508;-0.04961621;-0.23305772;0.93066406 +669;0;-0.40119934;5.2498474;8.46936 +669;1;-0.36920023;5.323606;8.231587 +670;3;-0.0051116943;-0.015533447;-0.03173828 +672;0;-0.39640808;5.2688446;8.478897 +672;12;0.27764076;-0.04961896;-0.23313534;0.93064576 +672;3;-0.008148193;-0.020431519;-0.030517578 +674;0;-0.40119934;5.2593536;8.46936 +674;1;-0.3692897;5.323256;8.231809 +674;3;-0.0093688965;-0.02470398;-0.03173828 +678;12;0.2776184;-0.04963411;-0.23321769;0.930631 +679;4;-12.5564575;-5.9906006;-64.34631 +679;6;0.50082487;-0.55520546;0.047335293 +679;7;0.88818014;0.40802708;-0.2113054;0.0;-0.45773274;0.7454265;-0.48458248;0.0;-0.040210143 +679;0;-0.38685608;5.2926025;8.445526 +679;3;-0.011810303;-0.029586792;-0.032958984 +680;0;-0.37252808;5.3258667;8.445526 +680;1;-0.369045;5.3227587;8.2321415 +680;3;-0.012435913;-0.033859253;-0.03540039 +680;2;-0.009271324;0.026137352;-0.22912979; +681;0;-0.41073608;5.2830963;8.488449 +681;12;0.2775824;-0.04966672;-0.23330928;0.93061703 +682;3;-0.012435913;-0.03692627;-0.032958984 +683;0;-0.41552734;5.287857;8.478897 +684;1;-0.36852866;5.322178;8.232541 +684;3;-0.011810303;-0.039367676;-0.033554077 +686;4;-12.857056;-6.590271;-64.64691 +686;6;0.51605767;-0.5570889;0.048968066 +686;7;0.88149935;0.41884363;-0.21801166;0.0;-0.470354;0.73826003;-0.483466;0.0;-0.041547377 +686;0;-0.42507935;5.2926025;8.502762 +686;3;-0.012435913;-0.039978027;-0.03540039 +687;12;0.2775377;-0.04971512;-0.23341076;0.9306024 +688;0;-0.40596008;5.2736053;8.502762 +688;1;-0.3678513;5.321605;8.232941 +689;3;-0.011810303;-0.039978027;-0.036010742 +691;0;-0.39640808;5.297348;8.512299 +691;12;0.2774912;-0.04977318;-0.23351568;0.9305868 +692;3;-0.012435913;-0.04058838;-0.03540039 +693;0;-0.42507935;5.2736053;8.526611 +693;1;-0.36718088;5.32103;8.233342 +693;3;-0.009994507;-0.04058838;-0.036010742 +696;0;-0.41552734;5.311615;8.512299 +697;3;-0.0069274902;-0.03692627;-0.03845215 +697;4;-13.157654;-6.2911987;-64.34631 +697;6;0.52177376;-0.55734056;0.04877622 +697;7;0.87875915;0.42299038;-0.22104646;0.0;-0.47546846;0.73573846;-0.48230565;0.0;-0.04137825 +697;12;0.27744454;-0.049831584;-0.23362379;0.9305705 +697;5;999.54926 +698;0;-0.4202881;5.3163605;8.502762 +698;1;-0.3666108;5.320603;8.2336445 +699;2;0.015914828;0.002682209;-0.25449944; +699;3;-0.0051116943;-0.035705566;-0.03845215 +701;0;-0.38208008;5.3163605;8.502762 +701;12;0.27740732;-0.04988788;-0.23373376;0.93055093 +701;3;-8.239746E-4;-0.03263855;-0.03845215 +703;0;-0.40596008;5.311615;8.497986 +703;1;-0.36624652;5.3203897;8.233798 +703;3;0.0034484863;-0.02897644;-0.037841797 +705;4;-13.456726;-6.440735;-65.69672 +705;6;0.52002466;-0.55811876;0.04773504 +705;7;0.87937534;0.42149812;-0.22144593;0.0;-0.47440556;0.7361197;-0.48277014;0.0;-0.040476006 +705;0;-0.40119934;5.278351;8.512299 +706;3;0.0071105957;-0.02470398;-0.037231445 +706;12;0.27738485;-0.049936153;-0.23384279;0.9305276 +707;0;-0.4298401;5.3258667;8.474136 +708;1;-0.36615324;5.3205028;8.233729 +708;3;0.008956909;-0.019821167;-0.036010742 +710;0;-0.4202881;5.3258667;8.517059 +710;12;0.2773851;-0.049973372;-0.23394458;0.9305 +710;3;0.012619019;-0.013702393;-0.03479004 +712;0;-0.4202881;5.321106;8.512299 +713;1;-0.36640438;5.320838;8.233501 +713;3;0.016281128;-0.0082092285;-0.033554077 +719;4;-13.006592;-5.8410645;-64.497375 +719;6;0.5113096;-0.5581299;0.049334157 +719;7;0.88382286;0.41506404;-0.21582179;0.0;-0.4659478;0.7397599;-0.48543563;0.0;-0.041830573 +719;0;-0.46806335;5.3163605;8.502762 +719;3;0.019943237;-0.003326416;-0.032333374 +719;12;0.2774029;-0.049992166;-0.23403369;0.93047124 +720;0;-0.45851135;5.3163605;8.483673 +720;1;-0.36703676;5.321466;8.2330675 +720;2;0.024510086;-0.018352032;-0.25212955; +720;3;0.022994995;9.460449E-4;-0.030517578 +720;12;0.27744308;-0.049992017;-0.23410918;0.9304403 +720;0;-0.46328735;5.3163605;8.46936 +721;3;0.026657104;0.0046081543;-0.028671265 +722;1;-0.3679223;5.3223705;8.232443 +723;0;-0.47283936;5.3496094;8.46936 +723;3;0.029724121;0.007659912;-0.026855469 +725;4;-12.70752;-6.890869;-65.24658 +725;6;0.51950705;-0.5626595;0.055771507 +725;7;0.88147634;0.41991895;-0.21602641;0.0;-0.4698684;0.7342428;-0.4900115;0.0;-0.047149293 +725;0;-0.48718262;5.3401184;8.478897 +725;3;0.031555176;0.008285522;-0.023803711 +725;12;0.27750295;-0.04997867;-0.23417075;0.93040764 +727;1;-0.36890727;5.323511;8.231662 +728;0;-0.47763062;5.35437;8.474136 +728;3;0.035217285;0.010101318;-0.022583008 +730;0;-0.48239136;5.3496094;8.46936 +730;12;0.27757823;-0.049959842;-0.23421866;0.93037415 +730;3;0.035827637;0.013168335;-0.020141602 +732;0;-0.45373535;5.3638763;8.431213 +732;1;-0.3699323;5.324856;8.230745 +732;3;0.03765869;0.01499939;-0.018920898 +734;4;-13.607788;-6.590271;-63.89618 +735;6;0.5421595;-0.5659529;0.053764276 +735;7;0.87022716;0.43553331;-0.23025085;0.0;-0.4905581;0.7230342;-0.48638904;0.0;-0.045359384 +735;0;-0.47763062;5.3591156;8.431213 +735;3;0.038879395;0.015609741;-0.014633179 +735;5;999.54926 +735;12;0.27766627;-0.049938448;-0.23425461;0.93034 +737;9;2AEC2AEBC4E1;-76;-2147483648 +739;1;-0.37098393;5.3263235;8.229748 +739;0;-0.44895935;5.3971252;8.397842 +739;3;0.039489746;0.015609741;-0.016464233 +739;2;0.06781101;-0.05323124;-0.20777607; +739;0;-0.47763062;5.3733673;8.416901 +741;3;0.039489746;0.01499939;-0.015853882 +741;12;0.27776223;-0.049913604;-0.23427755;0.9303069 +741;0;-0.5015106;5.378128;8.397842 +742;1;-0.37202647;5.3278403;8.228719 +742;3;0.0413208;0.015609741;-0.014022827 +744;4;-14.2074585;-7.0404053;-63.89618 +744;6;0.5716575;-0.56880146;0.05964814 +744;7;0.85688144;0.45584053;-0.24075632;0.0;-0.51306087;0.7085867;-0.48443103;0.0;-0.050226573 +744;0;-0.48239136;5.3828583;8.38353 +745;3;0.038879395;0.011947632;-0.013412476 +745;12;0.27786094;-0.04988953;-0.2342991;0.93027323 +746;0;-0.46806335;5.378128;8.38829 +746;1;-0.37294304;5.329386;8.227676 +747;3;0.035827637;0.011947632;-0.01524353 +748;0;-0.47283936;5.3733673;8.369217 +749;12;0.27795985;-0.04987106;-0.23431604;0.93024045 +749;3;0.035217285;0.010726929;-0.014022827 +751;0;-0.5062866;5.3733673;8.378754 +751;1;-0.3737909;5.3307524;8.226753 +752;3;0.032165527;0.008880615;-0.012191772 +754;4;-12.257385;-7.0404053;-65.54718 +754;6;0.50992304;-0.56941324;0.060351674 +754;7;0.8870655;0.41109478;-0.21003768;0.0;-0.45884013;0.7350722;-0.49913365;0.0;-0.05079838 +754;0;-0.44895935;5.420868;8.402588 +754;3;0.029724121;0.008880615;-0.011581421 +754;12;0.2780474;-0.04985481;-0.2343372;0.9302098 +756;0;-0.47763062;5.3971252;8.354904 +756;1;-0.37446418;5.331946;8.225949 +756;2;0.07337302;-0.078458786;-0.14542007; +757;3;0.028503418;0.0070648193;-0.010360718 +759;0;-0.47283936;5.411377;8.35968 +759;12;0.27812332;-0.04984337;-0.23435439;0.9301834 +759;3;0.025436401;0.007659912;-0.008529663 +760;0;-0.46328735;5.4066315;8.38829 +761;3;0.022994995;0.0046081543;-0.009140015 +761;1;-0.37501705;5.3329883;8.225248 +763;4;-12.257385;-7.0404053;-65.54718 +763;6;0.49836496;-0.57183766;0.05517419 +763;7;0.8912938;0.4019456;-0.20984568;0.0;-0.45104882;0.73862433;-0.50098825;0.0;-0.046372876 +763;0;-0.47283936;5.3923798;8.378754 +763;3;0.019943237;0.0046081543;-0.00730896 +764;12;0.278189;-0.04983472;-0.23436758;0.9301609 +765;0;-0.42507935;5.4018707;8.354904 +765;1;-0.37542576;5.333814;8.224694 +766;3;0.015670776;0.0046081543;-0.006088257 +768;0;-0.44895935;5.3258667;8.369217 +768;12;0.27824038;-0.04983025;-0.2343805;0.9301425 +768;3;0.014450073;0.0027923584;-0.0054779053 +770;0;-0.46806335;5.378128;8.340591 +770;1;-0.3757383;5.3343844;8.22431 +770;3;0.01322937;3.5095215E-4;-0.0036315918 +772;4;-13.456726;-6.890869;-64.497375 +772;6;0.53670084;-0.5720049;0.056059923 +772;7;0.8735582;0.42991287;-0.22819076;0.0;-0.48443434;0.7225987;-0.4931274;0.0;-0.04711147 +773;0;-0.46328735;5.3828583;8.373978 +773;3;0.010772705;3.5095215E-4;-0.003036499 +773;5;999.5548 +774;12;0.27827695;-0.049825545;-0.23438944;0.9301295 +775;0;-0.4298401;5.387619;8.373978 +775;1;-0.37585318;5.334843;8.224007 +775;2;0.04816979;-0.07672119;-0.12828255; +775;3;0.008956909;3.5095215E-4;-0.0018157959 +777;0;-0.46806335;5.387619;8.364441 +778;12;0.2783045;-0.049828414;-0.23439543;0.93011963 +778;3;0.006500244;0.002166748;-5.950928E-4 +780;0;-0.40596008;5.344864;8.397842 +780;1;-0.37594822;5.335135;8.223813 +780;3;0.0046691895;0.002166748;-5.950928E-4 +782;4;-13.456726;-6.890869;-64.497375 +782;6;0.5278101;-0.566267;0.0483034 +783;7;0.8759508;0.42502886;-0.22816816;0.0;-0.48067644;0.72906363;-0.48725393;0.0;-0.040747847 +783;0;-0.43463135;5.321106;8.393066 +783;3;0.004058838;0.002166748;6.4086914E-4 +783;12;0.27832207;-0.049828462;-0.23439659;0.9301141 +784;0;-0.43463135;5.35437;8.407364 +784;1;-0.37604675;5.335286;8.22371 +785;3;0.0010070801;0.0040130615;0.0012512207 +787;0;-0.4298401;5.3353577;8.373978 +787;12;0.27833256;-0.049825277;-0.2343948;0.9301116 +787;3;0.0016174316;0.0052337646;0.003692627 +789;0;-0.41552734;5.3591156;8.416901 +789;3;3.9672852E-4;0.005844116;0.003692627 +789;1;-0.37617624;5.3353243;8.2236805 +794;12;0.2783371;-0.04981673;-0.23438625;0.93011284 +794;4;-13.006592;-7.4905396;-65.24658 +794;6;0.5200421;-0.56642365;0.049328167 +794;7;0.87989086;0.419311;-0.2235404;0.0;-0.47335064;0.7322703;-0.4896115;0.0;-0.041607488 +794;0;-0.41073608;5.3258667;8.407364 +794;3;-0.0014343262;0.008880615;0.00491333 +794;0;-0.43940735;5.3401184;8.38829 +794;1;-0.37636834;5.33529;8.223694 +794;2;0.022018552;-0.036414623;-0.15486431; +795;3;-0.0026550293;0.0113220215;0.0055236816 +796;0;-0.41073608;5.3163605;8.397842 +797;12;0.2783389;-0.04980209;-0.23437206;0.93011665 +797;3;-0.0020446777;0.013168335;0.0073547363 +799;0;-0.40596008;5.3353577;8.407364 +799;1;-0.37669286;5.3351855;8.223746 +799;3;-0.0014343262;0.01499939;0.009185791 +801;4;-13.006592;-7.4905396;-65.24658 +801;6;0.51935744;-0.56495005;0.04824878 +801;7;0.8799436;0.4192015;-0.22353834;0.0;-0.4733285;0.73324287;-0.48817512;0.0;-0.04073585 +801;0;-0.41073608;5.3163605;8.450302 +801;3;-0.0014343262;0.017440796;0.0073547363 +802;12;0.2783388;-0.049777128;-0.23435004;0.93012357 +804;0;-0.37728882;5.3258667;8.435989 +804;1;-0.3771232;5.3351154;8.223772 +804;3;-2.1362305E-4;0.021713257;0.008575439 +806;0;-0.38685608;5.3163605;8.41214 +807;12;0.27834266;-0.049745377;-0.23432109;0.9301314 +807;3;3.9672852E-4;0.025985718;0.011627197 +808;0;-0.39640808;5.3068542;8.416901 +808;1;-0.37780705;5.3351097;8.223744 +809;3;0.0034484863;0.027832031;0.011016846 +810;4;-13.456726;-5.5404663;-65.69672 +811;6;0.50442743;-0.5620448;0.047061905 +811;7;0.88659894;0.40895796;-0.21609205;0.0;-0.4608229;0.74077827;-0.48876375;0.0;-0.039807543 +811;0;-0.36297607;5.3163605;8.421677 +811;3;0.0034484863;0.029052734;0.012237549 +812;12;0.2783539;-0.04969872;-0.23428278;0.9301402 +812;5;999.5548 +813;0;-0.37252808;5.2498474;8.402588 +813;1;-0.37862593;5.335234;8.223626 +813;2;-0.019634455;-7.4386597E-4;-0.17946339; +814;3;0.004058838;0.03086853;0.012237549 +815;0;-0.40596008;5.2593536;8.416901 +816;12;0.2783745;-0.04964447;-0.23423769;0.9301483 +816;3;0.0058898926;0.030273438;0.012237549 +818;0;-0.37728882;5.2830963;8.426437 +818;1;-0.3795197;5.3354163;8.223467 +819;3;0.006500244;0.032714844;0.011016846 +820;4;-13.456726;-5.5404663;-65.69672 +820;6;0.5023087;-0.5595618;0.044744533 +820;7;0.8870273;0.40802336;-0.21610095;0.0;-0.46015835;0.74280053;-0.48631456;0.0;-0.037907794 +820;0;-0.39640808;5.287857;8.445526 +821;3;0.008331299;0.032714844;0.011627197 +821;12;0.27839968;-0.049586803;-0.23418956;0.9301559 +823;0;-0.37728882;5.240341;8.402588 +823;1;-0.38051957;5.3356905;8.223243 +823;3;0.009552002;0.032714844;0.0128479 +825;0;-0.37252808;5.2736053;8.435989 +825;12;0.2784314;-0.049525246;-0.23414178;0.9301617 +826;3;0.011398315;0.032104492;0.011016846 +827;0;-0.37252808;5.2830963;8.431213 +828;1;-0.38148698;5.3360887;8.22294 +828;3;0.014450073;0.030273438;0.011627197 +831;4;-12.70752;-6.1401367;-66.44745 +831;6;0.48409614;-0.5593187;0.044155676 +831;7;0.8951339;0.39448813;-0.20763992;0.0;-0.44422445;0.75022227;-0.4897257;0.0;-0.037414934 +831;12;0.2784699;-0.0494669;-0.2340924;0.9301658 +832;0;-0.3295288;5.2830963;8.407364 +833;3;0.015670776;0.029052734;0.011627197 +833;1;-0.38234332;5.3366685;8.222524 +834;0;-0.3343048;5.2688446;8.407364 +834;3;0.015670776;0.03086853;0.010406494 +836;2;-0.043085784;0.038842678;-0.18422699; +836;0;-0.3534088;5.254593;8.407364 +836;12;0.27851686;-0.04941708;-0.2340449;0.93016624 +836;3;0.018112183;0.03086853;0.009185791 +837;1;-0.38329962;5.337313;8.22206 +838;0;-0.3534088;5.264099;8.402588 +838;3;0.018722534;0.030273438;0.009796143 +844;12;0.27856886;-0.049364254;-0.23400047;0.93016475 +844;1;-0.38418838;5.338031;8.221554 +847;12;0.27862406;-0.049315795;-0.23395523;0.9301621 +847;9;2AEC2AEBC4E1;-75;-2147483648 +849;4;-11.506653;-7.6400757;-65.54718 +850;6;0.47059175;-0.55926925;0.042034745 +850;7;0.900622;0.38433304;-0.20289934;0.0;-0.43314114;0.75550437;-0.49153018;0.0;-0.035619967 +850;0;-0.3534088;5.2450867;8.38353 +850;3;0.018722534;0.029052734;0.011016846 +850;0;-0.3295288;5.2498474;8.393066 +850;3;0.018112183;0.029052734;0.009185791 +850;0;-0.3390808;5.2355957;8.364441 +850;3;0.020553589;0.028427124;0.008575439 +851;1;-0.38508508;5.338776;8.221027 +851;0;-0.3343048;5.2736053;8.421677 +851;3;0.019332886;0.028427124;0.008575439 +851;4;-11.657715;-7.1914673;-64.497375 +851;6;0.4718186;-0.5591036;0.039674923 +851;7;0.8996046;0.38529962;-0.2055619;0.0;-0.4354089;0.7551106;-0.49012977;0.0;-0.03362484 +851;0;-0.3056488;5.264099;8.38829 +851;12;0.27868074;-0.04926866;-0.23391366;0.9301582 +851;3;0.018722534;0.02720642;0.009796143 +851;5;999.5548 +852;1;-0.38593087;5.3395104;8.2205105 +852;0;-0.3295288;5.2450867;8.373978 +853;3;0.018112183;0.026611328;0.009796143 +853;2;-0.08015373;0.060219765;-0.15652943; +855;12;0.2787361;-0.04922347;-0.23387204;0.9301543 +855;0;-0.3343048;5.2688446;8.393066 +855;3;0.018112183;0.02720642;0.009185791 +857;1;-0.3867302;5.340206;8.220022 +857;0;-0.3199768;5.264099;8.35968 +857;3;0.016281128;0.025985718;0.008575439 +860;4;-12.107849;-8.09021;-65.24658 +860;6;0.48597252;-0.56164265;0.038257528 +860;7;0.8930884;0.39531812;-0.2147482;0.0;-0.4487151;0.74838835;-0.48843598;0.0;-0.03237256 +861;0;-0.3295288;5.240341;8.373978 +861;3;0.01689148;0.025985718;0.009185791 +861;12;0.2787886;-0.049180392;-0.2338307;0.9301514 +862;1;-0.38750756;5.3408365;8.219575 +862;0;-0.3199768;5.254593;8.38353 +862;3;0.015670776;0.025375366;0.0073547363 +869;12;0.2788371;-0.04913817;-0.23379149;0.93014884 +869;0;-0.32476807;5.278351;8.402588 +869;3;0.01322937;0.026611328;0.0073547363 +869;0;-0.32476807;5.2450867;8.369217 +869;3;0.01322937;0.024765015;0.007965088 +870;1;-0.38832414;5.3413815;8.219183 +870;4;-12.107849;-6.890869;-64.94751 +870;6;0.4759615;-0.5594908;0.038785614 +870;7;0.89761394;0.38833046;-0.2085393;0.0;-0.43955564;0.75332516;-0.48917472;0.0;-0.032863554 +870;0;-0.3199768;5.264099;8.321533 +870;3;0.011398315;0.024765015;0.0067443848 +870;12;0.2788813;-0.049093742;-0.2337559;0.93014693 +870;9;52ADB5BC186F;-95;-2147483648 +872;0;-0.32476807;5.2260895;8.354904 +872;1;-0.38909099;5.3418436;8.218845 +872;3;0.008956909;0.024154663;0.0073547363 +873;2;-0.0959017;0.061478615;-0.13621998; +873;12;0.27892;-0.04905085;-0.2337214;0.9301463 +874;0;-0.32476807;5.287857;8.354904 +874;3;0.008331299;0.024154663;0.0067443848 +875;1;-0.3898415;5.3421693;8.218598 +876;0;-0.32476807;5.302109;8.373978 +876;3;0.0071105957;0.023544312;0.0073547363 +878;4;-12.5564575;-7.0404053;-65.84625 +878;6;0.48046312;-0.5641095;0.038763583 +879;7;0.8956915;0.39058045;-0.21256424;0.0;-0.44346824;0.74938744;-0.49168488;0.0;-0.03274954 +879;0;-0.35820007;5.264099;8.378754 +881;12;0.2789504;-0.04900688;-0.23368846;0.93014777 +882;1;-0.3905794;5.3423896;8.21842 +883;12;0.27897468;-0.04896332;-0.23365772;0.9301504 +883;3;0.005279541;0.02293396;0.0055236816 +883;0;-0.3438568;5.278351;8.373978 +883;3;0.0022277832;0.02293396;0.0043029785 +883;0;-0.3152008;5.2736053;8.38353 +884;3;-2.1362305E-4;0.022323608;0.0043029785 +886;1;-0.3913413;5.3424034;8.218375 +888;0;-0.34864807;5.2926025;8.378754 +888;3;-0.0014343262;0.021713257;0.0024719238 +888;4;-11.506653;-7.3410034;-66.596985 +888;6;0.45647633;-0.5629905;0.041586976 +888;7;0.9066159;0.37275797;-0.19773465;0.0;-0.4204895;0.7590764;-0.49698237;0.0;-0.035158426 +888;0;-0.32476807;5.302109;8.38829 +888;3;-0.0026550293;0.021102905;0.0018615723 +892;5;999.5548 +893;0;-0.36297607;5.2830963;8.38829 +893;12;0.27898756;-0.048916772;-0.2336328;0.9301553 +893;1;-0.39211342;5.3422937;8.21841 +893;12;0.27899352;-0.048869446;-0.23361391;0.9301607 +893;2;-0.085852146;0.031766415;-0.1444912; +893;3;-0.005706787;0.01927185;6.4086914E-4 +893;0;-0.37252808;5.3496094;8.378754 +893;3;-0.005706787;0.019882202;-5.950928E-4 +894;0;-0.36775208;5.3258667;8.393066 +895;1;-0.39287502;5.342046;8.218534 +895;3;-0.008148193;0.018051147;-0.0011901855 +897;4;-12.857056;-5.9906006;-65.097046 +897;6;0.48948842;-0.56500745;0.043788165 +897;7;0.8927473;0.39710206;-0.21286653;0.0;-0.4490382;0.74540794;-0.49267787;0.0;-0.03697099 +897;0;-0.37728882;5.3068542;8.41214 +897;3;-0.01121521;0.016830444;-0.0018157959 +898;12;0.27899042;-0.04882263;-0.23360142;0.93016726 +899;0;-0.35820007;5.321106;8.393066 +899;1;-0.39359042;5.341632;8.218769 +900;3;-0.014862061;0.016830444;-0.0036315918 +903;12;0.2789775;-0.048777584;-0.2335942;0.93017536 +903;0;-0.35820007;5.3258667;8.416901 +903;3;-0.017929077;0.013763428;-0.0036315918 +904;0;-0.35820007;5.330597;8.426437 +904;1;-0.39427397;5.3409486;8.219181 +904;3;-0.020370483;0.0113220215;-0.0018157959 +906;4;-11.657715;-6.1401367;-66.44745 +906;6;0.44921497;-0.56364083;0.042483497 +906;7;0.90982914;0.36708546;-0.19354367;0.0;-0.41342714;0.7614503;-0.49927083;0.0;-0.03590116 +907;0;-0.37252808;5.344864;8.393066 +907;3;-0.022201538;0.010101318;-0.0018157959 +907;12;0.27894875;-0.04873204;-0.23359391;0.93018633 +909;0;-0.36775208;5.344864;8.41214 +909;1;-0.39473268;5.340082;8.219721 +909;2;-0.05982542;-0.016090393;-0.16888905; +909;3;-0.026473999;0.007659912;-0.0024108887 +911;0;-0.40596008;5.3496094;8.41214 +911;12;0.27890652;-0.04869495;-0.23359333;0.9302011 +912;3;-0.025863647;0.0070648193;-0.0011901855 +914;0;-0.38685608;5.344864;8.41214 +914;1;-0.39506716;5.339024;8.220392 +914;3;-0.02708435;0.0040130615;-5.950928E-4 +916;4;-12.5564575;-5.9906006;-65.54718 +916;6;0.4821467;-0.5655472;0.045955457 +916;7;0.89648104;0.3914848;-0.20751242;0.0;-0.44138122;0.7480471;-0.49558866;0.0;-0.03878633 +917;0;-0.41073608;5.344864;8.445526 +917;3;-0.027694702;0.0033874512;0.0018615723 +917;12;0.27885145;-0.04866238;-0.23359555;0.9302189 +918;0;-0.37728882;5.330597;8.431213 +919;1;-0.39519373;5.337916;8.221107 +919;3;-0.02708435;0.0027923584;0.003692627 +921;0;-0.39163208;5.35437;8.450302 +921;12;0.27879113;-0.048639152;-0.23359491;0.9302383 +921;3;-0.028305054;0.002166748;0.0030822754 +923;0;-0.38208008;5.2926025;8.44075 +923;1;-0.39519987;5.33679;8.221837 +923;3;-0.027694702;9.460449E-4;0.0043029785 +926;4;-13.157654;-6.2911987;-65.54718 +926;6;0.5053829;-0.55959713;0.045235246 +926;7;0.8857157;0.41029575;-0.21717477;0.0;-0.46264338;0.7415262;-0.48590112;0.0;-0.0383224 +926;0;-0.37252808;5.321106;8.459839 +927;12;0.27872825;-0.048620168;-0.23358896;0.93025964 +928;3;-0.025863647;-2.746582E-4;0.007965088 +928;5;999.55646 +928;0;-0.38685608;5.3163605;8.497986 +928;1;-0.3950493;5.335707;8.222548 +928;2;-0.03745705;-0.020962238;-0.20668983; +928;3;-0.025253296;3.5095215E-4;0.009185791 +931;0;-0.39163208;5.297348;8.49321 +931;12;0.27866596;-0.04860817;-0.23357834;0.9302816 +931;3;-0.024032593;0.0015716553;0.011016846 +933;1;-0.39482567;5.33471;8.223204 +933;0;-0.39163208;5.311615;8.49321 +934;3;-0.023422241;9.460449E-4;0.012237549 +935;4;-12.406921;-6.890869;-65.24658 +935;6;0.49705565;-0.55840635;0.04607856 +936;7;0.88969475;0.40440786;-0.21188994;0.0;-0.45488125;0.74547213;-0.48719004;0.0;-0.039065424 +936;0;-0.38208008;5.3163605;8.497986 +936;3;-0.020965576;0.0015716553;0.0128479 +937;12;0.27860838;-0.048598666;-0.23355813;0.9303043 +939;1;-0.39454907;5.333814;8.2238 +939;0;-0.39163208;5.297348;8.507523 +939;3;-0.01852417;0.0033874512;0.0140686035 +941;12;0.2785559;-0.048591226;-0.23353218;0.93032706 +941;0;-0.41073608;5.2736053;8.478897 +941;3;-0.015487671;0.0040130615;0.015289307 +943;1;-0.39431986;5.333124;8.224257 +943;0;-0.39640808;5.297348;8.483673 +943;3;-0.013641357;0.0040130615;0.015289307 +945;4;-12.857056;-7.940674;-65.54718 +945;6;0.5227729;-0.5576901;0.046692036 +945;7;0.8778269;0.42363295;-0.22350621;0.0;-0.47733796;0.7351553;-0.48134738;0.0;-0.03960286 +945;0;-0.38208008;5.3258667;8.474136 +945;3;-0.013046265;0.006439209;0.014694214 +946;12;0.27851647;-0.04858295;-0.23349912;0.93034756 +948;2;-0.03238654;0.0022015572;-0.2470541; +948;1;-0.3941389;5.3325896;8.224612 +948;0;-0.40119934;5.3258667;8.459839 +948;3;-0.0105896;0.008880615;0.0140686035 +950;9;2AEC2AEBC4E1;-75;-2147483648 +952;12;0.2784861;-0.0485736;-0.2334639;0.930366 +952;0;-0.37252808;5.3258667;8.517059 +952;3;-0.0093688965;0.010726929;0.013458252 +952;1;-0.39416552;5.332179;8.224877 +952;0;-0.38208008;5.3068542;8.483673 +952;3;-0.0038757324;0.012542725;0.0140686035 +954;4;-11.956787;-7.940674;-65.54718 +955;6;0.49360874;-0.55853015;0.045006696 +955;7;0.89103395;0.40180483;-0.21121435;0.0;-0.45233047;0.74680394;-0.4875254;0.0;-0.038154364 +955;0;-0.37252808;5.3258667;8.488449 +955;3;-0.0014343262;0.014389038;0.013458252 +956;12;0.2784658;-0.048555188;-0.2334279;0.930382 +957;0;-0.38685608;5.321106;8.464584 +957;1;-0.39433742;5.3320622;8.224945 +957;3;0.0016174316;0.01499939;0.012237549 +960;0;-0.37728882;5.3163605;8.450302 +960;12;0.27846417;-0.048532695;-0.23338863;0.9303935 +960;3;0.0022277832;0.016220093;0.0128479 +962;0;-0.39163208;5.3401184;8.46936 +962;1;-0.39462686;5.3321266;8.22489 +962;3;0.005279541;0.018051147;0.010406494 +965;4;-12.257385;-7.0404053;-64.64691 +965;6;0.49583042;-0.5620786;0.04620813 +965;7;0.89034724;0.4025658;-0.212656;0.0;-0.45360133;0.7442507;-0.49024147;0.0;-0.039085057 +965;0;-0.41552734;5.387619;8.459839 +965;3;0.007736206;0.018051147;0.011016846 +965;12;0.27847466;-0.048507005;-0.23335016;0.9304014 +966;5;999.55646 +967;1;-0.39507034;5.332376;8.224707 +967;2;-0.0357095;-0.025810242;-0.2351141; +968;0;-0.4298401;5.344864;8.459839 +968;3;0.009552002;0.019882202;0.009796143 +969;0;-0.37728882;5.344864;8.426437 +970;12;0.27849686;-0.04847718;-0.23331359;0.9304054 +970;3;0.01322937;0.020492554;0.009796143 +971;1;-0.3956086;5.332814;8.224397 +973;0;-0.38685608;5.344864;8.459839 +973;3;0.014450073;0.022323608;0.009185791 +974;4;-12.70752;-6.440735;-65.24658 +974;6;0.4950838;-0.56299746;0.045696706 +974;7;0.8905938;0.40177718;-0.21311429;0.0;-0.4531559;0.7441198;-0.49085158;0.0;-0.038630385 +974;0;-0.39640808;5.3638763;8.426437 +975;12;0.27853137;-0.04844494;-0.23327704;0.93040603 +975;3;0.016281128;0.022323608;0.008575439 +976;0;-0.38208008;5.368622;8.416901 +976;1;-0.39625674;5.3334146;8.223976 +977;3;0.016281128;0.021102905;0.008575439 +979;0;-0.39640808;5.35437;8.416901 +979;12;0.27857623;-0.04840965;-0.23324057;0.9304035 +980;3;0.017501831;0.021713257;0.0073547363 +981;0;-0.37252808;5.3828583;8.421677 +981;1;-0.3968906;5.3340735;8.223517 +981;3;0.019332886;0.021713257;0.0067443848 +983;4;-12.5564575;-6.590271;-66.29639 +983;6;0.47905132;-0.5682786;0.04420561 +983;7;0.8975281;0.38849133;-0.20860921;0.0;-0.4393815;0.74795365;-0.49750307;0.0;-0.037245624 +984;0;-0.38208008;5.378128;8.393066 +984;3;0.019332886;0.019882202;0.006134033 +985;12;0.27862436;-0.048376918;-0.23320653;0.9303993 +989;0;-0.36297607;5.3971252;8.378754 +989;1;-0.39753875;5.334841;8.222989 +989;2;-0.047156006;-0.056512356;-0.18024349; +989;3;0.019332886;0.01927185;0.0067443848 +989;0;-0.3438568;5.4066315;8.378754 +989;3;0.019332886;0.018661499;0.0067443848 +989;12;0.27867854;-0.048346195;-0.23317565;0.93039244 +990;0;-0.3534088;5.444641;8.364441 +991;1;-0.39809513;5.3356147;8.22246 +991;3;0.019332886;0.018661499;0.0055236816 +993;4;-12.5564575;-7.0404053;-64.64691 +993;6;0.48445642;-0.576619;0.04222622 +993;7;0.8948579;0.39042428;-0.21632881;0.0;-0.44494605;0.74184483;-0.50168645;0.0;-0.03538818 +993;0;-0.37728882;5.4351196;8.364441 +993;3;0.01689148;0.01499939;0.0043029785 +994;12;0.278732;-0.04831993;-0.23314548;0.9303854 +995;0;-0.39640808;5.454132;8.345367 +995;1;-0.39862606;5.3363423;8.221962 +996;3;0.016281128;0.013763428;0.0043029785 +998;0;-0.35820007;5.4493866;8.397842 +999;12;0.27878183;-0.048296362;-0.23312098;0.9303777 +999;3;0.016281128;0.013168335;0.006134033 +1000;0;-0.3534088;5.4351196;8.41214 +1000;1;-0.39900583;5.3369913;8.221522 +1000;3;0.011398315;0.013763428;0.006134033 +1002;4;-12.70752;-5.8410645;-66.44745 +1002;6;0.46574387;-0.5732299;0.04198707 +1002;7;0.90292376;0.3773026;-0.20584342;0.0;-0.42835164;0.75066704;-0.503005;0.0;-0.035265226 +1003;0;-0.3534088;5.4398804;8.373978 +1003;3;0.008331299;0.014389038;0.0067443848 +1004;12;0.27882525;-0.04827978;-0.23309824;0.9303714 +1004;5;999.55646 +1005;0;-0.3390808;5.420868;8.397842 +1005;1;-0.39937538;5.337389;8.221246 +1005;2;-0.0717417;-0.122841835;-0.14384842; +1005;3;0.006500244;0.01499939;0.008575439 +1007;0;-0.35820007;5.4303894;8.416901 +1008;3;0.0028381348;0.015609741;0.010406494 +1008;12;0.27885422;-0.04825908;-0.23307306;0.93037 +1011;0;-0.34864807;5.4351196;8.407364 +1011;3;-2.1362305E-4;0.017440796;0.009185791 +1011;1;-0.39971685;5.3375845;8.221103 +1012;4;-13.456726;-7.4905396;-64.94751 +1012;6;0.51347274;-0.57349896;0.04144562 +1012;7;0.88133866;0.41261604;-0.2301959;0.0;-0.47120142;0.73168355;-0.49255288;0.0;-0.034804672 +1012;0;-0.36297607;5.411377;8.435989 +1012;3;-0.0051116943;0.017440796;0.010406494 +1013;12;0.2788718;-0.048234668;-0.23304097;0.930374 +1018;0;-0.36297607;5.411377;8.416901 +1018;1;-0.40013814;5.3374853;8.221147 +1018;3;-0.008773804;0.021102905;0.010406494 +1018;0;-0.38208008;5.411377;8.402588 +1018;12;0.27887428;-0.048201326;-0.2330077;0.93038344 +1019;3;-0.0105896;0.022323608;0.011016846 +1020;0;-0.36775208;5.4018707;8.416901 +1020;3;-0.013046265;0.023544312;0.011627197 +1022;4;-12.70752;-7.4905396;-63.29651 +1022;6;0.5116819;-0.5701476;0.043664332 +1022;7;0.8826275;0.41219312;-0.22597699;0.0;-0.4686347;0.73400265;-0.49155015;0.0;-0.036745884 +1022;0;-0.37252808;5.3733673;8.416901 +1022;3;-0.017303467;0.023544312;0.0128479 +1023;1;-0.40070826;5.3371124;8.221361 +1023;12;0.27886292;-0.048155103;-0.23297033;0.9303986 +1024;1;-0.4013114;5.336513;8.22172 +1024;0;-0.38208008;5.3591156;8.431213 +1025;2;-0.065937966;-0.09218168;-0.18218136; +1025;3;-0.01852417;0.02293396;0.013458252 +1027;0;-0.3534088;5.3496094;8.445526 +1027;12;0.27883953;-0.048102643;-0.23292902;0.93041867 +1028;3;-0.020965576;0.022323608;0.0140686035 +1029;1;-0.4018347;5.335727;8.222205 +1029;0;-0.37252808;5.321106;8.431213 +1029;3;-0.021575928;0.022323608;0.014083862 +1031;4;-12.406921;-6.440735;-64.94751 +1031;6;0.48636043;-0.5625479;0.044155676 +1031;7;0.89418226;0.39538288;-0.21002509;0.0;-0.44614342;0.74780846;-0.49166927;0.0;-0.037339102 +1032;0;-0.36297607;5.311615;8.421677 +1032;3;-0.02279663;0.01927185;0.013473511 +1032;12;0.27880484;-0.048050575;-0.2328854;0.9304426 +1034;0;-0.37252808;5.311615;8.435989 +1034;1;-0.402287;5.3348417;8.222757 +1035;3;-0.02218628;0.018051147;0.014709473 +1037;12;0.2787634;-0.048000902;-0.23284344;0.9304681 +1038;0;-0.39640808;5.2830963;8.435989 +1038;3;-0.020355225;0.016220093;0.014083862 +1039;1;-0.40259016;5.333984;8.223299 +1040;0;-0.40119934;5.2830963;8.445526 +1041;3;-0.020950317;0.01499939;0.014709473 +1041;4;-11.506653;-7.6400757;-63.89618 +1041;6;0.49276745;-0.5584879;0.047468677 +1041;7;0.8919296;0.401187;-0.20859188;0.0;-0.4503801;0.74716145;-0.48878163;0.0;-0.040241044 +1041;0;-0.39163208;5.2736053;8.450302 +1041;3;-0.019729614;0.013168335;0.015304565 +1042;12;0.2787216;-0.047960043;-0.23280251;0.93049294 +1042;5;999.55646 +1044;0;-0.39640808;5.297348;8.426437 +1044;1;-0.40275624;5.3331656;8.223822 +1044;2;-0.05368045;0.004981041;-0.19866848; +1044;3;-0.015472412;0.0113220215;0.014709473 +1046;0;-0.37728882;5.3163605;8.431213 +1046;12;0.27868065;-0.047927216;-0.23276205;0.930517 +1047;3;-0.013031006;0.008285522;0.013473511 +1048;0;-0.3390808;5.278351;8.435989 +1048;1;-0.4027647;5.332588;8.2241955 +1048;3;-0.011199951;0.006439209;0.012863159 +1050;4;-12.5564575;-7.0404053;-65.84625 +1050;6;0.4876644;-0.55873555;0.040172927 +1050;7;0.8926928;0.39730746;-0.21271165;0.0;-0.44937706;0.749083;-0.48675948;0.0;-0.03405451 +1051;0;-0.3438568;5.278351;8.431213 +1051;3;-0.007537842;0.0070648193;0.011642456 +1052;12;0.27865037;-0.04790734;-0.23272559;0.9305362 +1053;0;-0.35820007;5.2593536;8.49321 +1053;1;-0.40269718;5.3321896;8.224458 +1054;3;-0.0056915283;0.0070648193;0.011642456 +1057;0;-0.3390808;5.297348;8.478897 +1057;3;-0.0038604736;0.0070648193;0.010421753 +1057;9;2AEC2AEBC4E1;-76;-2147483648 +1059;12;0.278629;-0.047895566;-0.2326948;0.93055093 +1059;0;-0.34864807;5.2593536;8.474136 +1059;1;-0.40267;5.3319674;8.224603 +1060;3;-0.0014190674;0.009506226;0.010421753 +1061;4;-12.5564575;-5.9906006;-63.89618 +1061;6;0.4923951;-0.5550761;0.04111942 +1061;7;0.89069974;0.4017611;-0.21270165;0.0;-0.45324767;0.7488996;-0.48344177;0.0;-0.034935914 +1061;0;-0.32476807;5.264099;8.474136 +1061;12;0.27861795;-0.04788495;-0.23266582;0.93056214 +1062;3;0.0010223389;0.012542725;0.009811401 +1062;0;-0.3056488;5.2926025;8.445526 +1062;1;-0.40281266;5.3319283;8.224622 +1063;2;-0.092624664;0.027058125;-0.21943855; +1063;3;0.002243042;0.01499939;0.0110321045 +1065;0;-0.3343048;5.3068542;8.426437 +1065;12;0.27862027;-0.04786799;-0.23263569;0.9305698 +1065;3;0.007751465;0.017440796;0.007980347 +1067;0;-0.3152008;5.311615;8.44075 +1067;1;-0.4031784;5.332104;8.224489 +1068;3;0.010192871;0.01927185;0.006149292 +1069;4;-12.857056;-5.9906006;-64.34631 +1069;6;0.485479;-0.56135887;0.037325405 +1070;7;0.8931052;0.39501926;-0.21522766;0.0;-0.44873744;0.74871707;-0.48791155;0.0;-0.031589836 +1070;0;-0.3534088;5.2926025;8.41214 +1070;3;0.014465332;0.021102905;0.0055389404 +1070;12;0.2786373;-0.047841746;-0.23260291;0.93057424 +1072;0;-0.3104248;5.3068542;8.44075 +1072;1;-0.40379646;5.3325605;8.224164 +1072;3;0.018737793;0.022323608;0.0037078857 +1074;0;-0.2960968;5.311615;8.445526 +1075;12;0.27867308;-0.04780884;-0.23257466;0.9305723 +1075;3;0.0211792;0.024765015;0.0024871826 +1077;0;-0.2960968;5.3258667;8.421677 +1077;1;-0.40460306;5.3333135;8.223635 +1077;3;0.024841309;0.02720642;-5.79834E-4 +1079;4;-12.107849;-6.890869;-64.94751 +1079;6;0.46560523;-0.56362385;0.035144415 +1079;7;0.90142626;0.37952003;-0.20831524;0.0;-0.43191254;0.75533974;-0.4928623;0.0;-0.02970232 +1080;0;-0.2960968;5.330597;8.474136 +1080;3;0.026672363;0.029647827;-0.0030212402 +1080;12;0.27872825;-0.047771074;-0.23254935;0.93056405 +1081;5;999.5594 +1082;0;-0.3199768;5.330597;8.431213 +1082;1;-0.40573072;5.334286;8.222948 +1082;2;-0.12251446;-0.004292965;-0.1997509; +1082;3;0.02911377;0.029647827;-0.003616333 +1084;13;116.43599 +1089;0;-0.32476807;5.368622;8.426437 +1089;12;0.2788002;-0.047722064;-0.2325311;0.93054956 +1089;1;-0.4069753;5.335443;8.2221365 +1089;3;0.031570435;0.030273438;-0.0042419434 +1090;12;0.27888304;-0.04767069;-0.23251608;0.93053114 +1090;0;-0.3056488;5.321106;8.435989 +1090;3;0.02911377;0.0345459;-0.009124756 +1090;4;-13.456726;-6.890869;-65.69672 +1090;6;0.5007261;-0.5624365;0.03621569 +1090;7;0.885928;0.40611303;-0.22406237;0.0;-0.4628105;0.74210364;-0.48485953;0.0;-0.030630268 +1090;0;-0.3390808;5.330597;8.431213 +1091;3;0.028518677;0.0345459;-0.008514404 +1091;0;-0.2960968;5.35437;8.478897 +1091;1;-0.4085248;5.336525;8.221357 +1091;3;0.030960083;0.0345459;-0.007904053 +1094;0;-0.3104248;5.3496094;8.397842 +1094;12;0.2789658;-0.047605425;-0.2325089;0.93051136 +1094;3;0.026672363;0.03515625;-0.008514404 +1096;0;-0.3104248;5.3068542;8.41214 +1096;1;-0.4100679;5.33761;8.220575 +1096;3;0.024841309;0.033935547;-0.009735107 +1098;4;-13.006592;-6.890869;-65.24658 +1098;6;0.49277642;-0.5624927;0.036885265 +1099;7;0.8897272;0.40018654;-0.21962763;0.0;-0.4554255;0.7452822;-0.4869723;0.0;-0.031195216 +1099;0;-0.3343048;5.3163605;8.393066 +1099;3;0.023620605;0.033325195;-0.008514404 +1100;12;0.27904844;-0.0475395;-0.2325003;0.9304921 +1101;0;-0.32476807;5.3258667;8.393066 +1101;1;-0.41159284;5.3385134;8.2199135 +1101;2;-0.12548894;-0.019560337;-0.18736744; +1101;3;0.0211792;0.032104492;-0.007904053 +1103;0;-0.2960968;5.3163605;8.38829 +1103;12;0.27912048;-0.047473427;-0.23249502;0.9304753 +1103;3;0.0211792;0.029647827;-0.0066833496 +1105;0;-0.28652954;5.3353577;8.378754 +1106;1;-0.41294792;5.3393025;8.219333 +1106;3;0.018737793;0.027832031;-0.007904053 +1108;4;-11.956787;-6.590271;-64.34631 +1108;6;0.45736715;-0.5667553;0.034183834 +1108;7;0.904797;0.3725441;-0.20628427;0.0;-0.4248658;0.75693595;-0.496525;0.0;-0.028833492 +1108;0;-0.32476807;5.321106;8.373978 +1108;3;0.016296387;0.025985718;-0.0066833496 +1109;12;0.27918413;-0.047413148;-0.23248772;0.93046105 +1110;0;-0.32476807;5.311615;8.38353 +1111;3;0.0138549805;0.023544312;-0.007904053 +1111;1;-0.41415918;5.339945;8.218855 +1113;0;-0.3390808;5.3163605;8.393066 +1113;12;0.27923718;-0.04735916;-0.23248369;0.9304489 +1113;3;0.013244629;0.022323608;-0.009124756 +1115;0;-0.3152008;5.321106;8.350128 +1115;1;-0.41524413;5.3404293;8.218485 +1116;3;0.013244629;0.019882202;-0.008514404 +1118;4;-13.157654;-6.590271;-64.64691 +1118;6;0.49499753;-0.56703615;0.037730105 +1118;7;0.88896835;0.4006858;-0.22177957;0.0;-0.45686203;0.7422517;-0.4902444;0.0;-0.03181767 +1118;0;-0.3199768;5.3163605;8.350128 +1118;3;0.012008667;0.01927185;-0.010345459 +1119;12;0.27927965;-0.047311395;-0.23248538;0.93043816 +1119;5;999.5594 +1120;0;-0.3390808;5.3068542;8.35968 +1121;1;-0.4162215;5.3408775;8.218145 +1121;2;-0.13024;-0.0010409355;-0.1403284; +1121;3;0.011413574;0.017440796;-0.012176514 +1122;0;-0.28652954;5.2830963;8.345367 +1123;12;0.2793179;-0.047269996;-0.23249148;0.93042725 +1123;3;0.009567261;0.016220093;-0.012786865 +1125;9;52ADB5BC186F;-87;-2147483648 +1127;0;-0.2817688;5.2736053;8.350128 +1127;1;-0.41715148;5.3412275;8.21787 +1127;3;0.008346558;0.016220093;-0.014007568 +1127;4;-12.406921;-7.7911377;-65.24658 +1127;6;0.48072946;-0.56304574;0.03373145 +1127;7;0.89447767;0.39104292;-0.21678351;0.0;-0.4462021;0.74978745;-0.4885924;0.0;-0.028519029 +1127;0;-0.3056488;5.2688446;8.373978 +1128;3;0.008346558;0.016220093;-0.01461792 +1128;12;0.2793496;-0.047231752;-0.23250638;0.9304159 +1129;0;-0.2960968;5.2736053;8.354904 +1130;1;-0.418116;5.3414855;8.217653 +1131;3;0.007751465;0.017440796;-0.015838623 +1132;0;-0.3056488;5.240341;8.35968 +1132;12;0.27937642;-0.047192022;-0.2325262;0.93040496 +1132;3;0.0040740967;0.018051147;-0.015838623 +1135;0;-0.30085754;5.264099;8.350128 +1135;1;-0.41918078;5.34164;8.217499 +1135;3;0.0046844482;0.019882202;-0.01828003 +1137;4;-12.5564575;-7.0404053;-66.29639 +1137;6;0.47393295;-0.5621957;0.03601471 +1137;7;0.89796287;0.3861449;-0.21108012;0.0;-0.43901548;0.7528312;-0.49041873;0.0;-0.030464983 +1137;0;-0.3295288;5.264099;8.345367 +1137;3;0.0028533936;0.021102905;-0.017684937 +1138;12;0.27939907;-0.047146294;-0.23254873;0.9303948 +1139;0;-0.3104248;5.221344;8.373978 +1139;1;-0.4204075;5.341702;8.217396 +1140;2;-0.15066412;0.056913376;-0.12569809; +1140;3;0.0028533936;0.021713257;-0.017059326 +1141;0;-0.3295288;5.2165833;8.354904 +1142;12;0.27941763;-0.04709183;-0.23257436;0.93038553 +1142;3;0.002243042;0.025375366;-0.01890564 +1144;1;-0.42175558;5.341712;8.2173195 +1144;0;-0.3199768;5.230835;8.326294 +1144;3;0.0016326904;0.027832031;-0.01890564 +1146;4;-12.107849;-6.440735;-64.94751 +1146;6;0.46893945;-0.560587;0.038410775 +1146;7;0.90061754;0.38276792;-0.20585619;0.0;-0.4333939;0.7555141;-0.4912925;0.0;-0.032523748 +1147;0;-0.3199768;5.230835;8.340591 +1147;3;4.119873E-4;0.02720642;-0.020721436 +1147;12;0.27943572;-0.04703002;-0.23259805;0.9303774 +1149;0;-0.3104248;5.2165833;8.340591 +1149;1;-0.42330307;5.3416576;8.217277 +1149;3;-1.9836426E-4;0.029052734;-0.019500732 +1151;0;-0.3152008;5.2355957;8.350128 +1152;3;-0.0014190674;0.030273438;-0.022567749 +1152;12;0.27945256;-0.046957396;-0.23262331;0.9303697 +1154;0;-0.3199768;5.240341;8.335815 +1154;3;-0.004470825;0.030273438;-0.023162842 +1154;1;-0.42496485;5.341532;8.217272 +1156;4;-12.857056;-5.39093;-65.54718 +1156;6;0.47305658;-0.5608907;0.038366947 +1156;7;0.89882094;0.3858016;-0.20803368;0.0;-0.43711087;0.75378793;-0.4906504;0.0;-0.032480456 +1157;0;-0.3390808;5.2023315;8.350128 +1157;3;-0.0050964355;0.032104492;-0.023788452 +1157;12;0.27946666;-0.04687788;-0.23265013;0.9303627 +1158;5;999.5594 +1159;0;-0.3390808;5.211838;8.364441 +1159;1;-0.42675787;5.341234;8.217372 +1160;2;-0.13502738;0.094634056;-0.11452198; +1160;3;-0.0063171387;0.03149414;-0.022567749 +1161;0;-0.3534088;5.2260895;8.345367 +1161;12;0.2794729;-0.046790805;-0.23268193;0.9303573 +1161;3;-0.007537842;0.032104492;-0.022567749 +1163;0;-0.36297607;5.254593;8.397842 +1167;1;-0.42855766;5.3408594;8.217523 +1167;3;-0.010574341;0.032104492;-0.024383545 +1167;4;-12.5564575;-8.390808;-64.64691 +1167;6;0.5192312;-0.55868834;0.043195654 +1168;7;0.8787493;0.42076415;-0.22529352;0.0;-0.47587693;0.73619187;-0.4812094;0.0;-0.03661641 +1168;0;-0.36775208;5.2165833;8.378754 +1168;3;-0.011199951;0.032104492;-0.0262146 +1168;12;0.2794746;-0.046701472;-0.23271166;0.9303539 +1168;0;-0.35820007;5.240341;8.373978 +1168;1;-0.43044075;5.340319;8.217775 +1168;9;2AEC2AEBC4E1;-76;-2147483648 +1170;3;-0.013626099;0.03149414;-0.0262146 +1171;0;-0.37252808;5.240341;8.38353 +1171;12;0.27946812;-0.046607494;-0.23274766;0.93035156 +1171;3;-0.014251709;0.032104492;-0.027435303 +1173;0;-0.37728882;5.264099;8.378754 +1173;1;-0.43235424;5.33966;8.218102 +1173;3;-0.016067505;0.032714844;-0.028656006 +1175;4;-12.857056;-6.2911987;-65.097046 +1175;6;0.49907678;-0.5604895;0.044998832 +1175;7;0.88858134;0.40538463;-0.21467786;0.0;-0.4571341;0.7436826;-0.4878161;0.0;-0.038100924 +1175;0;-0.39640808;5.2355957;8.41214 +1175;3;-0.016693115;0.032714844;-0.03050232 +1176;12;0.27945486;-0.04651111;-0.23278771;0.9303503 +1177;0;-0.37252808;5.2450867;8.445526 +1178;1;-0.43437696;5.338888;8.218497 +1178;3;-0.019729614;0.0357666;-0.031097412 +1178;2;-0.09673309;0.07522869;-0.15766048; +1181;0;-0.41552734;5.2498474;8.459839 +1181;12;0.27943638;-0.046409268;-0.23283365;0.9303494 +1181;3;-0.019134521;0.036987305;-0.031097412 +1182;0;-0.40119934;5.2355957;8.474136 +1182;1;-0.43659085;5.3379855;8.218967 +1183;3;-0.02279663;0.036376953;-0.032318115 +1186;4;-13.006592;-6.440735;-64.19678 +1186;6;0.5218584;-0.552928;0.04730865 +1186;7;0.87830514;0.42421198;-0.22050941;0.0;-0.47640383;0.7377188;-0.4783414;0.0;-0.040244196 +1186;0;-0.39163208;5.2260895;8.517059 +1186;3;-0.024017334;0.036376953;-0.03416443 +1186;12;0.27941263;-0.046296407;-0.23288092;0.93035036 +1189;0;-0.39163208;5.2736053;8.464584 +1189;1;-0.43885154;5.3369193;8.219539 +1189;3;-0.024017334;0.03515625;-0.035995483 +1189;0;-0.43940735;5.254593;8.474136 +1190;12;0.27938116;-0.046179764;-0.23293342;0.93035245 +1190;3;-0.024017334;0.03515625;-0.037826538 +1192;0;-0.4298401;5.2593536;8.507523 +1192;1;-0.44117418;5.335823;8.220125 +1192;3;-0.024017334;0.0345459;-0.03843689 +1194;4;-11.657715;-7.1914673;-64.497375 +1194;6;0.49780673;-0.5531248;0.050481778 +1194;7;0.8901708;0.40629828;-0.20619814;0.0;-0.45359945;0.74761665;-0.48509485;0.0;-0.042936053 +1194;0;-0.48718262;5.2688446;8.521835 +1195;3;-0.024627686;0.03149414;-0.037826538 +1195;12;0.27934775;-0.046062194;-0.23299523;0.9303528 +1196;5;999.5594 +1197;0;-0.49195862;5.2736053;8.507523 +1197;1;-0.44347814;5.334704;8.220728 +1197;2;-0.044920474;0.05638647;-0.25696087; +1197;3;-0.023406982;0.03086853;-0.03904724 +1199;0;-0.48718262;5.2830963;8.531357 +1199;12;0.2793127;-0.04594718;-0.23306178;0.93035233 +1200;3;-0.02218628;0.030273438;-0.040878296 +1202;1;-0.44571427;5.33364;8.221297 +1203;0;-0.47763062;5.2498474;8.569519 +1203;3;-0.021575928;0.02720642;-0.040267944 +1204;4;-12.257385;-6.2911987;-65.54718 +1204;6;0.5096095;-0.54895574;0.055678383 +1204;7;0.88574797;0.41615856;-0.20557848;0.0;-0.4617324;0.7446746;-0.4819367;0.0;-0.047473017 +1204;0;-0.5158386;5.2736053;8.574295 +1204;3;-0.020355225;0.025375366;-0.042099 +1205;12;0.27927938;-0.045837685;-0.23313351;0.9303499 +1206;0;-0.49671936;5.3163605;8.583832 +1206;1;-0.44782102;5.332649;8.221826 +1206;3;-0.017913818;0.023544312;-0.040267944 +1208;0;-0.47763062;5.297348;8.579071 +1209;12;0.27924842;-0.045738377;-0.23321049;0.93034464 +1209;3;-0.017288208;0.020492554;-0.037826538 +1211;0;-0.5158386;5.311615;8.559982 +1211;1;-0.44969988;5.331799;8.222275 +1211;3;-0.016067505;0.016220093;-0.037826538 +1213;4;-12.857056;-6.2911987;-65.54718 +1213;6;0.5290293;-0.5545575;0.060188856 +1213;7;0.87771994;0.42905864;-0.21334538;0.0;-0.47643733;0.733918;-0.48411956;0.0;-0.05113768 +1214;0;-0.5015106;5.3163605;8.631531 +1214;3;-0.014846802;0.012542725;-0.036605835 +1214;12;0.2792224;-0.04565152;-0.23328534;0.93033797 +1216;0;-0.49671936;5.3401184;8.650604 +1216;1;-0.45123038;5.331031;8.222689 +1216;2;0.0124745965;0.0095767975;-0.34937096; +1216;3;-0.016067505;0.010101318;-0.03538513 +1219;0;-0.5253906;5.3496094;8.621979 +1219;3;-0.016693115;0.008285522;-0.03477478 +1219;12;0.27919683;-0.04558415;-0.23336098;0.9303301 +1220;0;-0.5540619;5.378128;8.65538 +1221;1;-0.4525175;5.3302402;8.22313 +1221;3;-0.015472412;0.0046081543;-0.031723022 +1223;4;-12.257385;-7.6400757;-65.097046 +1223;6;0.54022676;-0.55506307;0.06392636 +1223;7;0.8731559;0.43711263;-0.21571153;0.0;-0.48440823;0.7288394;-0.48388213;0.0;-0.054291923 +1223;0;-0.5253906;5.387619;8.664902 +1223;3;-0.016693115;0.0015716553;-0.029876709 +1224;12;0.2791665;-0.045528848;-0.23343547;0.9303231 +1225;0;-0.5349426;5.411377;8.688751 +1225;1;-0.4534497;5.3294754;8.223575 +1226;3;-0.016693115;-0.0014953613;-0.02684021 +1228;0;-0.49195862;5.3923798;8.703064 +1228;12;0.27913278;-0.04549076;-0.23350437;0.9303178 +1228;3;-0.014846802;-0.003326416;-0.023788452 +1230;0;-0.5110626;5.3971252;8.722153 +1230;1;-0.45401177;5.3287263;8.224029 +1231;3;-0.014251709;-0.0069885254;-0.021347046 +1233;4;-12.406921;-7.4905396;-65.24658 +1233;6;0.5327857;-0.55335015;0.058526717 +1233;7;0.8755347;0.4321351;-0.21609737;0.0;-0.48058543;0.7328482;-0.4816337;0.0;-0.049764276 +1233;0;-0.5015106;5.4066315;8.731674 +1233;3;-0.015472412;-0.00881958;-0.019500732 +1234;12;0.27909574;-0.045468856;-0.23356466;0.9303149 +1234;5;999.5594 +1235;0;-0.5015106;5.4161377;8.750748 +1235;1;-0.45423192;5.3280234;8.224473 +1236;3;-0.016067505;-0.011871338;-0.017059326 +1236;2;0.03166446;-0.08705807;-0.4550333; +1237;0;-0.5062866;5.4256287;8.750748 +1238;12;0.2790572;-0.04546308;-0.23361757;0.93031347 +1238;3;-0.013626099;-0.011871338;-0.015838623 +1240;0;-0.5158386;5.3828583;8.7603 +1240;1;-0.454198;5.3273253;8.224927 +1241;3;-0.013031006;-0.014312744;-0.014007568 +1243;4;-13.157654;-7.3410034;-65.097046 +1243;6;0.55566376;-0.5502128;0.058815762 +1243;7;0.86429447;0.44965425;-0.22540194;0.0;-0.5004841;0.7241681;-0.47444305;0.0;-0.050106436 +1243;0;-0.5540619;5.378128;8.755524 +1244;12;0.27901542;-0.04546802;-0.23366457;0.93031394 +1244;3;-0.011199951;-0.015533447;-0.012176514 +1245;1;-0.45397243;5.32674;8.225318 +1245;0;-0.5349426;5.420868;8.7603 +1246;3;-0.008132935;-0.017974854;-0.009124756 +1247;0;-0.5110626;5.3923798;8.803207 +1247;12;0.27897775;-0.045483816;-0.23370567;0.93031406 +1248;3;-0.0038604736;-0.017974854;-0.009735107 +1249;0;-0.5110626;5.3971252;8.7603 +1250;1;-0.453519;5.3263984;8.225565 +1250;3;-1.9836426E-4;-0.020431519;-0.007904053 +1252;4;-12.70752;-5.8410645;-64.94751 +1252;6;0.52238524;-0.55140746;0.058272436 +1252;7;0.88038385;0.42499852;-0.21047673;0.0;-0.47166014;0.73818636;-0.4823045;0.0;-0.04960768 +1252;0;-0.5110626;5.411377;8.78891 +1253;3;0.0034637451;-0.02104187;-0.0054626465 +1253;12;0.2789516;-0.045512512;-0.23373994;0.9303119 +1255;0;-0.49671936;5.3828583;8.807983 +1255;1;-0.45288295;5.3263593;8.225624 +1255;2;0.032476604;-0.09500265;-0.5351238; +1255;3;0.008346558;-0.023483276;-0.0042419434 +1257;12;0.27893993;-0.045553662;-0.23376907;0.9303061 +1257;0;-0.49195862;5.3923798;8.793686 +1257;3;0.012008667;-0.024093628;-0.0030212402 +1264;1;-0.4520493;5.3266664;8.2254715 +1264;0;-0.5110626;5.3923798;8.769836 +1264;3;0.01751709;-0.025314331;-0.0030212402 +1264;4;-11.506653;-7.0404053;-65.84625 +1265;6;0.5000155;-0.5505314;0.058209214 +1265;7;0.8906803;0.40860042;-0.199335;0.0;-0.4519187;0.7479105;-0.48620933;0.0;-0.049580596 +1266;12;0.27894548;-0.045608368;-0.23379245;0.93029594 +1266;1;-0.4510902;5.3273573;8.225077 +1266;0;-0.48239136;5.378128;8.793686 +1266;3;0.022399902;-0.027755737;-0.0030212402 +1266;0;-0.5110626;5.3923798;8.76506 +1266;3;0.026672363;-0.029586792;-0.0011749268 +1267;0;-0.47283936;5.3638763;8.741211 +1267;12;0.27897128;-0.045675177;-0.23381525;0.9302791 +1269;3;0.032791138;-0.03263855;-5.79834E-4 +1269;1;-0.44988495;5.32844;8.224442 +1270;9;2AEC2AEBC4E1;-75;-2147483648 +1272;0;-0.49671936;5.330597;8.750748 +1272;3;0.03767395;-0.034484863;-5.79834E-4 +1272;12;0.27901557;-0.045759603;-0.23383543;0.9302566 +1272;4;-11.956787;-7.940674;-65.54718 +1273;6;0.52748716;-0.54641247;0.05670223 +1273;7;0.8775091;0.43007097;-0.2121715;0.0;-0.47710925;0.7382603;-0.4768001;0.0;-0.048420094 +1273;0;-0.46806335;5.344864;8.774612 +1273;3;0.04194641;-0.038146973;0.001876831 +1273;5;999.5656 +1274;0;-0.4298401;5.2593536;7.3771973 +1274;3;0.052947998;-0.03630066;6.5612793E-4 +1274;1;-0.44844022;5.330032;8.223489 +1274;2;0.0023251176;-0.048971176;-0.3596964; +1279;0;-0.45851135;5.378128;6.6951904 +1279;12;0.27909964;-0.04586588;-0.23385273;0.9302218 +1279;3;0.124420166;-0.022262573;0.0012664795 +1279;0;-0.18621826;5.3828583;8.102127 +1279;3;0.2050476;-0.009429932;0.004928589 +1279;1;-0.44721758;5.333724;8.221162 +1281;4;-11.207581;-7.3410034;-65.097046 +1281;6;0.40348652;-0.58629334;0.022979828 +1281;7;0.92444634;0.32705742;-0.19604172;0.0;-0.38083142;0.7661056;-0.5177351;0.0;-0.019140448 +1281;0;-0.16711426;5.35437;9.661682 +1281;3;0.23986816;0.033325195;0.015930176 +1281;12;0.27927345;-0.045985833;-0.23385921;0.9301621 +1283;0;-0.3295288;5.3638763;9.981247 +1283;1;-0.44731873;5.3422256;8.215633 +1283;3;0.2331543;0.117630005;0.031188965 +1285;0;-0.49671936;5.3401184;9.323074 +1285;12;0.27976036;-0.046089087;-0.23380429;0.93002445 +1286;3;0.21665955;0.22085571;0.039138794 +1288;0;-0.46806335;5.35437;8.2595215 +1288;1;-0.4530803;5.3510365;8.209581 +1288;3;0.21055603;0.3020935;0.043411255 +1290;4;-11.657715;-7.1914673;-66.44745 +1290;6;0.47899163;-0.574424;0.056608997 +1290;7;0.90020716;0.38691506;-0.1998097;0.0;-0.43286386;0.7450276;-0.50750655;0.0;-0.04749818 +1290;0;-0.3056488;5.302109;7.4201202 +1290;3;0.22032166;0.3436432;0.046463013 +1291;12;0.28035676;-0.045863673;-0.23358688;0.9299107 +1292;0;-0.28652954;5.3068542;7.0719757 +1293;1;-0.4645594;5.359804;8.203218 +1293;2;-0.1596579;-0.010241032;-0.09857273; +1293;3;0.23925781;0.34669495;0.051345825 +1295;0;-0.44895935;5.321106;7.2865753 +1295;12;0.2810249;-0.045299336;-0.23324455;0.9298225 +1295;3;0.25880432;0.3289795;0.06112671 +1297;0;-0.5779419;5.3591156;7.7969055 +1297;1;-0.47641698;5.3698473;8.195967 +1298;3;0.2673645;0.30882263;0.06539917 +1300;4;-11.657715;-6.1401367;-65.69672 +1300;6;0.4821943;-0.6008996;0.07398921 +1300;7;0.9029365;0.38249257;-0.19597223;0.0;-0.42542684;0.7307801;-0.533828;0.0;-0.060972653 +1300;0;-0.68782043;5.454132;8.164139 +1301;3;0.25758362;0.3002777;0.06295776 +1301;12;0.28176695;-0.044720992;-0.23286527;0.92972106 +1302;0;-0.6925812;5.501648;8.288132 +1302;3;0.2355957;0.299057;0.056243896 +1304;1;-0.48680747;5.380319;8.188485 +1304;0;-0.5874939;5.5396423;8.106903 +1305;12;0.28251827;-0.044229843;-0.23248918;0.92961067 +1305;3;0.2038269;0.29415894;0.047683716 +1307;0;-0.5540619;5.568161;7.7253723 +1307;1;-0.49713615;5.389166;8.182044 +1307;3;0.17085266;0.27278137;0.039138794 +1309;4;-11.657715;-7.4905396;-66.14685 +1309;6;0.47331193;-0.6233089;0.071597174 +1309;7;0.9068177;0.37011716;-0.20172992;0.0;-0.41750205;0.72268826;-0.55082995;0.0;-0.058083773 +1309;0;-0.49671936;5.5824127;7.429657 +1309;3;0.13786316;0.2306366;0.030578613 +1310;12;0.28317904;-0.043728326;-0.23214854;0.92951846 +1311;5;999.5656 +1311;0;-0.5301666;5.568161;7.305664 +1312;1;-0.5061179;5.3955398;8.177292 +1312;2;0.033520937;-0.11375713;0.4271202; +1312;3;0.10424805;0.17076111;0.02142334 +1315;0;-0.6018219;5.5158997;7.415344 +1315;12;0.28367338;-0.043278348;-0.23188321;0.92945504 +1315;3;0.06700134;0.1005249;0.011642456 +1316;0;-0.6257019;5.4969025;7.653824 +1316;1;-0.51106507;5.39911;8.174627 +1317;3;0.026062012;0.030273438;6.5612793E-4 +1320;4;-12.406921;-7.4905396;-64.497375 +1320;6;0.5205406;-0.6212531;0.081568845 +1320;7;0.8882527;0.4044194;-0.21783522;0.0;-0.4545521;0.70544845;-0.543806;0.0;-0.06625416 +1320;0;-0.63049316;5.47789;7.9495087 +1320;3;-0.019134521;-0.03263855;-0.010955811 +1320;12;0.28394526;-0.043033704;-0.23174554;0.9294177 +1321;0;-0.63526917;5.501648;8.078278 +1321;1;-0.51120967;5.3992944;8.174496 +1322;3;-0.06738281;-0.08456421;-0.023788452 +1323;0;-0.6018219;5.501648;8.14505 +1324;12;0.2839567;-0.0430331;-0.23175779;0.9294111 +1324;3;-0.112594604;-0.13160706;-0.035995483 +1326;0;-0.5636139;5.5063934;8.125992 +1326;1;-0.50778234;5.395739;8.177058 +1326;3;-0.1578064;-0.17558289;-0.04638672 +1328;4;-10.906982;-7.0404053;-65.097046 +1328;6;0.47232023;-0.5944385;0.0692485 +1328;7;0.9060108;0.37691236;-0.19256572;0.0;-0.4193548;0.7377589;-0.5290117;0.0;-0.05732398 +1328;0;-0.5301666;5.511139;8.149826 +1329;3;-0.19995117;-0.21713257;-0.055541992 +1329;12;0.2837028;-0.043203294;-0.23190708;0.92944354 +1331;0;-0.5015106;5.47789;8.173676 +1331;1;-0.5014091;5.3886433;8.182129 +1331;2;0.05270797;-0.13277245;0.23358917; +1331;3;-0.23843384;-0.25927734;-0.06286621 +1333;0;-0.46328735;5.4161377;8.240448 +1333;12;0.283202;-0.0435072;-0.23217222;0.9295159 +1334;3;-0.26837158;-0.29959106;-0.06774902 +1335;0;-0.46806335;5.3353577;8.397842 +1336;1;-0.49206075;5.3784575;8.189394 +1336;3;-0.2903595;-0.3319702;-0.07081604 +1339;4;-11.657715;-5.8410645;-65.24658 +1339;6;0.4760676;-0.56528777;0.055678535 +1339;7;0.9010878;0.38699386;-0.19564366;0.0;-0.43108281;0.75053674;-0.50086147;0.0;-0.04699259 +1339;0;-0.42507935;5.2830963;8.588608 +1339;3;-0.3123474;-0.35639954;-0.07142639 +1340;12;0.28248006;-0.043947052;-0.23253585;0.9296241 +1341;0;-0.40596008;5.221344;8.6362915 +1341;1;-0.4804175;5.3664155;8.19798 +1341;3;-0.3251648;-0.37106323;-0.07203674 +1343;0;-0.35820007;5.2023315;8.65538 +1343;3;-0.33067322;-0.3759613;-0.068984985 +1343;12;0.281622;-0.044494614;-0.23295608;0.92975307 +1345;0;-0.26742554;5.1785736;8.722153 +1345;1;-0.46738988;5.3531356;8.207411 +1345;3;-0.3215027;-0.36801147;-0.06530762 +1347;4;-14.2074585;-7.0404053;-65.84625 +1347;6;0.53587306;-0.5355877;0.030650895 +1347;7;0.867405;0.43909314;-0.23410618;0.0;-0.49690434;0.7394211;-0.4542493;0.0;-0.02635469 +1348;0;-0.22921753;5.173828;8.803207 +1348;3;-0.3050232;-0.35151672;-0.05859375 +1348;12;0.28067437;-0.045102622;-0.23340218;0.9298985 +1349;5;999.5656 +1350;0;-0.24354553;5.1453247;9.008301 +1350;1;-0.454714;5.3404784;8.216364 +1351;3;-0.2805786;-0.32341003;-0.052490234 +1354;2;-0.12935278;0.07350111;-0.4024496; +1354;0;-0.22442627;5.15007;9.11322 +1354;12;0.27976826;-0.04568941;-0.23381548;0.93003905 +1354;3;-0.25248718;-0.28494263;-0.04638672 +1356;1;-0.4438882;5.329633;8.223994 +1356;0;-0.22442627;5.1168213;9.160919 +1356;3;-0.22010803;-0.24034119;-0.040267944 +1358;4;-12.406921;-6.440735;-64.94751 +1358;6;0.49564844;-0.50925523;0.024493327 +1358;7;0.88507533;0.415252;-0.21025577;0.0;-0.4649564;0.7680385;-0.44037762;0.0;-0.021383177 +1358;0;-0.20054626;5.1120605;9.117996 +1358;3;-0.18406677;-0.1951294;-0.03416443 +1358;12;0.27899447;-0.046186816;-0.23415826;0.93016064 +1360;0;-0.21966553;5.1168213;8.965378 +1360;1;-0.4361431;5.321361;8.229764 +1360;3;-0.1473999;-0.15115356;-0.02684021 +1362;0;-0.18144226;5.06456;8.889069 +1362;12;0.2784132;-0.04653639;-0.23440856;0.93025434 +1362;3;-0.10649109;-0.110839844;-0.020126343 +1364;1;-0.43145612;5.316078;8.233424 +1364;0;-0.19577026;5.007553;8.927231 +1364;3;-0.067993164;-0.07052612;-0.012786865 +1367;4;-12.5564575;-7.6400757;-65.097046 +1367;6;0.50930387;-0.5110936;0.021926047 +1367;7;0.8781029;0.42526314;-0.21928649;0.0;-0.47808957;0.7615129;-0.43763983;0.0;-0.01912259 +1367;0;-0.16233826;4.9933014;8.965378 +1367;3;-0.025848389;-0.034484863;-0.006072998 +1368;12;0.27804458;-0.046743914;-0.23456198;0.9303155 +1369;1;-0.42949554;5.313959;8.234895 +1369;0;-0.16711426;5.0265503;8.994003 +1369;3;0.010787964;0.0070648193;0.0012664795 +1369;2;-0.2650482;0.2186985;-0.76948166; +1372;0;-0.18621826;5.0455627;8.970154 +1372;12;0.27789706;-0.046830952;-0.23462278;0.9303399 +1372;3;0.047454834;0.049819946;0.0067596436 +1374;1;-0.43040976;5.3148937;8.234243 +1375;0;-0.25309753;5.1263123;8.960602 +1375;3;0.07859802;0.09013367;0.010421753 +1376;4;-12.107849;-6.1401367;-65.69672 +1376;6;0.4756066;-0.5194763;0.028238086 +1376;7;0.8950785;0.3974743;-0.20211089;0.0;-0.4452347;0.7717357;-0.4540818;0.0;-0.024509642 +1377;0;-0.25309753;5.1168213;8.84137 +1378;3;0.10975647;0.12617493;0.012863159 +1378;12;0.2779658;-0.0467882;-0.23459135;0.9303294 +1379;0;-0.27697754;5.131073;8.741211 +1379;1;-0.43429422;5.3184533;8.231741 +1379;3;0.13664246;0.15855408;0.015304565 +1381;12;0.27822673;-0.04660944;-0.23448257;0.9302879 +1381;0;-0.2960968;5.173828;8.598129 +1381;3;0.16107178;0.18054199;0.016525269 +1383;0;-0.2960968;5.1595764;8.540909 +1383;1;-0.44050163;5.3242316;8.2276745 +1384;3;0.18183899;0.19581604;0.014709473 +1386;4;-11.207581;-7.0404053;-65.097046 +1386;6;0.456547;-0.5431642;0.03465419 +1386;7;0.90493566;0.377403;-0.19661738;0.0;-0.42451346;0.7683982;-0.47890767;0.0;-0.029660739 +1386;0;-0.3390808;5.1928253;8.49321 +1386;3;0.19650269;0.20619202;0.014083862 +1387;12;0.27864558;-0.04632726;-0.23431712;0.9302182 +1388;5;999.5656 +1388;0;-0.39163208;5.2165833;8.435989 +1389;1;-0.4480131;5.331623;8.22248 +1389;2;-0.19425473;0.16499996;-0.46328926; +1389;3;0.20443726;0.20802307;0.012252808 +1390;0;-0.40119934;5.2070923;8.38353 +1391;12;0.27917415;-0.045995355;-0.23412983;0.9301234 +1391;3;0.20748901;0.20497131;0.008590698 +1393;0;-0.43463135;5.2498474;8.373978 +1393;1;-0.45585904;5.3396845;8.216817 +1393;3;0.2038269;0.1988678;0.004928589 +1395;4;-13.006592;-6.890869;-63.29651 +1395;6;0.5367216;-0.5593764;0.051856086 +1395;7;0.87229854;0.4333888;-0.22642727;0.0;-0.48699594;0.72840667;-0.48193198;0.0;-0.043932803 +1396;0;-0.42507935;5.2736053;8.292908 +1396;3;0.19894409;0.18603516;0.001876831 +1397;12;0.27974528;-0.045657735;-0.23394588;0.9300147 +1399;0;-0.45851135;5.311615;8.2070465 +1400;3;0.18611145;0.17382812;-0.0023956299 +1400;1;-0.46333557;5.3475914;8.211255 +1400;0;-0.46328735;5.330597;8.178452 +1400;3;0.17451477;0.153656;-0.006072998 +1401;12;0.2803018;-0.04534409;-0.23378721;0.9299024 +1403;17;1;38dead6d7725;7406;761;-64; +1403;17;1;38dead6d60ff;-2768;1545;-57; +1403;17;0;1c1bb5efa29a;0;0;0; +1404;17;1;1c1bb5ecd182;9185;1088;-64; +1404;0;-0.5062866;5.3496094;8.159363 +1404;3;0.15985107;0.1347351;-0.012176514 +1404;1;-0.46989205;5.3546767;8.206263 +1405;4;-12.406921;-8.09021;-65.24658 +1405;6;0.523283;-0.57944953;0.061970323 +1405;7;0.8814668;0.41815323;-0.2194634;0.0;-0.4693941;0.7247911;-0.50432825;0.0;-0.051821362 +1405;0;-0.5110626;5.3591156;8.135513 +1407;3;0.13786316;0.11395264;-0.015838623 +1407;12;0.2807973;-0.04507673;-0.23366721;0.92979604 +1407;0;-0.5110626;5.3496094;8.121216 +1408;1;-0.47519183;5.3605475;8.202125 +1408;3;0.12013245;0.089523315;-0.019500732 +1408;2;-0.044102013;0.03547764;-0.01753521; +1410;0;-0.49671936;5.3353577;8.135513 +1410;12;0.28120404;-0.04487182;-0.23359834;0.9297003 +1410;3;0.09877014;0.06814575;-0.020721436 +1412;0;-0.49671936;5.330597;8.111679 +1412;1;-0.47881696;5.3648076;8.199127 +1412;3;0.07493591;0.04737854;-0.024383545 +1416;4;-13.006592;-7.4905396;-63.746643 +1416;6;0.53936785;-0.58052725;0.06115872 +1416;7;0.8736463;0.42945352;-0.22871794;0.0;-0.4838701;0.71746504;-0.5011126;0.0;-0.051107433 +1416;0;-0.5062866;5.330597;8.140289 +1416;3;0.052337646;0.02720642;-0.028060913 +1416;12;0.28149524;-0.044743434;-0.23357843;0.92962337 +1417;0;-0.48239136;5.3496094;8.125992 +1418;1;-0.4809645;5.367252;8.197401 +1418;3;0.030349731;0.0070648193;-0.03050232 +1420;0;-0.49195862;5.3401184;8.149826 +1420;12;0.28166178;-0.044678222;-0.23360486;0.9295694 +1420;3;0.010192871;-0.010040283;-0.031723022 +1422;0;-0.5158386;5.3733673;8.154587 +1422;1;-0.48172215;5.3679876;8.196876 +1422;3;-0.008132935;-0.025314331;-0.032943726 +1424;4;-12.70752;-5.8410645;-65.69672 +1424;6;0.50139755;-0.5817159;0.06317331 +1424;7;0.8918353;0.4015945;-0.20821063;0.0;-0.4492744;0.7326782;-0.5112095;0.0;-0.05274753 +1424;0;-0.46328735;5.3591156;8.173676 +1424;3;-0.025848389;-0.038757324;-0.032943726 +1425;12;0.28171092;-0.0446718;-0.23367341;0.9295376 +1426;5;999.5497 +1427;0;-0.46806335;5.3353577;8.2070465 +1427;1;-0.48130378;5.367239;8.197391 +1427;2;-0.023897886;0.0017738342;0.059417725; +1427;3;-0.04234314;-0.04852295;-0.032943726 +1429;0;-0.46806335;5.3401184;8.2165985 +1429;12;0.28165856;-0.04471159;-0.23377016;0.9295273 +1430;3;-0.052719116;-0.05708313;-0.031723022 +1431;0;-0.47283936;5.3591156;8.221359 +1431;1;-0.48005554;5.3652873;8.19874 +1432;3;-0.06188965;-0.06440735;-0.03050232 +1434;4;-11.056519;-6.890869;-64.94751 +1434;6;0.46760413;-0.57692146;0.057450235 +1434;7;0.905295;0.37779334;-0.1941989;0.0;-0.42204857;0.74817157;-0.5119712;0.0;-0.04812519 +1435;0;-0.46328735;5.3353577;8.245209 +1435;3;-0.067993164;-0.06745911;-0.029281616 +1435;12;0.28152648;-0.044780884;-0.23388268;0.92953557 +1436;0;-0.44895935;5.321106;8.269058 +1436;1;-0.47822186;5.3626423;8.200579 +1436;3;-0.072265625;-0.06867981;-0.028060913 +1439;0;-0.45851135;5.302109;8.288132 +1439;12;0.2813467;-0.04487136;-0.23400067;0.92955595 +1439;3;-0.07350159;-0.0662384;-0.02684021 +1441;0;-0.45373535;5.3163605;8.30722 +1441;1;-0.4762651;5.3596773;8.20263 +1441;3;-0.072891235;-0.063186646;-0.025009155 +1443;4;-11.056519;-6.890869;-64.94751 +1443;6;0.46885386;-0.56861484;0.054565173 +1443;7;0.90402895;0.38076225;-0.19429839;0.0;-0.42499384;0.7517148;-0.50428677;0.0;-0.0459564 +1443;0;-0.46328735;5.287857;8.30722 +1444;3;-0.068603516;-0.059524536;-0.023788452 +1444;12;0.28114766;-0.044962164;-0.23411517;0.929583 +1445;0;-0.44895935;5.287857;8.364441 +1446;1;-0.47446898;5.356787;8.204622 +1446;2;-0.047492802;0.016924381;-0.06100273; +1446;3;-0.0625;-0.050964355;-0.020721436 +1448;0;-0.46806335;5.2688446;8.402588 +1451;12;0.28095508;-0.045042325;-0.23421864;0.9296113 +1451;3;-0.055786133;-0.041809082;-0.017059326 +1451;1;-0.47312236;5.3543577;8.206285 +1451;0;-0.45851135;5.3258667;8.369217 +1451;3;-0.048446655;-0.030197144;-0.014007568 +1453;4;-12.5564575;-7.6400757;-66.29639 +1453;6;0.51315784;-0.5660508;0.05473074 +1453;7;0.88429683;0.4143581;-0.21523587;0.0;-0.4646368;0.73531383;-0.49338245;0.0;-0.04617108 +1453;0;-0.39640808;5.3258667;8.416901 +1453;3;-0.041732788;-0.018600464;-0.012176514 +1454;12;0.28079683;-0.045100313;-0.23429817;0.9296362 +1455;0;-0.43940735;5.3163605;8.44075 +1455;1;-0.4724679;5.3524947;8.207539 +1455;3;-0.033172607;-0.0069885254;-0.010345459 +1459;0;-0.43940735;5.321106;8.416901 +1459;12;0.28068113;-0.045120727;-0.23434865;0.9296575 +1460;3;-0.02218628;0.0046081543;-0.008514404 +1460;0;-0.44895935;5.3068542;8.397842 +1460;3;-0.013031006;0.016220093;-0.006072998 +1461;1;-0.47264552;5.3513265;8.20829 +1462;4;-12.5564575;-7.6400757;-66.29639 +1462;6;0.51347286;-0.56292343;0.05341043 +1462;7;0.883796;0.41541156;-0.21526246;0.0;-0.46568915;0.73664063;-0.49040216;0.0;-0.045147654 +1464;0;-0.45851135;5.330597;8.38353 +1464;3;-0.002029419;0.02720642;-0.006072998 +1464;12;0.28061745;-0.045101445;-0.23437351;0.9296714 +1465;5;999.5497 +1465;0;-0.46328735;5.321106;8.407364 +1465;1;-0.4736451;5.3509655;8.2084675 +1466;2;-0.059847713;0.01543808;-0.18425465; +1466;3;0.0010223389;0.03515625;-0.0042419434 +1468;0;-0.45373535;5.330597;8.426437 +1468;12;0.28061092;-0.045044616;-0.23437335;0.92967606 +1468;3;0.010192871;0.04309082;-0.003616333 +1470;0;-0.46328735;5.302109;8.431213 +1470;1;-0.4752721;5.3511147;8.208277 +1470;3;0.012634277;0.051651;-0.003616333 +1472;4;-11.506653;-7.3410034;-65.54718 +1472;6;0.490463;-0.5606959;0.05489387 +1472;7;0.8945293;0.39891207;-0.20170896;0.0;-0.4445878;0.7470501;-0.49422455;0.0;-0.046465464 +1472;0;-0.45851135;5.321106;8.416901 +1472;3;0.014465332;0.057754517;-0.0030212402 +1473;12;0.28064284;-0.0449577;-0.23435526;0.9296752 +1474;0;-0.49671936;5.3258667;8.407364 +1475;1;-0.47750455;5.351583;8.207842 +1475;3;0.016906738;0.060806274;4.5776367E-5 +1477;0;-0.48239136;5.3591156;8.38829 +1477;12;0.28070223;-0.044840563;-0.23432465;0.9296707 +1478;3;0.018127441;0.062026978;6.5612793E-4 +1479;0;-0.5110626;5.3638763;8.38829 +1479;1;-0.47991565;5.352234;8.207276 +1480;3;0.01751709;0.06263733;0.001876831 +1482;4;-11.506653;-7.3410034;-65.54718 +1482;6;0.49535537;-0.56808114;0.0608505 +1482;7;0.89372396;0.40068436;-0.20176606;0.0;-0.445679;0.74161404;-0.501377;0.0;-0.051261365 +1482;0;-0.5158386;5.3828583;8.38353 +1482;3;0.016906738;0.05897522;0.001876831 +1483;12;0.28077468;-0.04471283;-0.23428102;0.929666 +1484;2;-0.025482476;-0.008030415;-0.18732643; +1486;0;-0.5349426;5.3353577;8.402588 +1486;1;-0.48229107;5.352878;8.2067175 +1486;3;0.013244629;0.055923462;0.0024871826 +1487;0;-0.55882263;5.344864;8.38353 +1487;12;0.28084576;-0.044585567;-0.23423442;0.92966235 +1487;3;0.010192871;0.05104065;0.001876831 +1489;0;-0.5683899;5.330597;8.369217 +1489;1;-0.48437488;5.3532977;8.206321 +1489;3;0.006515503;0.046157837;0.0024871826 +1491;4;-11.056519;-6.890869;-64.19678 +1491;6;0.5003068;-0.5660895;0.06781022 +1491;7;0.89285153;0.40486464;-0.19723263;0.0;-0.44670528;0.7405597;-0.5020217;0.0;-0.057188302 +1492;0;-0.5636139;5.3638763;8.393066 +1492;3;0.002243042;0.03881836;0.0037078857 +1492;12;0.2809004;-0.044472136;-0.23419294;0.9296617 +1494;0;-0.55882263;5.3638763;8.41214 +1494;1;-0.48600057;5.3534336;8.206136 +1494;3;-0.0026397705;0.03086853;0.0037078857 +1496;0;-0.5922699;5.3591156;8.407364 +1496;12;0.28093237;-0.044379532;-0.23415776;0.9296653 +1497;3;-0.0063171387;0.023544312;0.0037078857 +1499;0;-0.5110626;5.368622;8.41214 +1499;1;-0.4870035;5.353222;8.206214 +1499;3;-0.013031006;0.015609741;0.0043182373 +1501;4;-11.056519;-6.890869;-64.19678 +1501;6;0.48607725;-0.56719965;0.060678408 +1501;7;0.8977655;0.3940078;-0.19691359;0.0;-0.4374943;0.74571866;-0.50249624;0.0;-0.051145308 +1501;0;-0.5349426;5.368622;8.445526 +1501;3;-0.016693115;0.010726929;0.0043182373 +1502;12;0.2809356;-0.044317722;-0.23413207;0.9296738 +1503;0;-0.5301666;5.3353577;8.44075 +1503;1;-0.4874283;5.3525915;8.2066 +1504;3;-0.020355225;0.002166748;0.006149292 +1504;2;0.0321756;-0.022413254;-0.1899395; +1504;5;999.5497 +1505;0;-0.5301666;5.3353577;8.44075 +1506;12;0.28090692;-0.044281382;-0.2341157;0.92968833 +1506;3;-0.025238037;-0.0039367676;0.0067596436 +1508;0;-0.5158386;5.35437;8.44075 +1508;1;-0.48724148;5.3516526;8.207224 +1508;3;-0.028900146;-0.0082092285;0.0043182373 +1510;4;-12.257385;-7.940674;-64.64691 +1510;6;0.53320384;-0.56445026;0.061036978 +1510;7;0.87616575;0.42944977;-0.21887545;0.0;-0.47924682;0.7275987;-0.4908387;0.0;-0.05153708 +1511;0;-0.5015106;5.35437;8.46936 +1511;3;-0.027679443;-0.014312744;0.004928589 +1511;12;0.28085253;-0.04427394;-0.23410472;0.9297079 +1513;0;-0.5158386;5.330597;8.502762 +1513;1;-0.48668528;5.350482;8.20802 +1513;3;-0.028900146;-0.01737976;0.004928589 +1515;0;-0.5110626;5.330597;8.483673 +1515;12;0.2807794;-0.04428495;-0.23410548;0.9297293 +1516;3;-0.031341553;-0.017974854;0.0055389404 +1517;0;-0.48718262;5.330597;8.526611 +1518;1;-0.4858567;5.349233;8.208883 +1519;3;-0.028900146;-0.018600464;0.004928589 +1520;4;-11.657715;-7.7911377;-64.19678 +1520;6;0.51597965;-0.5579906;0.05707467 +1520;7;0.88329554;0.41855055;-0.21119739;0.0;-0.4663123;0.73787767;-0.4879439;0.0;-0.048391342 +1520;0;-0.47283936;5.3353577;8.564758 +1521;3;-0.028900146;-0.01737976;0.0067596436 +1521;12;0.28069767;-0.04431036;-0.23410921;0.9297518 +1522;0;-0.47763062;5.344864;8.550446 +1523;1;-0.48498723;5.348026;8.209721 +1523;2;-0.016111076;-0.011893272;-0.2763996; +1523;3;-0.028900146;-0.01737976;0.0055389404 +1525;0;-0.45851135;5.321106;8.536133 +1525;12;0.28061843;-0.044337824;-0.23411156;0.9297738 +1525;3;-0.025848389;-0.0149383545;0.0067596436 +1527;0;-0.43940735;5.3163605;8.588608 +1527;1;-0.48416877;5.3468704;8.210522 +1528;3;-0.02218628;-0.010650635;0.007369995 +1530;4;-11.657715;-6.1401367;-65.69672 +1530;6;0.4778298;-0.5536893;0.05111708 +1530;7;0.89919;0.39114663;-0.19611627;0.0;-0.4353946;0.75531995;-0.48981965;0.0;-0.043460764 +1530;0;-0.40596008;5.297348;8.564758 +1530;3;-0.020950317;-0.0082092285;0.006149292 +1531;12;0.28054237;-0.044363126;-0.2341115;0.92979556 +1532;0;-0.42507935;5.3353577;8.521835 +1532;1;-0.4835826;5.345949;8.211157 +1532;3;-0.016067505;-0.0057678223;0.008590698 +1534;0;-0.40119934;5.3353577;8.550446 +1535;12;0.28048402;-0.044377606;-0.23410489;0.92981416 +1535;3;-0.010574341;-0.0014953613;0.00920105 +1537;0;-0.4202881;5.311615;8.555222 +1537;1;-0.4831676;5.3453574;8.211566 +1537;3;-0.004470825;0.0015716553;0.008590698 +1539;4;-12.107849;-6.440735;-65.24658 +1539;6;0.4917044;-0.55507845;0.049087036 +1539;7;0.8926764;0.40124318;-0.20526272;0.0;-0.44876492;0.74917585;-0.48718134;0.0;-0.041700315 +1540;0;-0.40596008;5.3258667;8.536133 +1540;3;-8.087158E-4;0.0040130615;0.009811401 +1540;12;0.28044662;-0.04438512;-0.23408878;0.9298291 +1542;0;-0.43940735;5.321106;8.536133 +1542;1;-0.48300356;5.3451896;8.211685 +1542;2;-0.091249704;0.004545212;-0.32589245; +1542;3;0.0052948;0.0070648193;0.00920105 +1543;5;999.5497 +1544;0;-0.40119934;5.287857;8.536133 +1545;12;0.28043646;-0.044384282;-0.23406662;0.9298378 +1545;3;0.012008667;0.009506226;0.0110321045 +1548;1;-0.4830179;5.3454604;8.211508 +1548;0;-0.38685608;5.3068542;8.54567 +1548;3;0.015686035;0.0113220215;0.009811401 +1550;4;-11.657715;-6.890869;-64.497375 +1550;6;0.48205414;-0.5552586;0.04523837 +1550;7;0.89619017;0.39395085;-0.20407332;0.0;-0.44200274;0.75292885;-0.4875774;0.0;-0.03842883 +1550;0;-0.35820007;5.2926025;8.550446 +1550;3;0.020568848;0.013168335;0.00920105 +1550;12;0.28045398;-0.04437923;-0.23403694;0.92984015 +1552;0;-0.35820007;5.321106;8.502762 +1552;1;-0.48318395;5.3461065;8.211077 +1552;3;0.024841309;0.01499939;0.010421753 +1555;0;-0.37252808;5.3068542;8.507523 +1555;12;0.2804956;-0.04437067;-0.23400511;0.92983615 +1555;3;0.027297974;0.016830444;0.009811401 +1557;1;-0.48348054;5.3470745;8.210429 +1557;0;-0.34864807;5.311615;8.488449 +1557;3;0.030960083;0.017440796;0.007980347 +1559;4;-12.107849;-6.1401367;-65.69672 +1559;6;0.46716845;-0.55875677;0.04105016 +1559;7;0.9018929;0.38186687;-0.20190808;0.0;-0.43055582;0.75705826;-0.49141064;0.0;-0.034797262 +1559;0;-0.3343048;5.311615;8.464584 +1559;3;0.03401184;0.018661499;0.007369995 +1561;12;0.280557;-0.04435948;-0.23396836;0.92982733 +1561;1;-0.48390302;5.348296;8.209609 +1561;0;-0.3104248;5.311615;8.464584 +1562;2;-0.15804142;0.022179127;-0.28701496; +1562;3;0.034622192;0.017440796;0.0067596436 +1563;0;-0.3152008;5.3496094;8.426437 +1563;12;0.28063476;-0.044346403;-0.23393467;0.92981297 +1564;3;0.035232544;0.016830444;0.004928589 +1566;0;-0.3343048;5.321106;8.464584 +1566;1;-0.48433733;5.349623;8.208718 +1566;3;0.036453247;0.017440796;0.0024871826 +1569;4;-12.257385;-7.0404053;-65.54718 +1569;6;0.47821757;-0.56085557;0.039474018 +1569;7;0.89678514;0.3896954;-0.20955676;0.0;-0.44120267;0.7518035;-0.49003258;0.0;-0.033417933 +1569;0;-0.3104248;5.311615;8.426437 +1569;3;0.03767395;0.016830444;-5.79834E-4 +1569;12;0.28071734;-0.044335186;-0.2339055;0.9297959 +1571;1;-0.4848807;5.3510222;8.207774 +1571;0;-0.2817688;5.344864;8.44075 +1571;3;0.036453247;0.015609741;-0.0023956299 +1573;0;-0.30085754;5.35437;8.421677 +1573;12;0.28080586;-0.044322915;-0.23388666;0.9297745 +1574;3;0.0370636;0.015609741;-0.0042419434 +1576;1;-0.48547432;5.35241;8.206835 +1577;0;-0.2960968;5.3401184;8.402588 +1577;3;0.036453247;0.014389038;-0.006072998 +1580;12;0.2808934;-0.044310775;-0.23387846;0.92975074 +1581;4;-11.207581;-7.6400757;-65.54718 +1581;6;0.44317886;-0.5658566;0.035224188 +1581;7;0.9109292;0.3619741;-0.19794631;0.0;-0.41149026;0.7625809;-0.49914536;0.0;-0.029727632 +1582;1;-0.48609805;5.35374;8.20593 +1582;2;-0.22024101;-0.0060544014;-0.20973682; +1582;0;-0.3056488;5.3353577;8.407364 +1582;3;0.034622192;0.013763428;-0.008514404 +1582;0;-0.24832153;5.3638763;8.421677 +1582;3;0.030960083;0.010726929;-0.010955811 +1582;5;999.5521 +1583;0;-0.28652954;5.3068542;8.421677 +1583;12;0.28097722;-0.04429949;-0.23388006;0.9297255 +1583;3;0.030349731;0.008880615;-0.012786865 +1586;1;-0.486681;5.3548603;8.205164 +1586;0;-0.3056488;5.3591156;8.407364 +1586;3;0.026062012;0.008285522;-0.013397217 +1588;4;-12.857056;-7.0404053;-65.097046 +1588;6;0.4865334;-0.56718934;0.036338888 +1588;7;0.89250195;0.39435047;-0.21892446;0.0;-0.45000142;0.74554366;-0.49159253;0.0;-0.030641994 +1588;0;-0.3199768;5.3353577;8.378754 +1588;3;0.024230957;0.0052337646;-0.012786865 +1589;12;0.28104913;-0.044290904;-0.23389554;0.9297003 +1590;0;-0.3104248;5.3591156;8.378754 +1590;1;-0.48718536;5.355775;8.204538 +1590;3;0.023010254;3.5095215E-4;-0.01461792 +1601;1;-0.48742056;5.3565946;8.203988 +1601;12;0.28110686;-0.044285398;-0.23391631;0.9296779 +1601;12;0.28115585;-0.04429465;-0.23394585;0.92965513 +1601;1;-0.48746997;5.357258;8.203552 +1602;0;-0.2960968;5.311615;8.407364 +1602;3;0.023620605;-0.002090454;-0.01461792 +1602;0;-0.3056488;5.321106;8.397842 +1602;3;0.019958496;-0.004547119;-0.015838623 +1602;4;-12.70752;-8.09021;-64.19678 +1602;6;0.5043309;-0.56448025;0.036380053 +1602;7;0.88432133;0.40825796;-0.22649772;0.0;-0.46586636;0.7396791;-0.48563695;0.0;-0.030729515 +1602;0;-0.3056488;5.311615;8.397842 +1604;3;0.018737793;-0.007598877;-0.0152282715 +1604;0;-0.27697754;5.311615;8.378754 +1604;2;-0.22013336;0.010713577;-0.18184376; +1604;12;0.28119293;-0.04431333;-0.23398122;0.9296342 +1605;3;0.016906738;-0.009429932;-0.015838623 +1605;0;-0.2817688;5.3163605;8.426437 +1605;3;0.016906738;-0.013092041;-0.0152282715 +1605;0;-0.28652954;5.3068542;8.38829 +1605;3;0.015686035;-0.0149383545;-0.017059326 +1605;1;-0.4873112;5.357821;8.203195 +1607;4;-11.207581;-6.590271;-64.34631 +1607;6;0.43818572;-0.5638183;0.034145 +1607;7;0.91273606;0.35862482;-0.19570659;0.0;-0.40752944;0.7653667;-0.49812996;0.0;-0.028854452 +1607;0;-0.25787354;5.330597;8.393066 +1607;3;0.01751709;-0.0149383545;-0.019500732 +1608;12;0.2812218;-0.044342406;-0.23402013;0.9296143 +1609;0;-0.2960968;5.2736053;8.369217 +1609;1;-0.4870744;5.358367;8.202851 +1610;3;0.018127441;-0.0149383545;-0.022567749 +1612;12;0.2812476;-0.044377714;-0.23406774;0.9295927 +1612;0;-0.23399353;5.302109;8.397842 +1613;3;0.019348145;-0.015533447;-0.022567749 +1619;0;-0.2817688;5.2830963;8.421677 +1619;1;-0.4869244;5.358975;8.202463 +1620;3;0.0211792;-0.01675415;-0.024383545 +1620;4;-12.5564575;-7.3410034;-63.89618 +1620;6;0.4908096;-0.56001496;0.03344509 +1620;7;0.88983065;0.39934152;-0.22074383;0.0;-0.45541063;0.74723095;-0.48399076;0.0;-0.028330974 +1620;0;-0.26264954;5.287857;8.402588 +1620;3;0.022399902;-0.016159058;-0.027435303 +1620;12;0.28127798;-0.044411745;-0.234125;0.9295675 +1620;0;-0.25787354;5.2688446;8.407364 +1620;1;-0.4868139;5.359697;8.201999 +1622;17;1;38dead6d7725;7530;455;-65; +1623;17;1;38dead6d60ff;-3110;1907;-56; +1624;17;1;1c1bb5efa29a;9268;5127;-78; +1625;17;1;1c1bb5ecd182;9141;863;-64; +1625;3;0.023620605;-0.013702393;-0.029281616 +1625;2;-0.25085264;0.044234276;-0.18832397; +1625;5;999.5521 +1625;12;0.28131488;-0.04444857;-0.23419055;0.9295382 +1625;0;-0.25309753;5.2830963;8.407364 +1625;3;0.02545166;-0.012481689;-0.031723022 +1626;0;-0.24832153;5.287857;8.407364 +1626;1;-0.4869484;5.360512;8.201458 +1626;3;0.026062012;-0.011260986;-0.03416443 +1626;4;-10.606384;-7.3410034;-65.097046 +1626;6;0.41727382;-0.5612421;0.029527612 +1626;7;0.92016685;0.34309915;-0.18861586;0.0;-0.39072782;0.7739544;-0.49832347;0.0;-0.024994284 +1626;0;-0.24354553;5.254593;8.402588 +1626;3;0.026062012;-0.009429932;-0.036605835 +1627;12;0.2813598;-0.044476304;-0.23426303;0.929505 +1629;1;-0.48732087;5.3613706;8.200873 +1629;0;-0.27697754;5.2830963;8.38353 +1629;3;0.028518677;-0.009429932;-0.040267944 +1631;0;-0.26742554;5.264099;8.421677 +1631;12;0.28141034;-0.044494886;-0.23434474;0.9294681 +1631;3;0.027893066;-0.0069885254;-0.040878296 +1633;0;-0.29130554;5.264099;8.421677 +1633;3;0.027297974;-0.004547119;-0.043930054 +1636;1;-0.48792064;5.362293;8.200235 +1636;4;-11.956787;-7.3410034;-65.54718 +1636;6;0.46604052;-0.5583777;0.034576185 +1636;7;0.90105057;0.381103;-0.20704702;0.0;-0.43272203;0.757668;-0.48855993;0.0;-0.029318763 +1636;0;-0.26742554;5.2450867;8.431213 +1636;3;0.026672363;-0.0014953613;-0.045150757 +1637;12;0.28146666;-0.044506084;-0.23443647;0.9294274 +1639;1;-0.48882008;5.3631506;8.199621 +1639;2;-0.2579791;0.07703924;-0.20101547; +1639;0;-0.2722168;5.254593;8.41214 +1640;3;0.026062012;0.0015716553;-0.04576111 +1640;0;-0.3104248;5.2450867;8.407364 +1641;3;0.026062012;0.0027923584;-0.04698181 +1642;0;-0.3104248;5.240341;8.431213 +1643;1;-0.48999318;5.3639646;8.1990185 +1643;12;0.28152376;-0.044502094;-0.23453373;0.9293858 +1643;3;0.023620605;0.0040130615;-0.047607422 +1645;4;-12.5564575;-7.3410034;-64.64691 +1645;6;0.49566606;-0.55580413;0.036801897 +1645;7;0.8882898;0.404026;-0.21841307;0.0;-0.45821872;0.74724376;-0.48131326;0.0;-0.03125529 +1645;0;-0.32476807;5.2355957;8.44075 +1645;3;0.018737793;0.0040130615;-0.048828125 +1646;12;0.28158137;-0.044483967;-0.23463193;0.9293444 +1647;0;-0.3390808;5.2593536;8.431213 +1647;1;-0.49129623;5.3645787;8.19854 +1647;3;0.015075684;0.0040130615;-0.047607422 +1649;0;-0.3295288;5.2498474;8.41214 +1650;12;0.28162998;-0.04445749;-0.23473357;0.9293053 +1650;3;0.013244629;0.0027923584;-0.04698181 +1652;0;-0.36775208;5.2593536;8.421677 +1652;1;-0.49256113;5.3649254;8.198236 +1652;3;0.010192871;0.0015716553;-0.048202515 +1654;4;-11.506653;-7.6400757;-65.54718 +1654;6;0.4749735;-0.5578132;0.0436396 +1654;7;0.8990187;0.38799262;-0.20304441;0.0;-0.43634316;0.7544992;-0.4902402;0.0;-0.037012726 +1654;0;-0.35820007;5.2688446;8.426437 +1655;3;0.0052948;3.5095215E-4;-0.047607422 +1655;12;0.2816628;-0.044428356;-0.23483449;0.92927116 +1657;0;-0.37728882;5.2688446;8.41214 +1657;1;-0.49375513;5.365023;8.198101 +1657;2;-0.18849677;0.09286213;-0.21466446; +1658;3;0.0034637451;-0.0057678223;-0.049423218 +1658;5;999.5521 +1659;0;-0.41073608;5.2736053;8.44075 +1660;12;0.28168038;-0.04439989;-0.23493937;0.9292408 +1660;3;0.0010223389;-0.00881958;-0.049423218 +1661;0;-0.4298401;5.2450867;8.445526 +1662;1;-0.4946926;5.364889;8.198132 +1662;3;-1.9836426E-4;-0.012481689;-0.05064392 +1664;4;-12.107849;-6.890869;-64.19678 +1664;6;0.5074993;-0.55517364;0.050851714 +1664;7;0.8858535;0.4130014;-0.21140811;0.0;-0.46194986;0.74270123;-0.48476514;0.0;-0.04319562 +1664;0;-0.4298401;5.2688446;8.474136 +1664;3;-0.003250122;-0.01675415;-0.05126953 +1665;12;0.28168055;-0.044384558;-0.23505402;0.9292124 +1666;0;-0.41552734;5.2498474;8.431213 +1667;1;-0.49538285;5.3645935;8.198283 +1667;3;-0.0050964355;-0.023483276;-0.053100586 +1669;0;-0.40119934;5.240341;8.450302 +1670;12;0.28166786;-0.04438284;-0.23517734;0.92918515 +1670;3;-0.0050964355;-0.028366089;-0.05432129 +1671;0;-0.4202881;5.2450867;8.431213 +1672;1;-0.4956923;5.364155;8.198551 +1672;3;-0.0069122314;-0.033859253;-0.056152344 +1674;4;-12.406921;-7.1914673;-65.69672 +1674;6;0.50706583;-0.55595726;0.049807835 +1674;7;0.8858488;0.41247872;-0.21244569;0.0;-0.46204272;0.74251884;-0.4849559;0.0;-0.042289067 +1674;0;-0.4202881;5.254593;8.445526 +1674;3;-0.008758545;-0.039978027;-0.059814453 +1675;12;0.28164178;-0.044402268;-0.23531485;0.9291573 +1677;0;-0.4298401;5.2830963;8.445526 +1677;1;-0.49568692;5.3636084;8.19891 +1677;2;-0.110524476;0.08758831;-0.23672295; +1677;3;-0.009979248;-0.04486084;-0.05859375 +1679;0;-0.4298401;5.2688446;8.512299 +1680;12;0.28160393;-0.044441566;-0.23546962;0.9291277 +1680;3;-0.0069122314;-0.0491333;-0.061035156 +1681;0;-0.43940735;5.254593;8.502762 +1681;1;-0.49533725;5.363014;8.199319 +1681;3;-0.0063171387;-0.05218506;-0.06286621 +1683;4;-12.257385;-6.590271;-65.54718 +1683;6;0.50237346;-0.5529439;0.051632255 +1683;7;0.88832545;0.4097539;-0.20731536;0.0;-0.45710948;0.7458366;-0.48453963;0.0;-0.043918606 +1684;0;-0.42507935;5.287857;8.46936 +1684;3;-0.004470825;-0.055252075;-0.06652832 +1685;12;0.28155905;-0.04450157;-0.23563533;0.9290964 +1686;0;-0.42507935;5.2355957;8.464584 +1686;1;-0.4948414;5.362538;8.199661 +1686;3;-0.002029419;-0.059524536;-0.068374634 +1688;0;-0.45373535;5.2926025;8.478897 +1688;12;0.28151754;-0.044575248;-0.23581736;0.92905927 +1689;3;-1.9836426E-4;-0.060134888;-0.068984985 +1690;0;-0.4202881;5.287857;8.483673 +1691;1;-0.49421692;5.362228;8.199901 +1691;3;0.0016326904;-0.060134888;-0.07081604 +1693;4;-12.5564575;-6.590271;-64.64691 +1693;6;0.50907063;-0.5568245;0.049500346 +1693;7;0.88487285;0.41374335;-0.2140481;0.0;-0.46393502;0.74129057;-0.48502868;0.0;-0.04200555 +1693;0;-0.46806335;5.2688446;8.507523 +1693;3;0.002243042;-0.060134888;-0.068984985 +1694;12;0.28148273;-0.044661652;-0.23601079;0.92901653 +1695;0;-0.45851135;5.264099;8.488449 +1695;1;-0.4936268;5.362023;8.20007 +1696;2;-0.08821154;0.073822975;-0.2786808; +1702;3;0.0046844482;-0.055862427;-0.06959534 +1703;5;999.5521 +1703;0;-0.47283936;5.297348;8.49321 +1704;12;0.28145492;-0.044749063;-0.23620696;0.92897093 +1704;3;0.007751465;-0.05340576;-0.068984985 +1704;1;-0.49323532;5.361998;8.200111 +1704;0;-0.44895935;5.3068542;8.531357 +1704;3;0.008346558;-0.049743652;-0.07081604 +1704;4;-12.406921;-8.09021;-65.69672 +1704;6;0.5241987;-0.5558487;0.052576117 +1704;7;0.8784083;0.42516774;-0.2182459;0.0;-0.4758215;0.73539287;-0.48248446;0.0;-0.044640362 +1704;0;-0.48718262;5.2830963;8.517059 +1705;17;1;38dead6d7725;7541;2036;-65; +1706;17;1;38dead6d60ff;-2715;1564;-57; +1707;17;0;1c1bb5efa29a;0;0;0; +1708;17;1;1c1bb5ecd182;8734;1145;-64; +1708;12;0.28143954;-0.04482702;-0.23639764;0.9289233 +1708;3;0.008972168;-0.046081543;-0.068374634 +1708;0;-0.49671936;5.297348;8.497986 +1709;1;-0.49313313;5.362065;8.200073 +1709;3;0.011413574;-0.04119873;-0.06715393 +1709;12;0.28143418;-0.044890855;-0.23658557;0.928874 +1709;0;-0.5015106;5.311615;8.497986 +1709;3;0.012008667;-0.03630066;-0.06347656 +1711;0;-0.5015106;5.3163605;8.49321 +1711;1;-0.49328664;5.3622723;8.199927 +1711;3;0.0138549805;-0.031417847;-0.061035156 +1714;4;-10.606384;-7.0404053;-64.34631 +1714;6;0.47831643;-0.55850285;0.058979936 +1714;7;0.90060514;0.39034462;-0.19115858;0.0;-0.43175414;0.75287384;-0.49675897;0.0;-0.049988907 +1714;0;-0.5015106;5.330597;8.478897 +1714;3;0.015075684;-0.027755737;-0.05859375 +1714;12;0.28144097;-0.044938594;-0.23675625;0.92882615 +1715;0;-0.5253906;5.321106;8.483673 +1715;1;-0.4936664;5.3626094;8.199685 +1715;3;0.016296387;-0.024093628;-0.056152344 +1716;2;-0.036263943;0.036667347;-0.28996563; +1717;0;-0.5397186;5.297348;8.421677 +1717;12;0.28145882;-0.044970326;-0.23690842;0.92878044 +1718;3;0.015686035;-0.021652222;-0.05493164 +1720;0;-0.5636139;5.330597;8.450302 +1720;3;0.018127441;-0.018600464;-0.053100586 +1720;1;-0.49422336;5.363022;8.199381 +1722;4;-12.107849;-6.890869;-63.746643 +1722;6;0.53376377;-0.5617706;0.06659885 +1722;7;0.8770259;0.43058485;-0.21312496;0.0;-0.47713038;0.7285896;-0.49143034;0.0;-0.05632183 +1722;0;-0.5540619;5.3401184;8.455063 +1723;3;0.018737793;-0.01675415;-0.049423218 +1724;12;0.28148416;-0.04499031;-0.2370465;0.92873657 +1725;1;-0.4948753;5.3635364;8.199005 +1725;0;-0.5540619;5.297348;8.450302 +1725;3;0.016296387;-0.016159058;-0.04638672 +1727;0;-0.5779419;5.297348;8.431213 +1727;12;0.2815167;-0.04500261;-0.23717149;0.9286942 +1727;3;0.015075684;-0.0149383545;-0.04576111 +1731;1;-0.49548635;5.3639536;8.198695 +1731;0;-0.55882263;5.3068542;8.44075 +1731;3;0.015075684;-0.014312744;-0.043930054 +1732;4;-11.956787;-8.390808;-64.34631 +1733;6;0.54663485;-0.5602838;0.06610885 +1733;7;0.8706614;0.44033793;-0.21920608;0.0;-0.4886893;0.72366315;-0.48733407;0.0;-0.055960312 +1733;0;-0.5540619;5.321106;8.431213 +1733;12;0.28154418;-0.04501249;-0.23728365;0.92865676 +1733;3;0.012634277;-0.014312744;-0.044540405 +1735;0;-0.55882263;5.3733673;8.459839 +1735;2;0.027120233;0.026142597;-0.23473644; +1735;1;-0.4960911;5.364318;8.198421 +1735;3;0.010787964;-0.015533447;-0.043930054 +1735;5;999.55426 +1737;12;0.28156942;-0.045019917;-0.23739101;0.9286213 +1737;0;-0.57315063;5.3591156;8.397842 +1737;3;0.010192871;-0.017974854;-0.043930054 +1741;0;-0.6018219;5.344864;8.35968 +1741;1;-0.4966112;5.36457;8.198223 +1741;3;0.008972168;-0.02104187;-0.044540405 +1742;4;-11.357117;-7.1914673;-64.497375 +1742;6;0.51669747;-0.5676882;0.071867034 +1742;7;0.8862841;0.41652387;-0.20250514;0.0;-0.45916784;0.73307806;-0.5017584;0.0;-0.06054227 +1742;0;-0.5636139;5.3496094;8.402588 +1742;3;0.008972168;-0.022262573;-0.043930054 +1744;12;0.28158617;-0.045030568;-0.23749971;0.9285879 +1744;1;-0.4969328;5.364753;8.198085 +1745;0;-0.5636139;5.3258667;8.38353 +1745;3;0.009567261;-0.028366089;-0.043319702 +1747;12;0.28159645;-0.04505162;-0.23761249;0.92855483 +1747;0;-0.55882263;5.3496094;8.369217 +1748;3;0.010787964;-0.030197144;-0.044540405 +1749;1;-0.49694538;5.3649993;8.197923 +1749;0;-0.5636139;5.3638763;8.350128 +1749;3;0.008972168;-0.0320282;-0.048202515 +1753;12;0.2816059;-0.04509007;-0.23772974;0.9285201 +1753;4;-12.857056;-7.0404053;-65.84625 +1753;6;0.5360842;-0.56996006;0.067395404 +1753;7;0.8763246;0.43003166;-0.21708982;0.0;-0.4783727;0.7238137;-0.4972456;0.0;-0.056698766 +1753;0;-0.6018219;5.3401184;8.354904 +1753;3;0.009567261;-0.035079956;-0.048202515 +1753;0;-0.5827179;5.35437;8.364441 +1753;1;-0.49692023;5.3651958;8.197796 +1753;2;0.04496771;-7.5626373E-4;-0.165699; +1754;3;0.008346558;-0.038146973;-0.05064392 +1755;0;-0.5922699;5.378128;8.378754 +1756;12;0.2816114;-0.045134537;-0.2378595;0.92848307 +1756;3;0.011413574;-0.039978027;-0.05064392 +1758;0;-0.5922699;5.387619;8.369217 +1759;3;0.011413574;-0.04058838;-0.05126953 +1760;1;-0.49673796;5.3654227;8.197659 +1760;4;-12.70752;-7.4905396;-63.746643 +1761;6;0.55714184;-0.5708273;0.07064988 +1761;7;0.86682075;0.4449294;-0.22507699;0.0;-0.49506927;0.71420103;-0.4947963;0.0;-0.0593992 +1762;0;-0.5827179;5.3923798;8.350128 +1769;12;0.28161618;-0.045190506;-0.2379992;0.92844313 +1769;3;0.012634277;-0.04119873;-0.053100586 +1769;0;-0.5779419;5.378128;8.38353 +1769;1;-0.49652043;5.365728;8.197472 +1769;3;0.013244629;-0.039978027;-0.052490234 +1769;0;-0.5683899;5.4066315;8.455063 +1769;12;0.28162375;-0.045250215;-0.23814143;0.92840147 +1769;3;0.013244629;-0.03630066;-0.050048828 +1769;0;-0.6018219;5.5396423;8.512299 +1769;1;-0.49638274;5.366094;8.19724 +1769;3;0.01751709;-0.01737976;-0.045150757 +1770;4;-13.456726;-6.440735;-66.89758 +1770;6;0.5377989;-0.5757849;0.07058283 +1770;7;0.8763701;0.42965484;-0.21765159;0.0;-0.47799203;0.7203637;-0.50259316;0.0;-0.059153277 +1770;0;-0.5110626;5.5063934;8.407364 +1771;3;0.02178955;0.015609741;-0.03477478 +1771;12;0.28163794;-0.045307115;-0.238281;0.92835855 +1772;0;-0.64482117;5.4303894;8.125992 +1772;1;-0.4974206;5.3667936;8.196719 +1772;2;0.052415133;-0.0780859;-0.16679478; +1772;3;0.024841309;0.037597656;-0.021942139 +1773;5;999.55426 +1774;0;-0.69737244;5.4018707;8.121216 +1775;12;0.28169;-0.045288865;-0.23836954;0.92832094 +1775;3;0.02545166;0.041870117;-0.014007568 +1777;0;-0.71170044;5.387619;8.140289 +1777;1;-0.49957094;5.3677654;8.195952 +1777;3;0.030349731;0.046157837;-0.006072998 +1779;4;-12.70752;-7.1914673;-64.19678 +1779;6;0.56814766;-0.58290684;0.08720763 +1779;7;0.8654927;0.44921774;-0.22164352;0.0;-0.49561578;0.7037079;-0.5090777;0.0;-0.07271444 +1780;0;-0.68782043;5.3733673;8.197525 +1780;3;0.032180786;0.052871704;-0.006072998 +1780;12;0.28177357;-0.045197126;-0.23838156;0.9282969 +1781;0;-0.6161499;5.4018707;8.202286 +1781;1;-0.5017629;5.368983;8.195021 +1782;3;0.03340149;0.057144165;-0.003616333 +1785;12;0.28187466;-0.045097567;-0.23835914;0.92827684 +1785;0;-0.63049316;5.4256287;8.2118225 +1785;3;0.035842896;0.05958557;-0.0011749268 +1786;1;-0.504192;5.3703523;8.1939745 +1786;0;-0.63526917;5.468399;8.273819 +1786;3;0.03401184;0.056533813;4.5776367E-5 +1791;4;-12.257385;-7.3410034;-66.29639 +1791;6;0.5269736;-0.5826681;0.0766303 +1791;7;0.88298196;0.41993684;-0.20975213;0.0;-0.4650341;0.72171605;-0.51270795;0.0;-0.06392351 +1791;0;-0.6257019;5.4731293;8.249985 +1791;3;0.02911377;0.047973633;-5.79834E-4 +1791;12;0.2819883;-0.04498283;-0.23832215;0.9282574 +1792;1;-0.50632316;5.371609;8.19302 +1792;0;-0.64004517;5.47789;8.311981 +1792;2;0.11547333;-0.072117805;-0.01130867; +1792;3;0.023620605;0.0357666;-0.0042419434 +1794;0;-0.5636139;5.487381;8.369217 +1794;12;0.2820902;-0.04488213;-0.23828466;0.92824095 +1794;3;0.018127441;0.023544312;-0.006072998 +1796;0;-0.5636139;5.4161377;8.354904 +1796;1;-0.5076487;5.3724017;8.192417 +1797;3;0.012634277;0.014389038;-0.007904053 +1798;13;109.803986 +1799;0;-0.59706116;5.378128;8.30722 +1800;3;0.0071258545;0.0070648193;-0.009735107 +1800;4;-12.857056;-6.590271;-63.597107 +1800;6;0.5496571;-0.5733735;0.07174918 +1800;7;0.8708249;0.43885127;-0.22152567;0.0;-0.4878906;0.7163357;-0.4988246;0.0;-0.060223043 +1800;12;0.28215387;-0.044822358;-0.23827451;0.92822707 +1801;0;-0.64482117;5.3401184;8.311981 +1801;1;-0.50836265;5.3727264;8.19216 +1801;3;-1.9836426E-4;-0.003326416;-0.010345459 +1805;12;0.28218263;-0.04479395;-0.2382871;0.92821646 +1805;0;-0.64004517;5.368622;8.278595 +1805;3;-0.009979248;-0.014312744;-0.012786865 +1805;0;-0.62094116;5.3163605;8.316757 +1807;1;-0.5083879;5.3724546;8.192337 +1807;3;-0.016693115;-0.024093628;-0.010955811 +1810;17;1;38dead6d7725;6979;1583;-65; +1811;17;1;38dead6d60ff;-2723;1660;-58; +1811;17;0;1c1bb5efa29a;0;0;0; +1812;17;1;1c1bb5ecd182;5892;4013;-64; +1812;4;-12.70752;-6.890869;-66.89758 +1812;6;0.5386421;-0.56750953;0.07452318 +1812;7;0.8765535;0.43255875;-0.21106182;0.0;-0.47719225;0.72384435;-0.4983343;0.0;-0.06278294 +1812;0;-0.60661316;5.2926025;8.321533 +1812;3;-0.023406982;-0.030807495;-0.012786865 +1812;12;0.28216547;-0.044799022;-0.23832053;0.9282129 +1812;1;-0.50766885;5.3715568;8.19297 +1812;2;0.061765313;-0.0049209595;-0.12530518; +1812;0;-0.5874939;5.2736053;8.35968 +1813;3;-0.03012085;-0.033859253;-0.01461792 +1813;5;999.55426 +1813;0;-0.5636139;5.278351;8.378754 +1813;12;0.28210264;-0.044837557;-0.23836866;0.92821777 +1813;3;-0.032562256;-0.034484863;-0.012786865 +1815;0;-0.5779419;5.2926025;8.407364 +1815;1;-0.5067155;5.3701997;8.193919 +1815;3;-0.033172607;-0.030807495;-0.011566162 +1817;4;-13.456726;-7.1914673;-64.497375 +1817;6;0.5733568;-0.56078076;0.06863437 +1817;7;0.85789263;0.4593728;-0.23021077;0.0;-0.51053643;0.71141756;-0.48294693;0.0;-0.058076717 +1818;0;-0.57315063;5.3068542;8.435989 +1818;3;-0.036239624;-0.027145386;-0.006072998 +1819;12;0.28201082;-0.044883415;-0.2384267;0.92822856 +1820;0;-0.5062866;5.297348;8.426437 +1820;1;-0.5058206;5.368719;8.194944 +1820;3;-0.036834717;-0.02104187;-0.004837036 +1822;0;-0.55882263;5.278351;8.431213 +1823;12;0.2819133;-0.044920187;-0.23847027;0.9282451 +1823;3;-0.035614014;-0.013702393;-5.79834E-4 +1825;0;-0.5110626;5.2355957;8.435989 +1825;1;-0.50522155;5.367174;8.195993 +1825;3;-0.032562256;-0.0051574707;0.0030975342 +1827;4;-13.006592;-5.090332;-65.24658 +1827;6;0.52014005;-0.5546276;0.060507283 +1827;7;0.88198876;0.42249948;-0.20878229;0.0;-0.46845847;0.7376711;-0.48619774;0.0;-0.05140566 +1827;0;-0.5397186;5.2450867;8.41214 +1827;3;-0.029510498;0.0015716553;0.004928589 +1828;12;0.28181732;-0.044934325;-0.23849265;0.92826784 +1829;0;-0.5349426;5.221344;8.421677 +1830;1;-0.50506324;5.365836;8.196878 +1830;2;0.0071309805;0.07933903;-0.212821; +1830;3;-0.028289795;0.009506226;0.006149292 +1832;0;-0.5349426;5.2260895;8.426437 +1832;12;0.28174025;-0.044920858;-0.23848917;0.9282929 +1832;3;-0.024017334;0.01499939;0.007980347 +1834;0;-0.5062866;5.2736053;8.450302 +1835;1;-0.5053676;5.364707;8.197599 +1835;3;-0.02218628;0.02293396;0.008590698 +1837;4;-12.107849;-7.4905396;-64.19678 +1837;6;0.53060865;-0.557128;0.0598419 +1837;7;0.8769582;0.42953077;-0.21551698;0.0;-0.47787803;0.7320696;-0.48549616;0.0;-0.050762124 +1837;0;-0.49195862;5.240341;8.445526 +1837;3;-0.016067505;0.02720642;0.0110321045 +1838;12;0.28168237;-0.04488229;-0.23846847;0.9283175 +1839;0;-0.48718262;5.2736053;8.397842 +1840;1;-0.50608546;5.3638687;8.198104 +1840;3;-0.012420654;0.033325195;0.0110321045 +1841;0;-0.48718262;5.2736053;8.435989 +1842;12;0.28164804;-0.04482166;-0.23843211;0.9283402 +1842;3;-0.007537842;0.03942871;0.011642456 +1844;0;-0.5158386;5.287857;8.41214 +1844;1;-0.50721484;5.3634043;8.1983385 +1844;3;-0.0038604736;0.044921875;0.010421753 +1846;4;-12.406921;-6.890869;-66.14685 +1846;6;0.517768;-0.56033754;0.061244052 +1846;7;0.88339704;0.41925335;-0.20937137;0.0;-0.46574858;0.7360462;-0.49123752;0.0;-0.051845927 +1846;0;-0.49671936;5.2926025;8.393066 +1847;3;0.0016326904;0.046157837;0.009811401 +1847;12;0.2816411;-0.04474176;-0.23838383;0.92835855 +1849;0;-0.49195862;5.3353577;8.407364 +1849;1;-0.50873;5.363305;8.198309 +1849;2;-0.040733993;0.07119131;-0.21400261; +1849;3;0.0059051514;0.047973633;0.008590698 +1850;5;999.55426 +1851;0;-0.5062866;5.311615;8.431213 +1851;12;0.28165975;-0.044646148;-0.23833098;0.9283711 +1852;3;0.010787964;0.04737854;0.010421753 +1853;0;-0.48239136;5.321106;8.397842 +1854;1;-0.51034355;5.3635736;8.198033 +1854;3;0.013244629;0.048599243;0.00920105 +1856;4;-11.657715;-6.890869;-63.746643 +1856;6;0.50232357;-0.564035;0.057379246 +1856;7;0.8897846;0.40688697;-0.20670359;0.0;-0.45380005;0.7407058;-0.49539906;0.0;-0.04846487 +1856;0;-0.49671936;5.302109;8.407364 +1857;3;0.015075684;0.045532227;0.007980347 +1857;12;0.28170064;-0.044551045;-0.2382769;0.9283772 +1859;1;-0.51195985;5.3640704;8.197607 +1860;0;-0.5062866;5.344864;8.421677 +1860;3;0.015075684;0.044921875;0.0055389404 +1861;12;0.28175464;-0.04445988;-0.23822473;0.9283786 +1861;0;-0.49671936;5.3496094;8.44075 +1862;3;0.015686035;0.041870117;0.0055389404 +1863;0;-0.49195862;5.330597;8.373978 +1863;1;-0.5135047;5.364617;8.197152 +1864;3;0.014465332;0.040649414;0.004928589 +1867;4;-12.107849;-7.7911377;-65.69672 +1867;6;0.5141926;-0.56609374;0.05868105 +1867;7;0.8846619;0.4151074;-0.21227105;0.0;-0.46359798;0.7348646;-0.49502614;0.0;-0.049498536 +1867;0;-0.46806335;5.3733673;8.426437 +1867;3;0.0138549805;0.0357666;0.004928589 +1867;12;0.28181;-0.04437633;-0.23818143;0.92837685 +1869;1;-0.51485527;5.365128;8.196733 +1870;0;-0.5062866;5.3733673;8.38829 +1870;3;0.010192871;0.032104492;0.0043182373 +1870;2;-0.05405116;0.010303974;-0.20561981; +1871;12;0.28186062;-0.044302944;-0.23814316;0.9283748 +1871;0;-0.48718262;5.3828583;8.393066 +1871;3;0.008346558;0.03086853;0.0043182373 +1874;1;-0.5159588;5.365443;8.196458 +1874;0;-0.49195862;5.3353577;8.402588 +1875;3;0.0059051514;0.027832031;0.0055389404 +1878;4;-11.056519;-7.4905396;-66.44745 +1878;6;0.47743866;-0.56495976;0.058481704 +1878;7;0.90103537;0.38810322;-0.19367813;0.0;-0.43092725;0.7501614;-0.5015571;0.0;-0.049366087 +1878;0;-0.48718262;5.3923798;8.407364 +1878;3;0.0046844482;0.02720642;0.0067596436 +1878;12;0.28189597;-0.044241346;-0.23811108;0.92837524 +1878;1;-0.51686424;5.3656187;8.196286 +1878;0;-0.5110626;5.3923798;8.397842 +1879;3;0.0016326904;0.023544312;0.007980347 +1881;0;-0.5015106;5.411377;8.38353 +1881;3;4.119873E-4;0.023544312;0.0110321045 +1881;12;0.28192127;-0.044187423;-0.23807825;0.9283786 +1883;1;-0.5175173;5.365639;8.196232 +1883;0;-0.46806335;5.3828583;8.41214 +1883;3;-0.003250122;0.024765015;0.010421753 +1886;4;-12.5564575;-7.3410034;-65.54718 +1886;6;0.51369554;-0.56853485;0.0555841 +1886;7;0.88428766;0.4140975;-0.21577452;0.0;-0.46458972;0.7339284;-0.4954851;0.0;-0.04681609 +1886;0;-0.46328735;5.378128;8.421677 +1886;12;0.28193316;-0.04414321;-0.23804085;0.9283866 +1886;3;-0.0050964355;0.025375366;0.012252808 +1888;1;-0.5181769;5.3654404;8.19632 +1888;0;-0.48718262;5.3638763;8.426437 +1888;2;-0.06460279;-0.030773163;-0.20079231; +1888;3;-0.0069122314;0.026611328;0.012863159 +1889;5;999.55426 +1890;0;-0.5253906;5.3496094;8.445526 +1890;12;0.28193358;-0.044092465;-0.23799932;0.92839956 +1890;3;-0.008132935;0.02720642;0.015304565 +1892;1;-0.51885927;5.365104;8.196496 +1892;0;-0.49195862;5.3496094;8.421677 +1892;3;-0.009979248;0.027832031;0.017150879 +1895;4;-12.406921;-7.7911377;-65.24658 +1895;6;0.5255803;-0.5651434;0.058349445 +1895;7;0.8792296;0.42370424;-0.21778414;0.0;-0.4738457;0.73053044;-0.49172688;0.0;-0.049248833 +1895;0;-0.5158386;5.3496094;8.435989 +1897;3;-0.013626099;0.029052734;0.018981934 +1897;12;0.2819272;-0.04403762;-0.23795079;0.92841655 +1897;0;-0.5158386;5.368622;8.431213 +1897;1;-0.51950717;5.364611;8.196778 +1897;3;-0.014846802;0.030273438;0.019592285 +1900;12;0.28191206;-0.043978855;-0.23789254;0.92843884 +1901;0;-0.5253906;5.3496094;8.426437 +1901;3;-0.012420654;0.032104492;0.022033691 +1902;1;-0.52018994;5.364055;8.197099 +1902;0;-0.5253906;5.3401184;8.421677 +1902;3;-0.011795044;0.033935547;0.023864746 +1904;4;-12.70752;-7.1914673;-64.497375 +1904;6;0.53894866;-0.5642327;0.06230477 +1904;7;0.8736726;0.43368226;-0.22048995;0.0;-0.483661;0.7252194;-0.49002934;0.0;-0.052613422 +1905;0;-0.49671936;5.3353577;8.41214 +1905;3;-0.012420654;0.0345459;0.028137207 +1905;12;0.28189385;-0.04391574;-0.23782726;0.92846406 +1907;1;-0.52085555;5.3635635;8.197378 +1907;0;-0.5158386;5.321106;8.41214 +1907;3;-0.011795044;0.033935547;0.028747559 +1907;2;-0.040443778;0.0020341873;-0.22017479; +1909;0;-0.5349426;5.302109;8.407364 +1909;12;0.28187966;-0.043848827;-0.23774748;0.92849195 +1909;3;-0.011199951;0.0345459;0.031188965 +1911;0;-0.5445099;5.3068542;8.393066 +1911;1;-0.52143776;5.3631005;8.197644 +1912;3;-0.010574341;0.032714844;0.031799316 +1918;4;-11.657715;-8.540344;-66.44745 +1918;6;0.52113813;-0.56287646;0.06478537 +1918;7;0.8826334;0.42105833;-0.20896924;0.0;-0.46686235;0.7334565;-0.49404562;0.0;-0.0547522 +1918;0;-0.5349426;5.311615;8.397842 +1918;3;-0.010574341;0.029052734;0.032409668 +1918;12;0.28186673;-0.04378494;-0.23765938;0.92852145 +1918;1;-0.5218329;5.362678;8.197895 +1918;0;-0.5445099;5.311615;8.431213 +1919;3;-0.011795044;0.028427124;0.032409668 +1919;0;-0.5206146;5.2926025;8.407364 +1919;12;0.2818531;-0.043730617;-0.23756874;0.9285514 +1919;3;-0.011795044;0.026611328;0.03425598 +1921;1;-0.5220434;5.362204;8.198192 +1921;0;-0.49671936;5.3068542;8.431213 +1921;3;-0.014251709;0.025985718;0.034866333 +1923;4;-11.207581;-8.691406;-65.54718 +1923;6;0.5067043;-0.5609975;0.05884632 +1923;7;0.8880202;0.4109141;-0.20632434;0.0;-0.45709985;0.7403327;-0.492917;0.0;-0.04979789 +1923;0;-0.49195862;5.3258667;8.397842 +1923;3;-0.015472412;0.025985718;0.034866333 +1924;12;0.2818349;-0.0436852;-0.23747735;0.92858243 +1927;0;-0.48239136;5.3163605;8.38353 +1927;2;-0.036949277;0.036611557;-0.19953632; +1927;1;-0.52214134;5.361632;8.198559 +1927;3;-0.013626099;0.022323608;0.035476685 +1927;5;999.5677 +1928;0;-0.47763062;5.321106;8.393066 +1928;12;0.2818092;-0.043643035;-0.23738371;0.92861605 +1928;3;-0.011199951;0.019882202;0.034866333 +1930;0;-0.47763062;5.3163605;8.364441 +1930;1;-0.522033;5.3611603;8.198874 +1930;3;-0.009979248;0.018051147;0.03363037 +1932;4;-11.207581;-8.390808;-65.54718 +1932;6;0.49522159;-0.5654422;0.05704057 +1932;7;0.8929483;0.4012584;-0.20404649;0.0;-0.44757813;0.7429142;-0.49774718;0.0;-0.04813619 +1934;12;0.28178644;-0.043613352;-0.2372924;0.9286478 +1934;0;-0.48239136;5.321106;8.38829 +1934;3;-0.010574341;0.016220093;0.03302002 +1935;0;-0.5110626;5.35437;8.369217 +1936;3;-0.007537842;0.013763428;0.031799316 +1936;1;-0.52182907;5.360778;8.199139 +1941;17;1;38dead6d7725;7203;678;-65; +1942;17;1;38dead6d60ff;-2817;2021;-59; +1942;17;0;1c1bb5efa29a;0;0;0; +1943;17;1;1c1bb5ecd182;4917;3264;-64; +1943;12;0.28176743;-0.043592304;-0.23720771;0.9286762 +1943;1;-0.5215372;5.3605437;8.199309 +1943;0;-0.47763062;5.35437;8.373978 +1944;3;-0.0050964355;0.013168335;0.02935791 +1944;0;-0.47283936;5.344864;8.41214 +1944;3;-0.004470825;0.0113220215;0.027526855 +1944;4;-12.5564575;-7.0404053;-65.84625 +1944;6;0.5118358;-0.5653116;0.05615008 +1944;7;0.8851968;0.41357973;-0.21302205;0.0;-0.46279675;0.7362064;-0.49378064;0.0;-0.047389437 +1944;0;-0.45851135;5.3258667;8.38353 +1944;3;-0.002029419;0.010726929;0.026306152 +1944;12;0.28175426;-0.043580472;-0.23713103;0.9287003 +1944;0;-0.45373535;5.35437;8.38829 +1944;1;-0.52123123;5.360419;8.199411 +1945;2;-0.07853538;0.0082941055;-0.17677212; +1945;3;-0.002029419;0.010726929;0.026306152 +1947;0;-0.44895935;5.35437;8.378754 +1947;12;0.28174752;-0.043573953;-0.23706362;0.9287199 +1947;3;4.119873E-4;0.010726929;0.023864746 +1949;0;-0.40119934;5.3591156;8.41214 +1949;3;0.002243042;0.0113220215;0.023254395 +1950;1;-0.5209399;5.36039;8.199448 +1952;4;-11.657715;-7.4905396;-65.24658 +1952;6;0.47951236;-0.5667166;0.047656786 +1952;7;0.89801186;0.3892235;-0.20513351;0.0;-0.43813163;0.74851936;-0.49775442;0.0;-0.0401913 +1952;0;-0.4202881;5.344864;8.364441 +1952;3;0.002243042;0.0113220215;0.023864746 +1952;12;0.2817458;-0.043569483;-0.23699982;0.92873687 +1954;0;-0.40119934;5.3733673;8.393066 +1954;1;-0.52070177;5.360484;8.199402 +1954;3;-8.087158E-4;0.011947632;0.024475098 +1956;0;-0.41552734;5.3828583;8.364441 +1957;12;0.28175217;-0.043564692;-0.23693864;0.92875075 +1957;3;-0.002029419;0.013763428;0.024475098 +1960;0;-0.41073608;5.378128;8.35968 +1960;1;-0.5205025;5.3604527;8.199435 +1960;3;-0.0038604736;0.012542725;0.022644043 +1961;4;-12.107849;-7.4905396;-65.69672 +1961;6;0.4880977;-0.57113165;0.04909351 +1961;7;0.8946029;0.39451998;-0.20985653;0.0;-0.4449509;0.7430495;-0.49989626;0.0;-0.04128528 +1961;0;-0.42507935;5.35437;8.33107 +1962;3;-0.0069122314;0.0113220215;0.023254395 +1962;12;0.2817515;-0.043554727;-0.23687485;0.92876774 +1964;0;-0.4202881;5.4018707;8.311981 +1964;2;-0.13632017;-0.02375555;-0.15704632; +1964;1;-0.5203132;5.3602715;8.199566 +1964;3;-0.010574341;0.0070648193;0.022644043 +1965;5;999.5677 +1966;0;-0.42507935;5.3733673;8.302444 +1966;12;0.28174296;-0.043543667;-0.23681541;0.928786 +1967;3;-0.014251709;0.002166748;0.023254395 +1968;0;-0.43940735;5.35437;8.254761 +1969;1;-0.5198412;5.3598185;8.199892 +1969;3;-0.017913818;-0.003326416;0.022644043 +1971;4;-12.107849;-6.440735;-64.94751 +1971;6;0.48488396;-0.574773;0.05318059 +1971;7;0.8969477;0.39120984;-0.20600922;0.0;-0.43988007;0.742567;-0.505074;0.0;-0.044614267 +1971;0;-0.41073608;5.3923798;8.297668 +1972;3;-0.024627686;-0.011871338;0.022033691 +1972;12;0.28171462;-0.043544803;-0.23676127;0.9288083 +1973;0;-0.45373535;5.3591156;8.311981 +1974;1;-0.51890755;5.359015;8.200476 +1974;3;-0.030731201;-0.019821167;0.018371582 +1976;0;-0.44418335;5.330597;8.283371 +1976;12;0.281659;-0.04356665;-0.23671842;0.92883515 +1976;3;-0.03805542;-0.028366089;0.017150879 +1979;0;-0.41552734;5.387619;8.283371 +1979;1;-0.51744336;5.3576846;8.201438 +1979;3;-0.045394897;-0.035705566;0.018371582 +1980;4;-11.956787;-7.0404053;-65.097046 +1981;6;0.480223;-0.5760919;0.050122023 +1981;7;0.89838666;0.38741297;-0.20691207;0.0;-0.43719125;0.7437458;-0.5056738;0.0;-0.042014632 +1981;0;-0.45373535;5.4018707;8.316757 +1981;3;-0.052719116;-0.042419434;0.015930176 +1981;12;0.28156653;-0.04361544;-0.23669796;0.9288661 +1983;0;-0.4298401;5.3638763;8.292908 +1983;1;-0.51541543;5.3557825;8.202807 +1983;2;-0.115464926;-0.029932499;-0.082325935; +1983;3;-0.06188965;-0.050354004;0.014083862 +1985;0;-0.41552734;5.4161377;8.278595 +1986;3;-0.06738281;-0.05708313;0.012252808 +1986;12;0.28143308;-0.043689158;-0.23669034;0.9289049 +1987;0;-0.39640808;5.3971252;8.335815 +1988;1;-0.51289016;5.3532705;8.204605 +1988;3;-0.072891235;-0.061965942;0.010421753 +1990;4;-12.406921;-7.4905396;-65.69672 +1990;6;0.49082908;-0.574074;0.047519006 +1990;7;0.8931058;0.3957966;-0.21379186;0.0;-0.44807476;0.7405631;-0.5007947;0.0;-0.039886486 +1990;0;-0.37252808;5.387619;8.350128 +1991;12;0.281256;-0.043785002;-0.23670286;0.92895085 +1991;3;-0.07777405;-0.063797;0.00920105 +1992;0;-0.40119934;5.3923798;8.364441 +1992;1;-0.51006097;5.3502884;8.206727 +1993;3;-0.080825806;-0.06440735;0.0067596436 +1995;0;-0.37728882;5.4066315;8.38353 +1995;12;0.28104874;-0.043893304;-0.2367304;0.9290015 +1995;3;-0.08204651;-0.063186646;0.006149292 +1997;0;-0.36775208;5.3496094;8.397842 +1997;1;-0.50729084;5.3470635;8.209 +1998;3;-0.08509827;-0.06074524;0.0043182373 +1999;4;-10.456848;-6.890869;-63.746643 +1999;6;0.4397309;-0.56676364;0.043763295 +2000;7;0.9139992;0.3591355;-0.18875198;0.0;-0.40403387;0.7633842;-0.5039855;0.0;-0.036908817 +2000;0;-0.37252808;5.378128;8.416901 +2000;3;-0.084487915;-0.05769348;0.0055389404 +2001;12;0.2808275;-0.043997455;-0.23676643;0.9290543 +2002;0;-0.40596008;5.3638763;8.431213 +2002;2;-0.1504212;-0.05798149;-0.1507492; +2002;1;-0.50475097;5.34369;8.211353 +2003;3;-0.084487915;-0.054641724;0.006149292 +2003;5;999.5677 +2004;0;-0.37728882;5.4161377;8.445526 +2005;12;0.28060198;-0.04408785;-0.2368033;0.92910874 +2005;3;-0.08387756;-0.0491333;0.0055389404 +2007;0;-0.36297607;5.35437;8.435989 +2008;1;-0.5024634;5.3403463;8.213669 +2008;3;-0.08326721;-0.042419434;0.0055389404 +2010;4;-10.906982;-7.3410034;-66.29639 +2010;6;0.44238946;-0.5651299;0.043000564 +2010;7;0.91275114;0.3615387;-0.19019765;0.0;-0.40689978;0.76321834;-0.50192666;0.0;-0.036303606 +2010;0;-0.37252808;5.3828583;8.426437 +2011;3;-0.08509827;-0.03630066;0.007980347 +2011;12;0.28038135;-0.04416343;-0.23683274;0.9291643 +2012;0;-0.40596008;5.378128;8.426437 +2013;3;-0.08265686;-0.034484863;0.00920105 +2013;1;-0.5006592;5.3370066;8.215949 +2014;0;-0.43463135;5.3401184;8.397842 +2015;12;0.28016832;-0.04421009;-0.23685241;0.9292212 +2015;3;-0.080825806;-0.033859253;0.009811401 +2017;0;-0.4202881;5.321106;8.450302 +2017;1;-0.4990163;5.3337474;8.218164 +2018;3;-0.0796051;-0.031417847;0.0110321045 +2021;4;-12.257385;-6.2911987;-65.097046 +2021;6;0.49072322;-0.5614109;0.049695507 +2021;7;0.89336646;0.39892715;-0.20676926;0.0;-0.44735688;0.7466107;-0.49238634;0.0;-0.04205017 +2021;0;-0.43463135;5.3163605;8.46936 +2021;3;-0.0771637;-0.02897644;0.013473511 +2021;12;0.27996168;-0.044247754;-0.23686254;0.92927927 +2021;0;-0.40596008;5.297348;8.564758 +2024;1;-0.49745408;5.3305893;8.220308 +2024;2;-0.13016027;-0.035258293;-0.22419357; +2024;3;-0.0783844;-0.023483276;0.014709473 +2024;12;0.279762;-0.04428083;-0.23686336;0.9293375 +2024;0;-0.38685608;5.3068542;8.569519 +2025;3;-0.076553345;-0.020431519;0.014709473 +2028;0;-0.40596008;5.3258667;8.550446 +2028;1;-0.496137;5.327465;8.222413 +2028;3;-0.07470703;-0.012481689;0.016540527 +2029;4;-11.506653;-5.6915283;-64.64691 +2029;6;0.46540052;-0.55656534;0.047442608 +2029;7;0.90387976;0.38104832;-0.1944312;0.0;-0.42588717;0.7587686;-0.49283907;0.0;-0.040267203 +2030;0;-0.39640808;5.3163605;8.569519 +2030;3;-0.071640015;-0.006378174;0.014724731 +2030;12;0.27956963;-0.044297665;-0.23685288;0.9293973 +2031;1;-0.49529633;5.3245263;8.224367 +2032;0;-0.41552734;5.3638763;8.54567 +2032;3;-0.067977905;-0.0027160645;0.015319824 +2034;12;0.279395;-0.044289194;-0.2368318;0.9294556 +2034;0;-0.43463135;5.330597;8.54567 +2034;3;-0.06248474;0.002166748;0.014724731 +2036;1;-0.4948506;5.3218856;8.226103 +2036;0;-0.4298401;5.2926025;8.564758 +2036;3;-0.056381226;0.007659912;0.014724731 +2040;4;-11.207581;-7.3410034;-66.29639 +2040;6;0.47491646;-0.5529521;0.050144993 +2040;7;0.9002506;0.3891216;-0.19527721;0.0;-0.4332775;0.7568008;-0.48941088;0.0;-0.04265439 +2040;0;-0.4202881;5.2736053;8.555222 +2040;12;0.27924144;-0.044263937;-0.2368053;0.9295097 +2040;3;-0.049041748;0.009506226;0.0134887695 +2041;1;-0.49477357;5.319729;8.227503 +2041;0;-0.4298401;5.3068542;8.550446 +2041;2;-0.11452252;-0.00955677;-0.32157135; +2042;3;-0.04171753;0.013168335;0.012878418 +2042;5;999.5677 +2043;0;-0.41073608;5.287857;8.555222 +2044;12;0.27912146;-0.04422573;-0.23677348;0.92955565 +2044;3;-0.03744507;0.016830444;0.012878418 +2045;0;-0.4298401;5.2688446;8.593384 +2047;1;-0.49497882;5.3180647;8.228566 +2047;3;-0.030715942;0.019882202;0.011047363 +2048;4;-12.257385;-7.0404053;-66.29639 +2048;6;0.5032244;-0.54946005;0.049978234 +2048;7;0.88751984;0.41126832;-0.2077665;0.0;-0.45879567;0.74708605;-0.48100832;0.0;-0.04260403 +2049;0;-0.44418335;5.287857;8.598129 +2049;12;0.2790329;-0.04417878;-0.23673871;0.9295933 +2049;3;-0.025222778;0.023544312;0.00982666 +2050;0;-0.46328735;5.2830963;8.602905 +2050;1;-0.49553078;5.3168583;8.229312 +2050;3;-0.020339966;0.025375366;0.009216309 +2053;12;0.27897537;-0.044121597;-0.23670408;0.9296222 +2053;0;-0.45373535;5.297348;8.574295 +2053;3;-0.015457153;0.02720642;0.0079956055 +2055;0;-0.43940735;5.2926025;8.602905 +2056;1;-0.4963045;5.3160524;8.229786 +2056;3;-0.0068969727;0.027832031;0.006164551 +2057;4;-12.70752;-7.4905396;-66.14685 +2057;6;0.5230492;-0.55094784;0.051032275 +2057;7;0.8785113;0.42560875;-0.21696784;0.0;-0.47574037;0.7381125;-0.4783942;0.0;-0.043462094 +2057;0;-0.43463135;5.302109;8.598129 +2058;3;-0.0014038086;0.029647827;0.0067749023 +2058;12;0.27894285;-0.04405945;-0.23666918;0.92964375 +2060;1;-0.49722356;5.3157787;8.229908 +2060;2;-0.09200841;0.012998104;-0.35581684; +2060;0;-0.44418335;5.287857;8.617218 +2061;3;0.0016479492;0.029052734;0.005554199 +2067;0;-0.45851135;5.3068542;8.598129 +2067;12;0.27894258;-0.04399775;-0.23663604;0.9296551 +2067;3;0.0071411133;0.03086853;0.005554199 +2067;1;-0.4982224;5.315849;8.229802 +2067;0;-0.44895935;5.311615;8.598129 +2067;3;0.011428833;0.0345459;0.005554199 +2068;17;1;38dead6d7725;7152;978;-65; +2069;17;1;38dead6d60ff;-3692;2512;-59; +2070;17;1;1c1bb5efa29a;11101;1220;-77; +2071;17;1;1c1bb5ecd182;9307;912;-64; +2071;4;-11.357117;-8.09021;-65.24658 +2071;6;0.4995947;-0.5527705;0.052168556 +2071;7;0.8896988;0.40772346;-0.20542043;0.0;-0.45438582;0.7470523;-0.4852282;0.0;-0.044379123 +2071;0;-0.41552734;5.278351;8.626755 +2071;3;0.013259888;0.036987305;0.0067749023 +2071;12;0.2789618;-0.043938164;-0.23660304;0.92966056 +2071;1;-0.49940327;5.3162208;8.229489 +2071;0;-0.40119934;5.297348;8.588608 +2071;3;0.015090942;0.03942871;0.0079956055 +2072;0;-0.44418335;5.321106;8.598129 +2072;12;0.27900258;-0.04387111;-0.23656388;0.9296616 +2072;3;0.0181427;0.038208008;0.0067749023 +2074;0;-0.40119934;5.2926025;8.588608 +2074;1;-0.5006816;5.3167763;8.229053 +2074;3;0.021194458;0.03881836;0.008605957 +2076;4;-13.157654;-5.9906006;-66.29639 +2076;6;0.50614804;-0.5517851;0.04667903 +2076;7;0.8855246;0.412861;-0.21305402;0.0;-0.4628901;0.7448165;-0.48060513;0.0;-0.03973697 +2076;0;-0.41073608;5.311615;8.564758 +2076;3;0.023025513;0.038208008;0.00982666 +2077;12;0.27905434;-0.04380107;-0.23651928;0.92966056 +2080;0;-0.4202881;5.3353577;8.574295 +2080;1;-0.5018962;5.3175683;8.228468 +2080;2;-0.11176658;-0.003255844;-0.35690308; +2080;3;0.02607727;0.038208008;0.008605957 +2081;5;999.57196 +2081;0;-0.41073608;5.297348;8.564758 +2081;12;0.2791186;-0.043735903;-0.23647031;0.9296569 +2082;3;0.027313232;0.037597656;0.009216309 +2084;0;-0.41073608;5.330597;8.598129 +2085;3;0.026687622;0.036987305;0.00982666 +2085;1;-0.5030892;5.3185315;8.227772 +2086;4;-13.90686;-6.590271;-66.29639 +2086;6;0.53293663;-0.554465;0.04773411 +2086;7;0.87310123;0.4319477;-0.22608697;0.0;-0.48584816;0.73227787;-0.47720072;0.0;-0.040567283 +2086;0;-0.4202881;5.3353577;8.550446 +2087;3;0.02607727;0.037597656;0.010437012 +2087;12;0.27919298;-0.043674663;-0.23642194;0.92964965 +2088;0;-0.40596008;5.3258667;8.512299 +2089;3;0.026687622;0.03515625;0.011047363 +2090;1;-0.5042291;5.319507;8.227072 +2091;0;-0.42507935;5.344864;8.521835 +2091;12;0.27926725;-0.04361561;-0.23637114;0.92964303 +2092;3;0.027313232;0.033325195;0.00982666 +2093;0;-0.39163208;5.35437;8.54567 +2093;1;-0.50523585;5.320516;8.2263565 +2093;3;0.027313232;0.030273438;0.00982666 +2095;4;-12.406921;-6.1401367;-64.19678 +2095;6;0.4933194;-0.5592481;0.045796093 +2095;7;0.8913442;0.40140843;-0.21065763;0.0;-0.45166305;0.74658483;-0.4884787;0.0;-0.038805686 +2096;0;-0.38208008;5.3638763;8.517059 +2096;3;0.024856567;0.029647827;0.010437012 +2096;12;0.27934128;-0.043565016;-0.23632133;0.92963594 +2098;0;-0.38685608;5.3591156;8.517059 +2098;1;-0.50606483;5.3214993;8.225671 +2098;2;-0.13705301;-0.031106949;-0.3086319; +2099;3;0.023025513;0.029052734;0.008605957 +2101;0;-0.40119934;5.368622;8.507523 +2101;12;0.27941132;-0.04352309;-0.2362751;0.9296285 +2101;3;0.02180481;0.026611328;0.00982666 +2102;0;-0.3534088;5.3591156;8.502762 +2103;1;-0.50682807;5.3223395;8.22508 +2103;3;0.024856567;0.023544312;0.008605957 +2105;4;-12.70752;-6.1401367;-65.69672 +2105;6;0.48176378;-0.56199753;0.04154009 +2105;7;0.8956681;0.39207727;-0.20989066;0.0;-0.44333264;0.749878;-0.49105933;0.0;-0.0351408 +2105;0;-0.35820007;5.35437;8.521835 +2105;3;0.022415161;0.019882202;0.008605957 +2106;12;0.27947155;-0.043484468;-0.23623241;0.929623 +2107;0;-0.36297607;5.368622;8.46936 +2107;1;-0.50735676;5.3232327;8.224469 +2108;3;0.022415161;0.018051147;0.008605957 +2110;0;-0.37252808;5.3733673;8.49321 +2110;12;0.2795325;-0.0434594;-0.23619488;0.9296155 +2110;3;0.020584106;0.01499939;0.008605957 +2112;0;-0.38208008;5.3733673;8.455063 +2112;1;-0.50768906;5.3240485;8.223921 +2113;3;0.02180481;0.013168335;0.008605957 +2115;4;-13.757324;-6.890869;-65.24658 +2115;6;0.52541643;-0.56566733;0.04515878 +2115;7;0.87636924;0.4234438;-0.22950462;0.0;-0.48012966;0.7303571;-0.48585388;0.0;-0.03811149 +2115;0;-0.35820007;5.344864;8.450302 +2115;3;0.017532349;0.010101318;0.0067749023 +2115;12;0.27958545;-0.043444794;-0.23616122;0.9296087 +2117;1;-0.5078367;5.324775;8.223441 +2118;0;-0.3534088;5.344864;8.49321 +2118;2;-0.17553729;-0.049616814;-0.25676632; +2118;3;0.015701294;0.007659912;0.0049438477 +2120;0;-0.36775208;5.3496094;8.483673 +2120;12;0.27963063;-0.04343954;-0.23613311;0.9296026 +2120;3;0.013870239;0.009506226;0.006164551 +2121;5;999.57196 +2122;0;-0.3390808;5.3591156;8.49321 +2122;3;0.010803223;0.0070648193;0.004333496 +2122;1;-0.5079168;5.3253045;8.223093 +2124;4;-12.107849;-6.440735;-65.69672 +2124;6;0.46546903;-0.5625346;0.03990256 +2124;7;0.90244925;0.37967816;-0.20354328;0.0;-0.42947254;0.7559111;-0.4941172;0.0;-0.03374486 +2124;0;-0.3534088;5.3353577;8.459839 +2124;3;0.008361816;0.005844116;0.0037231445 +2125;12;0.27966347;-0.043437388;-0.23611206;0.9295982 +2126;0;-0.35820007;5.3496094;8.46936 +2127;1;-0.50795305;5.3256254;8.222883 +2127;3;0.0071411133;0.0033874512;0.0037231445 +2129;0;-0.36775208;5.3638763;8.421677 +2130;12;0.2796846;-0.043435663;-0.2360965;0.92959577 +2130;3;0.008361816;9.460449E-4;0.004333496 +2131;0;-0.36297607;5.3401184;8.455063 +2131;1;-0.50782764;5.3258867;8.222722 +2132;3;0.008361816;-0.0027160645;0.0025024414 +2134;4;-12.107849;-6.440735;-65.69672 +2134;6;0.47080815;-0.5629073;0.042903684 +2134;7;0.9007643;0.3836184;-0.20361903;0.0;-0.43279102;0.75369596;-0.49460524;0.0;-0.036272824 +2134;0;-0.32476807;5.344864;8.445526 +2135;3;0.008987427;-0.003326416;0.0025024414 +2135;12;0.27969858;-0.043442983;-0.2360839;0.92959446 +2136;0;-0.3390808;5.3258667;8.459839 +2136;1;-0.50751275;5.326168;8.222558 +2137;2;-0.1916638;-0.033176422;-0.23214531; +2137;3;0.0095825195;-0.002090454;0.0012817383 +2140;0;-0.3152008;5.321106;8.478897 +2140;12;0.27971083;-0.04346171;-0.236078;0.9295914 +2141;3;0.010803223;-0.0027160645;0.0025024414 +2141;0;-0.34864807;5.311615;8.459839 +2142;3;0.010803223;-0.0027160645;0.0025024414 +2142;1;-0.5072379;5.3264933;8.222365 +2146;17;1;38dead6d7725;7937;501;-67; +2147;17;1;38dead6d60ff;-2645;1625;-57; +2147;17;0;1c1bb5efa29a;0;0;0; +2148;17;1;1c1bb5ecd182;8729;1520;-64; +2149;12;0.27972674;-0.043478943;-0.23607287;0.9295871 +2149;1;-0.5069378;5.3268476;8.222155 +2149;4;-11.657715;-5.8410645;-65.24658 +2149;6;0.4531086;-0.560273;0.041188836 +2149;7;0.9079073;0.37083307;-0.19541536;0.0;-0.41771713;0.7616287;-0.49541306;0.0;-0.03488161 +2149;0;-0.3343048;5.321106;8.474136 +2149;3;0.010803223;-0.003326416;0.0018920898 +2149;0;-0.34864807;5.330597;8.459839 +2149;3;0.013259888;-0.003326416;6.713867E-4 +2149;0;-0.35820007;5.321106;8.450302 +2149;12;0.2797442;-0.043497834;-0.23606765;0.9295823 +2149;3;0.016311646;-0.003326416;-0.001159668 +2151;0;-0.37728882;5.3163605;8.402588 +2151;1;-0.5067073;5.327361;8.221836 +2151;3;0.015090942;-0.002090454;-0.0036010742 +2153;4;-11.657715;-5.8410645;-65.24658 +2153;6;0.45737094;-0.563666;0.044871364 +2153;7;0.90689665;0.37327757;-0.19545361;0.0;-0.41964337;0.7584189;-0.49869817;0.0;-0.03791713 +2154;0;-0.34864807;5.2926025;8.46936 +2154;12;0.27977043;-0.043517597;-0.23606779;0.9295735 +2154;3;0.016921997;-2.746582E-4;-0.0036010742 +2155;0;-0.39640808;5.302109;8.478897 +2155;1;-0.50664973;5.3278885;8.221498 +2156;2;-0.18932933;2.6798248E-4;-0.23160839; +2156;3;0.018753052;3.5095215E-4;-0.0054473877 +2157;5;999.57196 +2158;0;-0.38208008;5.321106;8.459839 +2159;3;0.021194458;9.460449E-4;-0.0060577393 +2159;12;0.27980068;-0.043530088;-0.2360741;0.9295621 +2161;1;-0.5067202;5.3285704;8.221051 +2163;0;-0.36775208;5.2926025;8.488449 +2164;3;0.023025513;0.0027923584;-0.006668091 +2164;4;-12.257385;-7.3410034;-64.34631 +2164;6;0.50054526;-0.55710363;0.043296747 +2164;7;0.88748145;0.4073377;-0.21552858;0.0;-0.45937657;0.7446613;-0.484203;0.0;-0.036738366 +2164;0;-0.38685608;5.2736053;8.431213 +2164;3;0.023025513;0.0046081543;-0.0060577393 +2164;12;0.27984023;-0.04353954;-0.23608357;0.92954737 +2166;0;-0.37728882;5.3068542;8.44075 +2167;3;0.023025513;0.0052337646;-0.006668091 +2167;1;-0.50693244;5.329374;8.220517 +2169;0;-0.35820007;5.2736053;8.455063 +2169;12;0.2798887;-0.043543935;-0.23609191;0.92953056 +2169;3;0.023635864;0.007659912;-0.006668091 +2171;1;-0.50724703;5.330186;8.219972 +2171;0;-0.36775208;5.2926025;8.407364 +2171;3;0.025466919;0.008880615;-0.0072784424 +2172;4;-12.257385;-7.3410034;-64.34631 +2172;6;0.4975385;-0.5614121;0.043713797 +2173;7;0.88902414;0.4040059;-0.21544233;0.0;-0.45636356;0.74387395;-0.48824555;0.0;-0.03699212 +2173;0;-0.37252808;5.278351;8.426437 +2173;3;0.026687622;0.009506226;-0.007888794 +2175;12;0.27993977;-0.043542136;-0.23609897;0.92951334 +2175;1;-0.5076975;5.331107;8.219346 +2176;0;-0.36775208;5.297348;8.421677 +2176;2;-0.17153227;0.026323795;-0.21606636; +2176;3;0.027313232;0.009506226;-0.007888794 +2177;0;-0.39163208;5.321106;8.416901 +2178;12;0.27999938;-0.04353502;-0.236106;0.92949396 +2178;3;0.027313232;0.008285522;-0.007888794 +2181;1;-0.50815856;5.332092;8.218678 +2181;0;-0.37728882;5.2593536;8.378754 +2181;3;0.02607727;0.006439209;-0.009109497 +2182;4;-11.506653;-5.9906006;-64.34631 +2182;6;0.46336338;-0.5600834;0.04499883 +2182;7;0.9043301;0.37866879;-0.19696957;0.0;-0.42512897;0.75787604;-0.49486285;0.0;-0.03811063 +2182;0;-0.37728882;5.2593536;8.426437 +2183;12;0.2800608;-0.043528736;-0.23611379;0.9294738 +2183;3;0.024246216;0.007659912;-0.009109497 +2184;1;-0.50856835;5.3329797;8.218078 +2185;0;-0.37728882;5.330597;8.397842 +2185;3;0.02607727;0.005844116;-0.011550903 +2187;0;-0.41552734;5.321106;8.397842 +2187;12;0.2801182;-0.043524515;-0.23612583;0.9294537 +2188;3;0.023635864;0.0033874512;-0.011550903 +2190;0;-0.38208008;5.3353577;8.38829 +2190;1;-0.50895953;5.333871;8.217475 +2190;3;0.02180481;0.002166748;-0.01399231 +2192;4;-11.506653;-5.9906006;-64.34631 +2192;6;0.45965493;-0.5660355;0.045517758 +2192;7;0.90610325;0.37444615;-0.19689353;0.0;-0.42130986;0.75642776;-0.5003149;0.0;-0.038405254 +2192;0;-0.42507935;5.302109;8.407364 +2192;12;0.28017357;-0.043523625;-0.23614508;0.92943215 +2194;3;0.019973755;-8.69751E-4;-0.015213013 +2194;0;-0.40596008;5.321106;8.369217 +2195;3;0.021194458;-0.002090454;-0.016433716 +2195;2;-0.15186357;0.015769005;-0.17506027; +2195;1;-0.50928503;5.334591;8.216988 +2196;5;999.57196 +2197;0;-0.38208008;5.3163605;8.369217 +2197;3;0.021194458;-0.0039367676;-0.017669678 +2197;12;0.28021863;-0.04352771;-0.23617405;0.929411 +2199;1;-0.5095071;5.3353295;8.216494 +2199;0;-0.39163208;5.3496094;8.393066 +2199;3;0.019973755;-0.0057678223;-0.020111084 +2202;4;-11.657715;-7.7911377;-64.94751 +2202;6;0.48296958;-0.56696266;0.04662756 +2202;7;0.89628285;0.3917476;-0.20787202;0.0;-0.44173643;0.74705225;-0.49677145;0.0;-0.039317783 +2202;0;-0.35820007;5.302109;8.407364 +2202;3;0.017532349;-0.007598877;-0.021331787 +2203;12;0.280262;-0.0435391;-0.23621067;0.92938805 +2204;0;-0.39640808;5.3401184;8.354904 +2204;3;0.016311646;-0.0082092285;-0.02192688 +2204;1;-0.509672;5.335957;8.216076 +2207;12;0.2802991;-0.043554194;-0.23625839;0.929364 +2207;0;-0.39640808;5.3163605;8.373978 +2207;3;0.015701294;-0.009429932;-0.02255249 +2209;13;100.224 +2210;1;-0.50979656;5.3364735;8.215734 +2210;0;-0.37252808;5.321106;8.369217 +2210;3;0.015090942;-0.00881958;-0.02192688 +2211;4;-11.357117;-6.1401367;-65.24658 +2211;6;0.45000124;-0.56587636;0.044482343 +2211;7;0.9099262;0.36716363;-0.19293842;0.0;-0.4130683;0.7600841;-0.501644;0.0;-0.03753601 +2211;0;-0.34864807;5.330597;8.373978 +2211;3;0.013259888;-0.009429932;-0.023773193 +2212;12;0.28032854;-0.043572694;-0.23631084;0.92934096 +2219;0;-0.35820007;5.311615;8.393066 +2219;2;-0.17124164;0.0010352135;-0.15823936; +2219;1;-0.50990134;5.336914;8.21544 +2219;3;0.013259888;-0.0069885254;-0.02619934 +2219;0;-0.37252808;5.3353577;8.421677 +2219;12;0.28035304;-0.043590125;-0.23636517;0.9293189 +2219;3;0.013870239;-0.0082092285;-0.02619934 +2219;0;-0.37252808;5.35437;8.445526 +2219;3;0.013259888;-0.004547119;-0.028640747 +2219;1;-0.5101646;5.3373184;8.215161 +2223;4;-12.5564575;-7.3410034;-65.097046 +2223;6;0.49870288;-0.5645977;0.044080943 +2223;7;0.8886281;0.40405855;-0.21697167;0.0;-0.457115;0.74190986;-0.49052575;0.0;-0.037227694 +2223;0;-0.38208008;5.321106;8.431213 +2223;3;0.012649536;-0.0027160645;-0.028640747 +2223;12;0.2803773;-0.04360117;-0.23642614;0.9292956 +2223;1;-0.51065373;5.3376846;8.214893 +2223;0;-0.38208008;5.321106;8.402588 +2223;3;0.0095825195;3.5095215E-4;-0.02986145 +2225;0;-0.40119934;5.3068542;8.421677 +2226;3;0.010803223;0.002166748;-0.02986145 +2226;12;0.28040257;-0.04360081;-0.2364901;0.9292717 +2227;0;-0.39640808;5.321106;8.416901 +2227;1;-0.51137763;5.3379335;8.214686 +2228;3;0.012023926;0.002166748;-0.03048706 +2230;4;-11.056519;-7.1914673;-66.89758 +2230;6;0.45076066;-0.5632549;0.047061905 +2230;7;0.91006243;0.36835182;-0.19000855;0.0;-0.412558;0.76106757;-0.5005717;0.0;-0.039777175 +2230;0;-0.40119934;5.3163605;8.416901 +2230;3;0.0095825195;0.0052337646;-0.031082153 +2231;12;0.28042468;-0.04358699;-0.23655383;0.9292494 +2232;0;-0.39640808;5.321106;8.41214 +2232;1;-0.5122209;5.3382077;8.214456 +2233;3;0.0077667236;0.007659912;-0.03048706 +2234;2;-0.16128021;0.0013599396;-0.20111465; +2234;5;999.5871 +2235;12;0.2804499;-0.043567196;-0.23661801;0.9292264 +2235;0;-0.4202881;5.3163605;8.397842 +2236;3;0.01020813;0.010101318;-0.031707764 +2241;0;-0.4298401;5.344864;8.407364 +2241;1;-0.51329446;5.3384194;8.214251 +2241;3;0.01020813;0.011947632;-0.031707764 +2241;4;-11.506653;-6.2911987;-67.04712 +2241;6;0.45789275;-0.5656916;0.051082145 +2241;7;0.9079142;0.3731941;-0.19083433;0.0;-0.41693342;0.75725174;-0.50272864;0.0;-0.043105718 +2241;0;-0.40596008;5.3258667;8.402588 +2241;3;0.011428833;0.010101318;-0.031082153 +2241;12;0.28047457;-0.043534383;-0.23667936;0.9292049 +2242;1;-0.51446044;5.3386974;8.213997 +2242;0;-0.44418335;5.3068542;8.378754 +2243;3;0.008361816;0.0113220215;-0.031707764 +2244;0;-0.4298401;5.3163605;8.421677 +2244;12;0.2805041;-0.043496884;-0.23674025;0.92918223 +2245;3;0.0095825195;0.009506226;-0.031707764 +2247;1;-0.5156272;5.3388934;8.213797 +2247;0;-0.44895935;5.302109;8.402588 +2247;3;0.011428833;0.007659912;-0.032928467 +2249;4;-12.257385;-7.0404053;-64.34631 +2249;6;0.51107466;-0.56226563;0.05338032 +2249;7;0.88488925;0.41381538;-0.21384065;0.0;-0.46360898;0.7379407;-0.49041837;0.0;-0.04514095 +2250;0;-0.45373535;5.3163605;8.407364 +2250;3;0.0095825195;0.0070648193;-0.03352356 +2250;12;0.28052935;-0.04345874;-0.23680297;0.9291604 +2252;17;1;38dead6d7725;8007;721;-67; +2253;17;1;38dead6d60ff;-3569;1944;-57; +2254;17;1;1c1bb5efa29a;12072;848;-77; +2255;17;1;1c1bb5ecd182;8901;1825;-64; +2255;1;-0.51670897;5.3391457;8.213565 +2255;2;-0.11754757;0.008421421;-0.18606758; +2255;0;-0.45851135;5.321106;8.421677 +2255;3;0.008987427;0.0052337646;-0.035369873 +2255;0;-0.44418335;5.3163605;8.378754 +2255;12;0.28055635;-0.04342783;-0.2368701;0.92913663 +2255;3;0.010803223;0.0027923584;-0.035980225 +2256;0;-0.47763062;5.321106;8.393066 +2256;1;-0.51773864;5.339381;8.2133465 +2256;3;0.0095825195;3.5095215E-4;-0.036590576 +2263;1;-0.5185997;5.3395863;8.21316 +2263;12;0.28058064;-0.043401673;-0.23694602;0.9291112 +2263;4;-12.70752;-7.1914673;-65.24658 +2264;6;0.5238812;-0.5643059;0.056846444 +2264;7;0.8796863;0.42268667;-0.21791744;0.0;-0.47312507;0.73163754;-0.4907741;0.0;-0.04800711 +2264;0;-0.44418335;5.297348;8.393066 +2264;3;0.0095825195;-0.0014953613;-0.036590576 +2264;0;-0.46806335;5.3163605;8.41214 +2264;3;0.010803223;-0.0051574707;-0.037200928 +2264;0;-0.44418335;5.3163605;8.38829 +2264;3;0.010803223;-0.006378174;-0.036590576 +2264;12;0.28060156;-0.04338534;-0.23702651;0.9290851 +2266;0;-0.47283936;5.3401184;8.41214 +2266;1;-0.51926464;5.33985;8.212946 +2266;3;0.0095825195;-0.011871338;-0.035980225 +2268;4;-13.157654;-7.6400757;-64.34631 +2268;6;0.5463087;-0.5649099;0.05615008 +2268;7;0.8687103;0.43881992;-0.22973818;0.0;-0.4930473;0.7216984;-0.48585585;0.0;-0.04740151 +2268;0;-0.44895935;5.330597;8.41214 +2268;3;0.008361816;-0.012481689;-0.036590576 +2269;12;0.2806226;-0.04338101;-0.23711102;0.92905724 +2270;0;-0.45373535;5.321106;8.416901 +2271;1;-0.5196567;5.340038;8.212798 +2271;2;-0.1002993;0.008322716;-0.1828165; +2271;3;0.0065307617;-0.014312744;-0.03781128 +2272;5;999.5871 +2273;0;-0.44895935;5.3068542;8.402588 +2273;12;0.2806352;-0.043390505;-0.23719867;0.92903066 +2273;3;0.008987427;-0.01737976;-0.035980225 +2275;0;-0.46806335;5.330597;8.38353 +2275;1;-0.51992524;5.34018;8.212689 +2275;3;0.008361816;-0.019195557;-0.03414917 +2277;4;-12.257385;-7.3410034;-63.89618 +2278;6;0.5194748;-0.5656532;0.055773396 +2278;7;0.88156205;0.41910058;-0.21726283;0.0;-0.46971658;0.73286676;-0.4922121;0.0;-0.047061652 +2278;0;-0.45851135;5.3068542;8.38353 +2278;3;0.0077667236;-0.021652222;-0.03352356 +2279;12;0.28064385;-0.043406803;-0.23729035;0.9290039 +2280;0;-0.43463135;5.3258667;8.38829 +2280;1;-0.51992714;5.3403435;8.212584 +2280;3;0.0077667236;-0.022262573;-0.031707764 +2282;0;-0.43463135;5.3353577;8.38829 +2283;12;0.28065032;-0.04343679;-0.2373785;0.928978 +2283;3;0.0065307617;-0.023483276;-0.028045654 +2285;0;-0.45373535;5.3591156;8.38353 +2285;3;0.0071411133;-0.022262573;-0.028640747 +2285;1;-0.5197286;5.3404975;8.212496 +2287;4;-12.406921;-7.1914673;-65.24658 +2287;6;0.50732565;-0.5681128;0.05406948 +2287;7;0.88689667;0.4095245;-0.213785;0.0;-0.45971644;0.7367498;-0.49584332;0.0;-0.04555393 +2287;0;-0.44418335;5.35437;8.407364 +2288;3;0.0071411133;-0.023483276;-0.028640747 +2288;12;0.2806536;-0.04347385;-0.23745905;0.9289547 +2290;0;-0.44895935;5.3401184;8.397842 +2290;1;-0.51950014;5.3406453;8.212414 +2290;2;-0.108042955;-0.0033607483;-0.17438126; +2290;3;0.0053100586;-0.022262573;-0.026824951 +2292;0;-0.41073608;5.330597;8.402588 +2292;12;0.2806558;-0.04351222;-0.23753673;0.92893237 +2293;3;0.00592041;-0.02104187;-0.026824951 +2294;0;-0.4202881;5.35437;8.369217 +2295;1;-0.51925033;5.340742;8.212366 +2295;3;0.0071411133;-0.021652222;-0.028045654 +2297;4;-12.257385;-5.9906006;-63.89618 +2297;6;0.48968527;-0.5685781;0.050176177 +2297;7;0.8940722;0.3963471;-0.208672;0.0;-0.44592464;0.743638;-0.49815053;0.0;-0.042264093 +2297;0;-0.42507935;5.3591156;8.369217 +2297;3;0.0071411133;-0.019821167;-0.02619934 +2298;12;0.2806563;-0.043548744;-0.23760949;0.9289119 +2300;0;-0.41073608;5.3401184;8.364441 +2300;1;-0.51904684;5.3409095;8.212271 +2300;3;0.00592041;-0.017974854;-0.027420044 +2302;0;-0.43463135;5.3638763;8.369217 +2302;3;0.0077667236;-0.01675415;-0.027420044 +2302;12;0.28066066;-0.04358387;-0.23768221;0.92889035 +2304;0;-0.4298401;5.3638763;8.369217 +2304;1;-0.5189938;5.34107;8.212169 +2305;3;0.0071411133;-0.0149383545;-0.026824951 +2306;4;-11.207581;-7.6400757;-64.64691 +2306;6;0.47720316;-0.56935704;0.051314566 +2307;7;0.8998138;0.38684157;-0.20171472;0.0;-0.43413007;0.7481544;-0.50179297;0.0;-0.043200616 +2307;0;-0.4298401;5.3496094;8.354904 +2307;3;0.0077667236;-0.013092041;-0.027420044 +2307;12;0.28066662;-0.043610934;-0.23775339;0.92886907 +2309;0;-0.41073608;5.35437;8.373978 +2309;1;-0.5190556;5.341252;8.212048 +2309;2;-0.13525891;-0.022218704;-0.15456104; +2312;3;0.008361816;-0.010650635;-0.02558899 +2312;5;999.5871 +2313;0;-0.4202881;5.378128;8.402588 +2313;12;0.2806754;-0.043631613;-0.23782144;0.928848 +2313;3;0.0095825195;-0.009429932;-0.023773193 +2315;0;-0.4298401;5.3828583;8.369217 +2315;1;-0.51921403;5.341506;8.211872 +2316;3;0.0095825195;-0.00881958;-0.023773193 +2317;4;-11.357117;-7.7911377;-64.497375 +2317;6;0.4829226;-0.57096213;0.051314566 +2317;7;0.8973482;0.39071184;-0.20520802;0.0;-0.4392079;0.7451622;-0.5018261;0.0;-0.043156173 +2317;0;-0.42507935;5.3401184;8.354904 +2317;3;0.01020813;-0.007598877;-0.023147583 +2317;12;0.28069007;-0.04364555;-0.23788123;0.9288276 +2322;1;-0.51942325;5.341793;8.211672 +2322;0;-0.44418335;5.35437;8.35968 +2322;3;0.014480591;-0.0082092285;-0.023773193 +2322;0;-0.4298401;5.378128;8.33107 +2323;12;0.28070837;-0.0436566;-0.23793747;0.92880714 +2323;3;0.014480591;-0.0069885254;-0.024368286 +2324;0;-0.43463135;5.330597;8.354904 +2324;1;-0.5196662;5.342261;8.211351 +2324;3;0.016921997;-0.007598877;-0.023773193 +2326;4;-12.5564575;-7.6400757;-65.54718 +2326;6;0.51187205;-0.56729484;0.051974252 +2326;7;0.8843253;0.41308528;-0.21755314;0.0;-0.464811;0.7352639;-0.4932931;0.0;-0.043813158 +2327;0;-0.43463135;5.35437;8.33107 +2327;3;0.017532349;-0.00881958;-0.02255249 +2327;12;0.2807362;-0.043668285;-0.2379935;0.92878383 +2328;0;-0.4298401;5.321106;8.340591 +2328;1;-0.5198666;5.3428407;8.210962 +2329;3;0.016921997;-0.0082092285;-0.02255249 +2329;2;-0.1266926;-0.023489475;-0.13963604; +2332;0;-0.4298401;5.330597;8.345367 +2332;12;0.28076956;-0.043683678;-0.23804836;0.928759 +2332;3;0.019363403;-0.00881958;-0.023147583 +2336;1;-0.5200375;5.343455;8.210551 +2336;0;-0.41552734;5.35437;8.326294 +2336;3;0.019973755;-0.010040283;-0.02255249 +2336;4;-11.056519;-7.7911377;-64.94751 +2336;6;0.46872395;-0.57092077;0.04986407 +2336;7;0.9032048;0.38010266;-0.19935688;0.0;-0.42715615;0.7506546;-0.5040391;0.0;-0.04193843 +2336;0;-0.45373535;5.35437;8.311981 +2336;3;0.018753052;-0.010040283;-0.023147583 +2336;12;0.28080586;-0.043700512;-0.23810206;0.92873347 +2338;0;-0.41552734;5.3496094;8.326294 +2338;1;-0.5201578;5.3441277;8.210106 +2339;3;0.0181427;-0.00881958;-0.023147583 +2340;0;-0.40596008;5.35437;8.316757 +2341;12;0.28084365;-0.043722328;-0.23815656;0.92870706 +2341;3;0.018753052;-0.0082092285;-0.024993896 +2342;0;-0.39163208;5.3638763;8.321533 +2344;1;-0.5203411;5.344765;8.20968 +2344;3;0.017532349;-0.010650635;-0.024368286 +2346;4;-12.107849;-6.890869;-65.69672 +2346;6;0.4763666;-0.5720504;0.047027793 +2346;7;0.89935434;0.3855483;-0.20619005;0.0;-0.43543023;0.74718463;-0.5021111;0.0;-0.03952605 +2346;0;-0.39640808;5.3496094;8.302444 +2346;3;0.017532349;-0.00881958;-0.024368286 +2346;12;0.28088057;-0.0437401;-0.23821262;0.92868066 +2348;1;-0.52047896;5.3453627;8.209282 +2348;2;-0.14664131;-0.012559891;-0.100847244; +2348;0;-0.38685608;5.3163605;8.269058 +2349;3;0.016311646;-0.0082092285;-0.024993896 +2353;5;999.5871 +2353;0;-0.40596008;5.3496094;8.2595215 +2353;12;0.28091502;-0.043759752;-0.23827028;0.92865455 +2353;3;0.016921997;-0.00881958;-0.024368286 +2353;1;-0.5206829;5.34593;8.2088995 +2353;0;-0.40119934;5.3258667;8.288132 +2353;3;0.015090942;-0.007598877;-0.023773193 +2355;4;-11.657715;-6.1401367;-64.94751 +2355;6;0.4636471;-0.57061595;0.048368733 +2355;7;0.9050609;0.37636045;-0.19803448;0.0;-0.42333105;0.75272185;-0.5041831;0.0;-0.040689725 +2356;0;-0.40119934;5.3258667;8.292908 +2356;3;0.013870239;-0.007598877;-0.023773193 +2356;12;0.2809474;-0.04377559;-0.23832788;0.9286292 +2357;0;-0.38208008;5.321106;8.288132 +2357;3;0.012649536;-0.007598877;-0.020706177 +2357;1;-0.5208899;5.346401;8.20858 +2360;0;-0.44895935;5.3258667;8.2595215 +2361;12;0.2809758;-0.04378834;-0.23838335;0.92860574 +2361;3;0.008987427;-0.0069885254;-0.02255249 +2367;0;-0.41073608;5.3163605;8.2595215 +2367;1;-0.52108413;5.346741;8.208345 +2367;3;0.0077667236;-0.0069885254;-0.02255249 +2367;4;-11.506653;-8.390808;-65.54718 +2367;6;0.48427945;-0.57134664;0.049687866 +2367;7;0.89642286;0.39162582;-0.20749763;0.0;-0.4412262;0.7444475;-0.50111604;0.0;-0.041778922 +2367;0;-0.42507935;5.344864;8.245209 +2367;3;0.00592041;-0.0069885254;-0.020111084 +2368;12;0.28099668;-0.043799825;-0.23843418;0.9285858 +2368;0;-0.41552734;5.302109;8.2165985 +2368;1;-0.52127624;5.34694;8.208204 +2368;2;-0.14825028;0.00929594;-0.050735474; +2369;17;1;38dead6d7725;7716;412;-67; +2370;17;1;38dead6d60ff;-2793;1605;-56; +2371;17;1;1c1bb5efa29a;11076;1639;-77; +2372;17;1;1c1bb5ecd182;9298;1474;-64; +2372;3;0.0028686523;-0.0069885254;-0.020111084 +2372;0;-0.41552734;5.344864;8.226135 +2372;12;0.28100923;-0.043808706;-0.23848453;0.92856866 +2372;3;-1.8310547E-4;-0.00881958;-0.017669678 +2372;0;-0.4202881;5.3258667;8.2642975 +2372;1;-0.52136683;5.3469276;8.208206 +2372;3;-0.0044555664;-0.00881958;-0.017669678 +2373;4;-12.406921;-7.1914673;-64.94751 +2374;6;0.5000482;-0.57187074;0.0508121 +2374;7;0.8896064;0.4031797;-0.21458451;0.0;-0.45472664;0.73793095;-0.4986798;0.0;-0.042709004 +2374;0;-0.42507935;5.344864;8.235672 +2374;3;-0.00630188;-0.011871338;-0.016433716 +2375;12;0.2810086;-0.043817867;-0.23853073;0.92855656 +2376;0;-0.43940735;5.3401184;8.273819 +2376;1;-0.52132475;5.3466563;8.208386 +2376;3;-0.008743286;-0.012481689;-0.017044067 +2379;12;0.28099123;-0.04382906;-0.2385754;0.9285498 +2379;0;-0.44418335;5.3163605;8.245209 +2379;3;-0.013015747;-0.012481689;-0.015823364 +2381;0;-0.41073608;5.3401184;8.254761 +2381;1;-0.5211799;5.346164;8.2087145 +2381;3;-0.016052246;-0.013092041;-0.017669678 +2384;12;0.2809608;-0.043842945;-0.23862052;0.9285468 +2385;4;-13.157654;-7.3410034;-66.29639 +2385;6;0.50957245;-0.57363886;0.049716476 +2385;7;0.88503045;0.40972215;-0.22101802;0.0;-0.46365812;0.7332211;-0.49740124;0.0;-0.041741244 +2385;0;-0.44418335;5.3401184;8.245209 +2385;3;-0.019714355;-0.014312744;-0.017669678 +2389;1;-0.52103007;5.3454013;8.209222 +2390;2;-0.12965673;-0.001698494;-0.034855843; +2390;12;0.28091478;-0.043855228;-0.23866978;0.92854744 +2390;0;-0.43940735;5.3353577;8.245209 +2390;3;-0.022781372;-0.01675415;-0.015823364 +2390;5;999.5871 +2391;0;-0.39640808;5.368622;8.226135 +2391;3;-0.026443481;-0.019195557;-0.015823364 +2391;1;-0.520631;5.344387;8.209908 +2391;0;-0.40119934;5.330597;8.2642975 +2392;3;-0.027664185;-0.020431519;-0.017044067 +2392;4;-11.357117;-6.890869;-65.69672 +2393;6;0.4583477;-0.5723269;0.04850801 +2393;7;0.9073497;0.37195677;-0.19586948;0.0;-0.41839594;0.7538759;-0.50657284;0.0;-0.04076193 +2393;0;-0.39640808;5.3163605;8.2642975 +2393;3;-0.027664185;-0.022872925;-0.017669678 +2394;12;0.2808496;-0.043874726;-0.23871827;0.9285539 +2395;0;-0.40596008;5.3638763;8.278595 +2395;1;-0.5201253;5.3432274;8.210694 +2395;3;-0.028884888;-0.022262573;-0.01889038 +2397;0;-0.39640808;5.311615;8.2642975 +2398;12;0.2807756;-0.043899827;-0.23877347;0.92856085 +2399;3;-0.03010559;-0.022262573;-0.01889038 +2400;0;-0.40596008;5.3163605;8.254761 +2400;1;-0.519638;5.3419895;8.21153 +2400;3;-0.031326294;-0.021652222;-0.019485474 +2402;4;-11.506653;-5.9906006;-64.64691 +2402;6;0.46024686;-0.5716213;0.049139313 +2402;7;0.9066645;0.37355745;-0.19599557;0.0;-0.4198248;0.7535103;-0.5059341;0.0;-0.04131076 +2403;0;-0.40596008;5.3163605;8.273819 +2403;3;-0.031326294;-0.02104187;-0.020706177 +2403;12;0.28069735;-0.04392374;-0.23883244;0.9285682 +2405;0;-0.39163208;5.3258667;8.245209 +2405;1;-0.5192158;5.340682;8.212408 +2405;2;-0.15794569;-0.0016160011;-0.041853905; +2405;3;-0.03010559;-0.020431519;-0.020706177 +2408;0;-0.40596008;5.321106;8.269058 +2409;12;0.28061602;-0.043944117;-0.23889354;0.928576 +2409;3;-0.028274536;-0.019821167;-0.020706177 +2409;0;-0.38208008;5.3496094;8.278595 +2410;1;-0.5188527;5.33946;8.213225 +2410;3;-0.028884888;-0.01737976;-0.021331787 +2412;4;-12.406921;-7.4905396;-64.19678 +2412;6;0.4989346;-0.57321274;0.04612004 +2412;7;0.88912314;0.4020098;-0.21874231;0.0;-0.45602596;0.73774105;-0.49777347;0.0;-0.03873461 +2412;0;-0.38208008;5.287857;8.273819 +2413;3;-0.028884888;-0.0149383545;-0.023147583 +2413;12;0.2805396;-0.04396313;-0.23895489;0.92858255 +2414;13;95.06499 +2415;0;-0.40596008;5.3068542;8.292908 +2415;1;-0.51868457;5.338223;8.21404 +2415;3;-0.03010559;-0.011871338;-0.02255249 +2417;0;-0.41552734;5.321106;8.30722 +2417;12;0.28046593;-0.04397125;-0.2390172;0.9285883 +2417;3;-0.028884888;-0.0082092285;-0.023147583 +2420;0;-0.38685608;5.3496094;8.302444 +2420;1;-0.51877743;5.3369737;8.214846 +2421;3;-0.03010559;-0.0057678223;-0.023147583 +2421;4;-12.107849;-6.890869;-64.94751 +2421;6;0.48034802;-0.57189345;0.046561763 +2421;7;0.89751357;0.38855937;-0.20854487;0.0;-0.43924654;0.7457191;-0.50096464;0.0;-0.039138604 +2422;0;-0.38685608;5.3258667;8.302444 +2422;12;0.280395;-0.04396613;-0.23907651;0.92859465 +2422;3;-0.03010559;-0.003326416;-0.02255249 +2424;0;-0.37252808;5.3163605;8.292908 +2424;1;-0.5190688;5.3356967;8.215656 +2424;2;-0.16581088;0.0024003983;-0.06969547; +2424;3;-0.02949524;9.460449E-4;-0.020111084 +2426;0;-0.38208008;5.330597;8.311981 +2427;12;0.2803254;-0.04394871;-0.23913214;0.9286022 +2427;3;-0.027053833;0.0040130615;-0.020111084 +2427;5;999.5878 +2429;0;-0.40596008;5.3496094;8.311981 +2429;1;-0.51957715;5.334505;8.216398 +2429;3;-0.026443481;0.006439209;-0.019485474 +2431;4;-12.257385;-6.2911987;-63.597107 +2431;6;0.49051762;-0.57132244;0.048801575 +2431;7;0.8934655;0.3962683;-0.21140197;0.0;-0.4472533;0.74200153;-0.4993978;0.0;-0.041034937 +2431;0;-0.38685608;5.3353577;8.345367 +2432;3;-0.027664185;0.010101318;-0.019485474 +2432;12;0.28026387;-0.04391793;-0.23917691;0.92861074 +2433;0;-0.41552734;5.344864;8.33107 +2434;1;-0.52030164;5.3333545;8.2171 +2434;3;-0.025222778;0.013168335;-0.017044067 +2436;0;-0.4202881;5.2926025;8.35968 +2436;12;0.28020743;-0.043874346;-0.23921661;0.9286195 +2437;3;-0.024612427;0.016830444;-0.015213013 +2439;1;-0.521208;5.3322597;8.217752 +2440;0;-0.39163208;5.302109;8.378754 +2440;3;-0.02583313;0.019882202;-0.015823364 +2441;4;-12.5564575;-6.590271;-65.54718 +2441;6;0.49216813;-0.5636986;0.046707094 +2441;7;0.8921378;0.39942893;-0.21106076;0.0;-0.4500361;0.74495816;-0.4924477;0.0;-0.039466437 +2441;0;-0.39640808;5.3258667;8.354904 +2442;3;-0.027053833;0.022323608;-0.015213013 +2442;12;0.2801585;-0.04382012;-0.23924394;0.92862993 +2443;0;-0.40596008;5.3353577;8.402588 +2443;1;-0.52233285;5.3311243;8.218417 +2444;2;-0.16098171;-0.006781578;-0.12666416; +2444;3;-0.026443481;0.024765015;-0.012771606 +2445;0;-0.39640808;5.3353577;8.38353 +2446;12;0.2801098;-0.04375172;-0.23926595;0.9286421 +2446;3;-0.028274536;0.027832031;-0.010940552 +2448;0;-0.39640808;5.35437;8.402588 +2448;1;-0.5235638;5.329965;8.219091 +2448;3;-0.03010559;0.02720642;-0.0084991455 +2450;4;-12.257385;-7.3410034;-65.84625 +2450;6;0.489381;-0.566841;0.04714195 +2450;7;0.8935386;0.39655986;-0.21054493;0.0;-0.44722307;0.74458295;-0.4955682;0.0;-0.039754286 +2450;0;-0.38208008;5.3496094;8.450302 +2451;3;-0.031936646;0.02720642;-0.007888794 +2451;12;0.28006145;-0.043674204;-0.23927625;0.92865765 +2453;0;-0.41073608;5.330597;8.421677 +2453;1;-0.52473485;5.3286543;8.219867 +2453;3;-0.035003662;0.025985718;-0.0048217773 +2455;0;-0.41552734;5.3496094;8.455063 +2456;12;0.28000474;-0.043594077;-0.23927853;0.92867804 +2456;3;-0.035598755;0.025375366;-0.0030059814 +2457;0;-0.41073608;5.330597;8.431213 +2458;1;-0.52575517;5.327175;8.22076 +2458;3;-0.03804016;0.023544312;-0.001159668 +2461;4;-11.207581;-7.6400757;-66.596985 +2462;6;0.46508923;-0.5632574;0.048677646 +2462;7;0.9043754;0.37921807;-0.19570127;0.0;-0.42475015;0.75571054;-0.4984868;0.0;-0.041141685 +2462;0;-0.38685608;5.330597;8.464584 +2462;3;-0.041107178;0.021713257;0.0018920898 +2463;12;0.27993613;-0.04351774;-0.23927256;0.9287038 +2464;0;-0.42507935;5.3496094;8.474136 +2464;2;-0.16306645;-0.026408672;-0.20935535; +2464;1;-0.52652645;5.325548;8.221765 +2464;3;-0.044158936;0.017440796;0.0025024414 +2466;0;-0.42507935;5.330597;8.455063 +2467;12;0.27985698;-0.043448664;-0.23925996;0.9287341 +2467;3;-0.04537964;0.014389038;0.0049438477 +2467;5;999.5878 +2469;0;-0.38685608;5.3401184;8.507523 +2469;3;-0.047821045;0.010726929;0.005554199 +2471;1;-0.5269559;5.323699;8.222936 +2472;4;-12.5564575;-6.2911987;-65.54718 +2472;6;0.48923424;-0.560069;0.045440935 +2472;7;0.8931227;0.39815038;-0.20930421;0.0;-0.44816387;0.7478338;-0.48978955;0.0;-0.038485147 +2472;12;0.2797599;-0.043393925;-0.23924446;0.92876995 +2472;0;-0.40596008;5.344864;8.517059 +2472;3;-0.048431396;0.006439209;0.0049438477 +2474;17;1;38dead6d7725;7205;590;-67; +2475;17;1;38dead6d60ff;-2768;1652;-56; +2476;17;1;1c1bb5efa29a;6313;4502;-75; +2477;17;1;1c1bb5ecd182;7594;1816;-64; +2478;0;-0.39163208;5.344864;8.54567 +2478;3;-0.052703857;0.002166748;0.006164551 +2478;1;-0.52704746;5.3217196;8.224211 +2478;12;0.27965066;-0.043354876;-0.23923096;0.92880803 +2478;0;-0.39640808;5.3163605;8.540909 +2478;3;-0.052093506;-8.69751E-4;0.005554199 +2478;0;-0.40596008;5.3401184;8.54567 +2478;3;-0.053329468;-0.004547119;0.005554199 +2478;1;-0.5268121;5.319562;8.22562 +2482;12;0.27952737;-0.04333188;-0.23922181;0.9288487 +2482;4;-11.506653;-8.390808;-63.146973 +2483;6;0.5085738;-0.55801505;0.047469083 +2483;7;0.8846905;0.41306826;-0.21609591;0.0;-0.46443784;0.74094594;-0.48507398;0.0;-0.040253274 +2483;0;-0.36297607;5.3258667;8.54567 +2483;3;-0.053329468;-0.007598877;0.005554199 +2483;1;-0.52629447;5.317358;8.227078 +2483;0;-0.37728882;5.321106;8.588608 +2483;3;-0.052093506;-0.010650635;0.0037231445 +2483;2;-0.17209762;-0.025976181;-0.29965496; +2484;0;-0.36297607;5.344864;8.621979 +2484;3;-0.049041748;-0.013702393;0.004333496 +2487;12;0.2793969;-0.043323416;-0.23921785;0.92888933 +2488;0;-0.38208008;5.3401184;8.6362915 +2488;3;-0.04598999;-0.015533447;0.004333496 +2488;1;-0.5255764;5.3152504;8.228487 +2492;4;-12.857056;-7.940674;-65.84625 +2492;6;0.51998854;-0.5533546;0.04421239 +2494;7;0.8785181;0.42272037;-0.22251597;0.0;-0.47622675;0.7383161;-0.47759524;0.0;-0.037602156 +2494;0;-0.36775208;5.3638763;8.650604 +2494;3;-0.04598999;-0.016159058;0.0012817383 +2494;12;0.2792692;-0.04332897;-0.23922119;0.92892665 +2494;1;-0.5247262;5.313311;8.229794 +2494;0;-0.3343048;5.3258667;8.664902 +2494;3;-0.042938232;-0.01675415;0.0037231445 +2496;12;0.27914783;-0.043345552;-0.23922887;0.92896026 +2496;0;-0.3390808;5.3163605;8.6792145 +2496;3;-0.036819458;-0.016159058;0.004333496 +2496;1;-0.5238142;5.3115864;8.230965 +2497;0;-0.3438568;5.3068542;8.70784 +2497;3;-0.03378296;-0.016159058;0.004333496 +2502;4;-12.107849;-7.1914673;-64.19678 +2502;6;0.4970306;-0.5469813;0.03946768 +2502;7;0.8881031;0.4072491;-0.21312188;0.0;-0.45840704;0.7507545;-0.475637;0.0;-0.033700533 +2502;0;-0.34864807;5.3258667;8.688751 +2502;3;-0.032546997;-0.0149383545;0.006164551 +2502;12;0.2790391;-0.043367304;-0.2392338;0.92899066 +2502;0;-0.34864807;5.321106;8.70784 +2502;1;-0.52291256;5.310136;8.231957 +2503;3;-0.027053833;-0.011260986;0.007385254 +2503;2;-0.20972443;-0.030404568;-0.43397522; +2503;0;-0.37728882;5.2736053;8.722153 +2504;12;0.27894506;-0.043390825;-0.23923501;0.9290176 +2504;3;-0.020935059;-0.010650635;0.009216309 +2504;5;999.5878 +2506;0;-0.32476807;5.2926025;8.726913 +2506;1;-0.5221169;5.309022;8.232727 +2507;3;-0.015457153;-0.010650635;0.010437012 +2509;4;-11.657715;-8.09021;-65.24658 +2509;6;0.48593783;-0.5448558;0.037197378 +2509;7;0.8926277;0.3994117;-0.20901209;0.0;-0.44967127;0.75620157;-0.4753471;0.0;-0.031803936 +2509;0;-0.3104248;5.311615;8.722153 +2509;3;-0.011184692;-0.010040283;0.011657715 +2509;12;0.27887326;-0.043413103;-0.23922484;0.92904073 +2510;0;-0.3056488;5.3401184;8.722153 +2511;1;-0.5212417;5.3083615;8.233208 +2511;3;-0.00630188;-0.00881958;0.011657715 +2517;0;-0.3390808;5.344864;8.703064 +2517;12;0.27882686;-0.04344218;-0.23920698;0.92905784 +2517;3;-7.9345703E-4;-0.00881958;0.012878418 +2517;0;-0.3390808;5.344864;8.712601 +2517;1;-0.5204206;5.308106;8.233424 +2517;3;0.003479004;-0.0069885254;0.011657715 +2518;4;-11.056519;-6.440735;-65.69672 +2518;6;0.4440616;-0.54992324;0.038898803 +2518;7;0.91106266;0.36627093;-0.18923678;0.0;-0.41093272;0.7698781;-0.48828506;0.0;-0.033155385 +2518;0;-0.3295288;5.3591156;8.70784 +2518;3;0.010803223;-0.010650635;0.014099121 +2520;12;0.27880347;-0.043473896;-0.23918447;0.92906916 +2520;0;-0.34864807;5.3496094;8.698288 +2521;1;-0.5195842;5.3082805;8.233365 +2521;2;-0.2259469;-0.02820921;-0.477602; +2521;3;0.015090942;-0.010040283;0.014099121 +2522;0;-0.3104248;5.344864;8.717377 +2522;12;0.27880362;-0.043512262;-0.23915944;0.92907375 +2523;3;0.02180481;-0.00881958;0.014724731 +2524;0;-0.3343048;5.3733673;8.745987 +2525;1;-0.518671;5.308896;8.233025 +2525;3;0.023620605;-0.0069885254;0.014083862 +2527;4;-12.107849;-7.4905396;-66.14685 +2527;6;0.48198733;-0.5506011;0.0382052 +2527;7;0.8946923;0.39503437;-0.20850302;0.0;-0.44549537;0.75512254;-0.4809614;0.0;-0.03255094 +2527;0;-0.3199768;5.344864;8.712601 +2527;3;0.02911377;-0.0082092285;0.015930176 +2528;12;0.27882838;-0.04355956;-0.23913018;0.9290717 +2529;1;-0.5178139;5.309836;8.232473 +2530;0;-0.3295288;5.3591156;8.70784 +2530;3;0.032180786;-0.009429932;0.017150879 +2532;0;-0.28652954;5.3733673;8.698288 +2532;3;0.036453247;-0.00881958;0.018371582 +2533;12;0.27887258;-0.043608844;-0.2390971;0.92906463 +2535;0;-0.2960968;5.3828583;8.731674 +2535;3;0.040725708;-0.007598877;0.018371582 +2535;1;-0.5168044;5.311101;8.231721 +2540;4;-11.357117;-6.440735;-65.69672 +2540;6;0.44111818;-0.5521888;0.033897668 +2541;7;0.91134554;0.36349678;-0.19318233;0.0;-0.41062975;0.7698801;-0.48853654;0.0;-0.028854217 +2541;12;0.27893215;-0.043667555;-0.23905835;0.92905396 +2541;1;-0.5158678;5.3126507;8.23078 +2541;2;-0.24722016;-0.059637547;-0.49122334; +2541;0;-0.3152008;5.35437;8.755524 +2541;3;0.043167114;-0.0057678223;0.019592285 +2541;0;-0.28652954;5.3733673;8.731674 +2541;3;0.04560852;-0.0069885254;0.020202637 +2541;0;-0.25309753;5.3496094;8.722153 +2541;3;0.048065186;-0.004547119;0.02142334 +2542;5;999.5878 +2542;12;0.27900967;-0.043727335;-0.23901406;0.92903924 +2544;1;-0.5148953;5.314392;8.229716 +2544;0;-0.2817688;5.3496094;8.741211 +2544;3;0.05355835;-0.006378174;0.02142334 +2546;4;-11.357117;-7.4905396;-66.44745 +2546;6;0.44800162;-0.54896414;0.03222337 +2546;7;0.90812874;0.36951828;-0.1968716;0.0;-0.417788;0.76888025;-0.4840209;0.0;-0.027483886 +2546;0;-0.29130554;5.3638763;8.669678 +2546;3;0.056610107;-0.0057678223;0.022033691 +2547;12;0.27909875;-0.04378841;-0.23896456;0.9290223 +2549;1;-0.51389545;5.316484;8.228427 +2549;0;-0.26264954;5.3496094;8.669678 +2550;3;0.055999756;-0.0051574707;0.02142334 +2551;0;-0.26742554;5.3638763;8.703064 +2551;12;0.279206;-0.043856394;-0.2389123;0.9290003 +2551;3;0.060272217;-0.006378174;0.023864746 +2553;0;-0.29130554;5.344864;8.65538 +2553;1;-0.5128862;5.3186913;8.227064 +2553;3;0.06210327;-0.009429932;0.02142334 +2555;4;-11.956787;-7.940674;-65.097046 +2555;6;0.47937995;-0.5529488;0.03364331 +2556;7;0.89492714;0.39249656;-0.21225448;0.0;-0.44529334;0.7550581;-0.4812497;0.0;-0.028624367 +2556;0;-0.26264954;5.3591156;8.6458435 +2556;3;0.063934326;-0.010650635;0.022033691 +2556;12;0.27932066;-0.04392565;-0.23885757;0.92897666 +2559;0;-0.24832153;5.3353577;8.6839905 +2559;1;-0.5117146;5.321089;8.225586 +2559;2;-0.28364366;-0.03946829;-0.45796585; +2559;3;0.06515503;-0.011260986;0.022644043 +2560;0;-0.25309753;5.330597;8.617218 +2561;12;0.27944285;-0.04400738;-0.23880701;0.928949 +2561;3;0.067611694;-0.014312744;0.02142334 +2563;0;-0.24832153;5.321106;8.6362915 +2563;1;-0.51041734;5.3236346;8.22402 +2563;3;0.06944275;-0.017974854;0.020202637 +2565;4;-12.857056;-6.590271;-64.34631 +2565;6;0.4845953;-0.5520132;0.028745338 +2565;7;0.8915193;0.39665776;-0.21875994;0.0;-0.4523211;0.7534352;-0.47722214;0.0;-0.024472438 +2565;0;-0.25787354;5.3163605;8.617218 +2566;3;0.07066345;-0.02104187;0.022033691 +2566;12;0.27957177;-0.0440977;-0.238757;0.92891884 +2568;0;-0.27697754;5.3353577;8.612442 +2568;1;-0.5088993;5.3263063;8.2223835 +2568;3;0.07066345;-0.025314331;0.020812988 +2570;0;-0.24832153;5.297348;8.602905 +2571;12;0.27970445;-0.044203553;-0.23871353;0.92888504 +2571;3;0.07371521;-0.031417847;0.020202637 +2573;1;-0.5070308;5.329047;8.220723 +2573;0;-0.23876953;5.297348;8.588608 +2573;3;0.07371521;-0.035079956;0.018981934 +2575;4;-11.506653;-5.9906006;-65.097046 +2575;6;0.43184596;-0.5524995;0.027793568 +2575;7;0.91394824;0.35627446;-0.19433731;0.0;-0.40514058;0.7730692;-0.48808286;0.0;-0.023655267 +2575;0;-0.22921753;5.2926025;8.617218 +2575;3;0.07493591;-0.041809082;0.016525269 +2576;12;0.27983585;-0.04433076;-0.23867686;0.92884874 +2577;0;-0.23876953;5.302109;8.574295 +2577;1;-0.5048289;5.3318634;8.219032 +2578;2;-0.29827958;0.012131691;-0.38669395; +2578;3;0.076156616;-0.047302246;0.015930176 +2580;0;-0.21966553;5.2926025;8.574295 +2581;12;0.27996704;-0.04448001;-0.23865278;0.9288083 +2581;3;0.07859802;-0.051574707;0.015304565 +2581;5;999.58704 +2582;0;-0.22442627;5.344864;8.559982 +2582;1;-0.5022412;5.334814;8.217276 +2583;3;0.080444336;-0.055862427;0.014083862 +2584;4;-11.657715;-6.890869;-65.69672 +2585;6;0.4352227;-0.5580143;0.026212074 +2585;7;0.9123157;0.35765716;-0.19940244;0.0;-0.4088834;0.7692256;-0.4910256;0.0;-0.022233369 +2585;0;-0.21487427;5.3353577;8.550446 +2585;3;0.084106445;-0.063186646;0.0110321045 +2586;12;0.28010058;-0.044654652;-0.23864006;0.928763 +2587;1;-0.49931613;5.3379626;8.215409 +2587;0;-0.17666626;5.3353577;8.550446 +2587;3;0.08654785;-0.06806946;0.0110321045 +2589;0;-0.18621826;5.3258667;8.540909 +2590;3;0.09020996;-0.07234192;0.0110321045 +2590;12;0.28023893;-0.044853844;-0.2386402;0.92871165 +2592;0;-0.17666626;5.3068542;8.531357 +2592;1;-0.49600077;5.341338;8.213416 +2592;3;0.09387207;-0.074798584;0.010421753 +2594;4;-11.056519;-6.1401367;-63.746643 +2594;6;0.4118946;-0.5563725;0.020704914 +2595;7;0.92054486;0.3399645;-0.19240935;0.0;-0.3902411;0.7781546;-0.4921252;0.0;-0.017580867 +2595;0;-0.18144226;5.344864;8.550446 +2595;12;0.2803847;-0.045079175;-0.23865025;0.92865413 +2597;17;1;38dead6d7725;8010;451;-69; +2598;17;1;38dead6d60ff;-2360;1157;-57; +2599;17;1;1c1bb5efa29a;11948;753;-74; +2600;17;1;1c1bb5ecd182;7286;4432;-64; +2600;3;0.10121155;-0.07846069;0.00920105 +2600;0;-0.10499573;5.330597;8.536133 +2600;1;-0.49241465;5.345103;8.211183 +2600;3;0.10487366;-0.07846069;0.0067596436 +2600;2;-0.34990054;0.010327339;-0.33574104; +2601;12;0.28054845;-0.045327548;-0.23866558;0.9285886 +2601;0;-0.10978699;5.3401184;8.488449 +2602;1;-0.48890296;5.3492384;8.208699 +2602;3;0.11036682;-0.075408936;0.004928589 +2602;0;-0.08111572;5.3496094;8.550446 +2602;3;0.11465454;-0.07296753;0.0037078857 +2604;4;-11.956787;-7.0404053;-65.84625 +2604;6;0.41066927;-0.55904824;0.009486441 +2604;7;0.9188212;0.33844543;-0.20303272;0.0;-0.39459208;0.7772722;-0.49004585;0.0;-0.008042106 +2604;0;-0.09068298;5.321106;8.517059 +2604;3;0.12135315;-0.06867981;0.0037078857 +2605;12;0.2807329;-0.045578733;-0.23868841;0.9285147 +2606;1;-0.48572823;5.354429;8.2055025 +2606;0;-0.157547;5.411377;5.4694977 +2606;3;0.11647034;-0.091293335;0.0012664795 +2608;0;-0.5015106;5.558655;4.558548 +2609;12;0.2810539;-0.04583165;-0.23870476;0.92840093 +2609;3;0.10243225;-0.2110138;-0.0030212402 +2611;1;-0.47989708;5.3599744;8.202225 +2612;0;-0.46328735;5.7296906;7.358124 +2612;3;0.055999756;-0.32218933;-0.0042419434 +2614;4;-10.906982;-7.940674;-64.64691 +2614;6;0.4264496;-0.660652;0.0628797 +2614;7;0.9245906;0.3266077;-0.19611113;0.0;-0.3777173;0.7188764;-0.5835634;0.0;-0.049616612 +2614;0;-0.22442627;5.848465;9.351685 +2614;3;-0.021575928;-0.32403564;-0.0066833496 +2616;12;0.28122136;-0.0462385;-0.23879358;0.9283072 +2616;1;-0.46710455;5.360567;8.202575 +2616;0;-0.20533752;5.972;9.175232 +2616;3;-0.10771179;-0.2623291;-0.007293701 +2616;2;-0.28150737;-0.2147727;0.5221939; +2619;12;0.28108498;-0.04697687;-0.23901714;0.9282539 +2619;0;-0.21966553;5.957733;7.997223 +2619;3;-0.17979431;-0.20429993;-0.009124756 +2619;5;999.58704 +2620;0;-0.157547;5.791458;6.71904 +2621;1;-0.45792165;5.3555737;8.206354 +2621;3;-0.2292633;-0.18719482;-0.013397217 +2623;4;-13.157654;-6.590271;-65.54718 +2623;6;0.37262574;-0.7112535;0.023443546 +2623;7;0.9366897;0.27579328;-0.21575592;0.0;-0.34971023;0.7055576;-0.61635345;0.0;-0.0177579 +2623;0;-0.01423645;5.610916;6.0608826 +2623;3;-0.25798035;-0.21713257;-0.012786865 +2624;12;0.28068972;-0.04743679;-0.23919863;0.92830336 +2625;0;0.03831482;5.47789;6.1753387 +2625;1;-0.4499136;5.347086;8.212329 +2625;3;-0.2720337;-0.27027893;-0.010955811 +2627;0;-0.047683716;5.4256287;6.9050446 +2628;12;0.280077;-0.04776736;-0.23938155;0.9284243 +2628;3;-0.28118896;-0.31547546;-0.0066833496 +2630;1;-0.43832105;5.336603;8.219771 +2630;0;-0.138443;5.3923798;7.777817 +2630;3;-0.2921753;-0.3295288;-0.003616333 +2632;4;-11.956787;-7.940674;-66.29639 +2632;6;0.39943206;-0.60614276;0.017797844 +2632;7;0.92507905;0.31961417;-0.20512317;0.0;-0.37949288;0.7571572;-0.5316938;0.0;-0.014626416 +2632;0;-0.17666626;5.411377;8.497986 +2633;3;-0.3050232;-0.30326843;-0.007293701 +2633;12;0.27929705;-0.048266668;-0.23962551;0.92857057 +2634;0;-0.06678772;5.458893;8.698288 +2635;1;-0.42572862;5.3247576;8.228111 +2635;2;-0.37230927;-0.25156593;0.87856483; +2635;3;-0.3123474;-0.24827576;-0.009735107 +2637;0;0.09562683;5.444641;8.607666 +2637;12;0.27844346;-0.048812214;-0.23987897;0.9287328 +2638;3;-0.3050232;-0.18353271;-0.010955811 +2640;0;0.23416138;5.344864;8.364441 +2640;1;-0.41697973;5.3125253;8.236462 +2640;3;-0.28424072;-0.12184143;-0.006072998 +2642;4;-11.357117;-6.890869;-65.69672 +2642;6;0.30987006;-0.5684246;-0.027987553 +2642;7;0.94740677;0.25698394;-0.19073483;0.0;-0.31916195;0.80261266;-0.5039333;0.0;0.023583435 +2642;0;0.28193665;5.278351;8.183212 +2642;3;-0.2451477;-0.07296753;0.0012664795 +2643;12;0.27762723;-0.049135514;-0.2400737;0.9289099 +2644;0;0.21505737;5.211838;8.197525 +2647;1;-0.41262487;5.3020697;8.243417 +2647;3;-0.19078064;-0.0332489;0.007980347 +2647;0;0.1720581;5.1168213;8.474136 +2647;12;0.2769706;-0.049221616;-0.24016841;0.9290768 +2647;3;-0.13336182;0.008880615;0.015930176 +2649;0;0.114746094;5.0455627;8.803207 +2649;1;-0.4113648;5.2954235;8.24775 +2650;3;-0.076553345;0.05531311;0.023864746 +2651;4;-12.5564575;-6.2911987;-64.64691 +2651;6;0.4125104;-0.5204066;-0.013033841 +2651;7;0.91344124;0.3478367;-0.21126911;0.0;-0.4068134;0.79483896;-0.45025972;0.0;0.011308063 +2652;0;-0.009475708;5.0550537;9.098923 +2652;3;-0.019729614;0.10662842;0.029968262 +2652;12;0.27657497;-0.04917674;-0.24016567;0.9291977 +2654;0;-0.0046844482;5.0835724;9.227692 +2654;1;-0.4135322;5.2931185;8.249122 +2654;2;-0.5966974;0.085541725;-0.36650944; +2654;3;0.034622192;0.16404724;0.03791809 +2656;0;-0.038131714;5.0835724;9.208603 +2656;12;0.27648166;-0.048996225;-0.24005564;0.9292635 +2657;3;0.08532715;0.21902466;0.044021606 +2657;5;999.58704 +2658;0;-0.052444458;5.188095;9.117996 +2659;1;-0.41973758;5.295151;8.247502 +2659;3;0.13723755;0.26789856;0.051971436 +2661;4;-11.056519;-7.7911377;-66.14685 +2661;6;0.4157059;-0.5173026;0.005751689 +2661;7;0.915965;0.3509964;-0.19444683;0.0;-0.4012269;0.7951315;-0.4547337;0.0;-0.004999089 +2661;0;-0.06201172;5.197586;9.027374 +2661;3;0.1867218;0.30516052;0.06112671 +2662;12;0.2766975;-0.048641365;-0.23982765;0.92927676 +2663;0;-0.06678772;5.221344;8.731674 +2663;1;-0.42930317;5.3013806;8.243008 +2663;3;0.2355957;0.3289795;0.06845093 +2666;0;-0.138443;5.1928253;8.607666 +2666;3;0.27775574;0.33753967;0.075790405 +2668;12;0.27720147;-0.048144627;-0.23949012;0.9292395 +2668;1;-0.44046974;5.3115225;8.235887 +2668;0;-0.22442627;5.2070923;8.621979 +2669;3;0.30767822;0.33448792;0.08128357 +2671;50;WALK;0 +2671;4;-12.857056;-7.6400757;-65.84625 +2671;6;0.49002331;-0.54315615;0.026023678 +2671;7;0.8883527;0.40291184;-0.22020808;0.0;-0.4586211;0.7553397;-0.4681118;0.0;-0.022275882 +2671;0;-0.26742554;5.2926025;8.712601 +2671;3;0.32539368;0.32836914;0.083724976 +2671;12;0.2779481;-0.047600027;-0.23907453;0.92915154 +2673;0;-0.3199768;5.378128;8.741211 +2673;1;-0.45129177;5.3240047;8.227237 +2673;2;-0.3515338;0.09471178;-0.61567974; +2674;3;0.3302765;0.3191986;0.08250427 +2675;0;-0.3199768;5.468399;8.6792145 +2676;12;0.27882552;-0.047102842;-0.23863286;0.9290275 +2676;3;0.32539368;0.30699158;0.07884216 +2678;0;-0.3199768;5.5396423;8.521835 +2678;1;-0.46143216;5.3370514;8.218216 +2678;3;0.31195068;0.28988647;0.071517944 +2680;4;-13.757324;-6.890869;-65.24658 +2680;6;0.5026816;-0.57609046;0.037530247 +2680;7;0.88552415;0.40401772;-0.22938329;0.0;-0.4635266;0.7348589;-0.49510148;0.0;-0.03146543 +2681;0;-0.36297607;5.568161;8.354904 +2681;12;0.27972713;-0.04665336;-0.23820531;0.92888886 +2682;3;0.29057312;0.2630005;0.06417847 +2683;1;-0.470467;5.349177;8.209816 +2683;0;-0.3438568;5.6299133;8.245209 +2684;3;0.26553345;0.23002625;0.058685303 +2685;0;-0.36297607;5.6204224;8.183212 +2685;12;0.28055674;-0.046262942;-0.23783287;0.9287536 +2685;3;0.23498535;0.19276428;0.051345825 +2687;0;-0.40119934;5.6061707;8.178452 +2687;1;-0.47728103;5.3593054;8.202813 +2688;3;0.2001648;0.1524353;0.043411255 +2690;4;-11.207581;-7.940674;-65.097046 +2690;6;0.4487846;-0.6003545;0.049016368 +2690;7;0.9119025;0.35800216;-0.2006696;0.0;-0.40841076;0.74342644;-0.52963936;0.0;-0.040428948 +2690;0;-0.40596008;5.610916;8.226135 +2690;12;0.28123665;-0.045977555;-0.23753873;0.92863744 +2691;3;0.16229248;0.11517334;0.036697388 +2692;0;-0.45851135;5.6156616;8.235672 +2692;1;-0.48146033;5.3666553;8.197763 +2692;2;-0.15622294;-0.225101;-0.12708092; +2692;3;0.12013245;0.07852173;0.029968262 +2694;0;-0.44418335;5.6536713;8.187988 +2695;12;0.28172103;-0.045813728;-0.23733811;0.92854995 +2695;3;0.080444336;0.043701172;0.024475098 +2696;5;999.58704 +2697;0;-0.46328735;5.6536713;8.121216 +2697;1;-0.4831296;5.370844;8.1949215 +2697;3;0.038894653;0.0070648193;0.019592285 +2700;4;-10.757446;-7.1914673;-64.94751 +2700;6;0.43897864;-0.607383;0.05698479 +2700;7;0.91753197;0.3489988;-0.19061725;0.0;-0.3949024;0.7432886;-0.53997606;0.0;-0.046767417 +2700;0;-0.44418335;5.648926;8.11644 +2701;3;0.002243042;-0.029586792;0.014709473 +2701;12;0.281988;-0.045757245;-0.2372233;0.92850107 +2702;0;-0.40119934;5.601425;8.06398 +2702;1;-0.48219228;5.3718886;8.194292 +2702;3;-0.033172607;-0.063797;0.014709473 +2704;0;-0.39163208;5.5919037;8.068741 +2704;12;0.28203636;-0.0458118;-0.23718837;0.9284926 +2705;3;-0.064941406;-0.09617615;0.014709473 +2706;0;-0.40596008;5.568161;8.149826 +2708;1;-0.47860163;5.3701615;8.195635 +2708;3;-0.092437744;-0.12550354;0.01776123 +2709;4;-11.506653;-8.9904785;-65.097046 +2709;6;0.47142726;-0.59880126;0.049770977 +2709;7;0.90255326;0.3751402;-0.21134686;0.0;-0.42861277;0.73591137;-0.5241428;0.0;-0.04109445 +2709;0;-0.40596008;5.558655;8.183212 +2709;3;-0.11747742;-0.14932251;0.020202637 +2710;12;0.28188786;-0.04597677;-0.23721339;0.9285232 +2711;0;-0.36775208;5.5253906;8.226135 +2711;1;-0.47263762;5.3661876;8.198583 +2712;2;-0.103952825;-0.24381924;0.062454224; +2712;3;-0.14129639;-0.16703796;0.023864746 +2714;0;-0.3438568;5.511139;8.254761 +2714;12;0.28157836;-0.04624176;-0.23727359;0.92858857 +2714;3;-0.15534973;-0.18170166;0.029968262 +2716;0;-0.3295288;5.4969025;8.283371 +2716;1;-0.46497807;5.3604836;8.20275 +2717;3;-0.16635132;-0.18841553;0.036087036 +2718;4;-12.5564575;-8.390808;-65.84625 +2718;6;0.48051107;-0.5855171;0.039761 +2718;7;0.896212;0.38523674;-0.2199927;0.0;-0.4423874;0.73904824;-0.50803655;0.0;-0.033129137 +2719;0;-0.27697754;5.4731293;8.316757 +2719;3;-0.17306519;-0.19024658;0.042800903 +2720;12;0.28114772;-0.046571016;-0.23734546;0.9286841 +2721;0;-0.25787354;5.4398804;8.316757 +2721;1;-0.45635298;5.3539224;8.207519 +2722;3;-0.17367554;-0.18841553;0.047683716 +2723;0;-0.26264954;5.3971252;8.35968 +2723;12;0.28065643;-0.046930544;-0.23740171;0.9288003 +2724;3;-0.16879272;-0.18353271;0.05441284 +2726;0;-0.24832153;5.420868;8.38353 +2726;1;-0.447556;5.3472767;8.212335 +2726;3;-0.1614685;-0.17253113;0.0574646 +2729;17;1;38dead6d7725;7695;790;-69; +2730;17;1;38dead6d60ff;-1627;693;-56; +2730;17;1;1c1bb5efa29a;12364;637;-74; +2730;17;1;1c1bb5ecd182;8652;2987;-66; +2730;4;-12.107849;-7.4905396;-64.94751 +2730;6;0.45382386;-0.573788;0.029611507 +2730;7;0.90542907;0.3681953;-0.21125951;0.0;-0.42376888;0.75483894;-0.50063795;0.0;-0.024865616 +2730;0;-0.20054626;5.3923798;8.407364 +2730;12;0.28016064;-0.04729036;-0.23742975;0.92892456 +2730;3;-0.15107727;-0.15603638;0.06173706 +2731;1;-0.43935016;5.341191;8.216737 +2731;0;-0.20054626;5.3496094;8.455063 +2731;2;-0.22157913;-0.10367155;-0.12676811; +2731;3;-0.13824463;-0.13771057;0.06600952 +2733;0;-0.16711426;5.378128;8.459839 +2733;12;0.27970648;-0.047616895;-0.23742233;0.9290467 +2734;3;-0.124191284;-0.115112305;0.06845093 +2734;5;999.5757 +2735;0;-0.143219;5.3638763;8.464584 +2735;1;-0.43240455;5.3360953;8.220415 +2736;3;-0.10708618;-0.09188843;0.070892334 +2739;4;-11.207581;-7.0404053;-65.84625 +2739;6;0.39940417;-0.56475526;0.016918177 +2739;7;0.92468196;0.32848567;-0.19251089;0.0;-0.38047215;0.7782341;-0.49959242;0.0;-0.014290433 +2739;0;-0.157547;5.344864;8.459839 +2739;3;-0.09060669;-0.06745911;0.071517944 +2739;12;0.27932826;-0.0478794;-0.23736884;0.92916054 +2740;0;-0.15278625;5.3258667;8.44075 +2740;1;-0.4271716;5.332242;8.223188 +2740;3;-0.07165527;-0.04425049;0.07333374 +2742;0;-0.147995;5.368622;8.416901 +2743;12;0.2790472;-0.0480601;-0.23727137;0.9292607 +2743;3;-0.052719116;-0.019821167;0.07333374 +2745;0;-0.15278625;5.3401184;8.35968 +2745;1;-0.42379248;5.329897;8.224884 +2745;3;-0.03501892;0.002166748;0.07333374 +2747;4;-11.357117;-7.4905396;-63.746643 +2747;6;0.42204648;-0.5683819;0.018274533 +2747;7;0.9161294;0.34522367;-0.2037833;0.0;-0.4005869;0.76882195;-0.49844068;0.0;-0.015400427 +2747;0;-0.16711426;5.378128;8.369217 +2747;3;-0.019729614;0.022323608;0.07333374 +2748;12;0.27887833;-0.048155837;-0.23713359;0.9293415 +2749;0;-0.20054626;5.3733673;8.369217 +2750;1;-0.42218888;5.3289433;8.225584 +2750;2;-0.3089656;-0.039684772;-0.18835545; +2750;3;-0.0069122314;0.040649414;0.07333374 +2752;0;-0.20533752;5.35437;8.340591 +2752;12;0.27881303;-0.048171;-0.23696272;0.9294039 +2752;3;0.0059051514;0.05531311;0.07395935 +2754;0;-0.18621826;5.368622;8.321533 +2754;1;-0.42199737;5.3290553;8.225521 +2755;3;0.016906738;0.0687561;0.07640076 +2757;4;-12.107849;-7.4905396;-64.94751 +2757;6;0.44061628;-0.57284284;0.022374144 +2757;7;0.9094345;0.3584125;-0.21087795;0.0;-0.41542214;0.7600996;-0.4996731;0.0;-0.018800845 +2757;0;-0.21966553;5.35437;8.340591 +2757;3;0.023620605;0.077301025;0.075790405 +2758;12;0.27882823;-0.048122123;-0.23676403;0.9294525 +2760;0;-0.17666626;5.3591156;8.2595215 +2761;3;0.02545166;0.085250854;0.07762146 +2761;1;-0.4227318;5.329998;8.224873 +2762;0;-0.22442627;5.387619;8.2642975 +2762;12;0.2789055;-0.0480315;-0.23654066;0.9294909 +2764;3;0.024230957;0.088912964;0.08067322 +2765;1;-0.42397022;5.3311763;8.224045 +2765;0;-0.23876953;5.4161377;8.235672 +2765;3;0.024230957;0.08769226;0.08128357 +2767;4;-12.857056;-7.940674;-63.89618 +2767;6;0.47997922;-0.5815371;0.028983992 +2767;7;0.8939827;0.38585624;-0.22783746;0.0;-0.4474467;0.7411982;-0.50041676;0.0;-0.024216196 +2767;0;-0.25309753;5.4066315;8.240448 +2767;3;0.0211792;0.08401489;0.08189392 +2767;12;0.27900285;-0.047912814;-0.2363009;0.9295288 +2770;1;-0.4251151;5.332285;8.223268 +2770;0;-0.25309753;5.3971252;8.197525 +2770;3;0.015075684;0.07913208;0.08433533 +2770;2;-0.25386846;-0.05769825;-0.048265457; +2773;0;-0.2722168;5.4018707;8.187988 +2773;12;0.27909517;-0.047796704;-0.2360569;0.92956907 +2773;3;0.008972168;0.07058716;0.083724976 +2773;5;999.5757 +2776;1;-0.42579192;5.3329873;8.222777 +2776;0;-0.2960968;5.3923798;8.192749 +2776;3;-8.087158E-4;0.061416626;0.08496094 +2777;12;0.27915654;-0.04769936;-0.23581621;0.9296167 +2778;4;-11.657715;-7.4905396;-65.24658 +2778;6;0.44536367;-0.58181095;0.0361256 +2778;7;0.91041553;0.35990837;-0.2039842;0.0;-0.41259307;0.75397223;-0.5111681;0.0;-0.030175248 +2778;0;-0.2817688;5.387619;8.235672 +2778;3;-0.010574341;0.049819946;0.083724976 +2779;1;-0.4256858;5.332972;8.222793 +2780;0;-0.25309753;5.378128;8.197525 +2781;3;-0.020355225;0.0357666;0.08555603 +2782;12;0.27916688;-0.047635477;-0.23558977;0.9296742 +2782;0;-0.30085754;5.3638763;8.221359 +2783;3;-0.030731201;0.024154663;0.08618164 +2783;0;-0.2817688;5.3733673;8.235672 +2784;1;-0.42455262;5.332163;8.223375 +2784;3;-0.04600525;0.012542725;0.08496094 +2786;4;-11.357117;-7.1914673;-65.69672 +2786;6;0.43026027;-0.5778282;0.034199875 +2786;7;0.9161159;0.34939033;-0.1966166;0.0;-0.39988914;0.761305;-0.5103952;0.0;-0.028641969 +2786;0;-0.2817688;5.3258667;8.240448 +2787;3;-0.059448242;3.5095215E-4;0.08496094 +2788;12;0.27911702;-0.047617987;-0.23537956;0.92974335 +2788;0;-0.25787354;5.3353577;8.2595215 +2788;1;-0.42249936;5.3302507;8.224721 +2789;3;-0.07104492;-0.012481689;0.083724976 +2789;2;-0.19308582;-0.04902506;0.0068387985; +2791;0;-0.26264954;5.311615;8.2595215 +2791;12;0.2789919;-0.04763744;-0.23519008;0.9298279 +2792;3;-0.08143616;-0.025314331;0.083724976 +2794;0;-0.24832153;5.287857;8.297668 +2794;1;-0.41946962;5.3273797;8.226736 +2794;3;-0.09060669;-0.03692627;0.08250427 +2801;4;-11.357117;-7.7911377;-65.24658 +2802;6;0.43965635;-0.5671714;0.029917736 +2802;7;0.91133326;0.35898533;-0.2014975;0.0;-0.4108956;0.76321274;-0.49866948;0.0;-0.025229573 +2802;0;-0.25309753;5.287857;8.311981 +2802;3;-0.09976196;-0.04486084;0.08250427 +2802;12;0.278798;-0.047699027;-0.23502286;0.92992514 +2802;0;-0.24354553;5.287857;8.33107 +2802;1;-0.4156014;5.3237357;8.22929 +2802;3;-0.104644775;-0.05340576;0.08128357 +2802;0;-0.23399353;5.254593;8.335815 +2802;12;0.2785485;-0.04779829;-0.23487538;0.9300321 +2802;3;-0.111968994;-0.059524536;0.08067322 +2803;0;-0.23399353;5.2260895;8.354904 +2803;3;-0.11503601;-0.0662384;0.079452515 +2803;1;-0.41114962;5.319533;8.232232 +2805;4;-11.207581;-7.0404053;-64.34631 +2805;6;0.43528813;-0.55879086;0.02799941 +2805;7;0.9126518;0.35753405;-0.1980813;0.0;-0.4080482;0.76882917;-0.49233967;0.0;-0.023737507 +2805;0;-0.22442627;5.173828;8.397842 +2805;3;-0.11930847;-0.06806946;0.07823181 +2806;12;0.2782578;-0.047923286;-0.23474343;0.930146 +2808;0;-0.20054626;5.1595764;8.393066 +2808;1;-0.40628707;5.314881;8.235477 +2808;3;-0.120529175;-0.06990051;0.07823181 +2808;2;-0.21790183;0.05707407;-0.096443176; +2810;0;-0.20533752;5.140564;8.421677 +2810;12;0.27793705;-0.048066907;-0.23462355;0.9302647 +2810;3;-0.116867065;-0.06929016;0.07640076 +2811;5;999.5757 +2812;0;-0.16711426;5.15007;8.464584 +2812;1;-0.40137747;5.310163;8.238761 +2812;3;-0.11381531;-0.06806946;0.07701111 +2814;4;-11.207581;-7.0404053;-64.34631 +2814;6;0.42857793;-0.54650533;0.019740196 +2814;7;0.9136436;0.35504723;-0.19798198;0.0;-0.40616626;0.77707696;-0.4808124;0.0;-0.016863862 +2816;0;-0.19099426;5.131073;8.49321 +2816;12;0.27761176;-0.04821359;-0.23450921;0.9303831 +2816;3;-0.111968994;-0.0650177;0.07762146 +2817;0;-0.19099426;5.107315;8.474136 +2817;3;-0.104644775;-0.060134888;0.07395935 +2817;1;-0.39659676;5.305642;8.241904 +2821;0;-0.19577026;5.0883026;8.459839 +2821;12;0.27730018;-0.04835572;-0.23439275;0.930498 +2821;3;-0.09854126;-0.055862427;0.07395935 +2822;0;-0.18144226;5.0883026;8.474136 +2822;3;-0.093048096;-0.047912598;0.07395935 +2823;1;-0.39224234;5.301548;8.244746 +2824;4;-12.257385;-7.0404053;-65.54718 +2824;6;0.4601253;-0.54064983;0.021408027 +2824;7;0.9006841;0.380726;-0.20932245;0.0;-0.4340868;0.7682048;-0.47056362;0.0;-0.018353293 +2824;0;-0.18621826;5.0693054;8.512299 +2825;3;-0.08387756;-0.042419434;0.0745697 +2825;12;0.2770178;-0.048482902;-0.23427677;0.93060464 +2826;0;-0.20533752;5.074051;8.488449 +2827;2;-0.24769121;0.18338823;-0.22337532; +2827;1;-0.38839665;5.297949;8.247242 +2827;3;-0.07777405;-0.03630066;0.07395935 +2829;0;-0.19577026;5.050308;8.483673 +2829;12;0.27677178;-0.048588093;-0.23415036;0.93070424 +2830;3;-0.06738281;-0.030807495;0.07333374 +2831;0;-0.20054626;5.06456;8.459839 +2832;1;-0.38503155;5.2949767;8.249308 +2832;3;-0.06188965;-0.025314331;0.07518005 +2834;4;-12.257385;-7.0404053;-65.54718 +2834;6;0.46587545;-0.5393092;0.023701243 +2834;7;0.89864475;0.3854466;-0.20944814;0.0;-0.43820554;0.76661867;-0.4693312;0.0;-0.020335272 +2834;0;-0.18621826;5.050308;8.49321 +2834;3;-0.05456543;-0.019195557;0.075790405 +2834;12;0.27656788;-0.048676055;-0.23401552;0.9307941 +2836;0;-0.21966553;5.0835724;8.445526 +2836;1;-0.38207376;5.292585;8.25098 +2836;3;-0.045394897;-0.01675415;0.07518005 +2839;0;-0.22442627;5.0930634;8.407364 +2839;12;0.27640474;-0.04874733;-0.23386775;0.930876 +2840;3;-0.036239624;-0.013702393;0.07333374 +2841;0;-0.18621826;5.059799;8.38829 +2841;1;-0.37943053;5.290912;8.252174 +2842;3;-0.03012085;-0.010650635;0.07395935 +2843;4;-12.5564575;-5.9906006;-67.04712 +2843;6;0.44634;-0.54265857;0.02219614 +2843;7;0.9067584;0.36965317;-0.20284417;0.0;-0.42122203;0.77244586;-0.47528875;0.0;-0.019005854 +2844;0;-0.23399353;5.06456;8.364441 +2844;3;-0.02279663;-0.00881958;0.07211304 +2844;12;0.27628464;-0.048812266;-0.23371585;0.93094635 +2846;0;-0.20054626;5.0930634;8.35968 +2846;1;-0.37704983;5.2898207;8.252984 +2846;2;-0.22124675;0.2121687;-0.16974068; +2846;3;-0.017288208;-0.00881958;0.06967163 +2848;0;-0.18621826;5.074051;8.350128 +2848;12;0.27620092;-0.048873127;-0.23356107;0.93100685 +2849;3;-0.013031006;-0.0082092285;0.067855835 +2849;5;999.5757 +2850;0;-0.23399353;5.1025696;8.33107 +2851;1;-0.37480828;5.289179;8.253498 +2851;3;-0.011795044;-0.007598877;0.06539917 +2853;4;-12.5564575;-5.9906006;-67.04712 +2853;6;0.45235804;-0.549366;0.028079469 +2853;7;0.90547186;0.37277266;-0.20288198;0.0;-0.42373013;0.7670746;-0.48171496;0.0;-0.02394459 +2853;0;-0.21487427;5.1025696;8.335815 +2853;3;-0.010574341;-0.007598877;0.063568115 +2854;12;0.27614486;-0.048933897;-0.23341283;0.93105745 +2856;1;-0.37273487;5.2887063;8.253894 +2856;0;-0.22442627;5.121567;8.335815 +2856;3;-0.010574341;-0.0069885254;0.06112671 +2859;17;1;38dead6d7725;7975;499;-69; +2860;17;1;38dead6d60ff;-1302;604;-53; +2861;17;1;1c1bb5efa29a;11310;799;-74; +2862;17;1;1c1bb5ecd182;8658;3841;-68; +2862;12;0.27609983;-0.048991945;-0.23327413;0.9311025 +2862;1;-0.37078658;5.288316;8.254231 +2863;0;-0.21966553;5.1120605;8.302444 +2863;3;-0.009353638;-0.0082092285;0.058685303 +2863;0;-0.23399353;5.1785736;8.2642975 +2863;3;-0.011199951;-0.010040283;0.055633545 +2863;4;-11.506653;-6.590271;-66.29639 +2863;6;0.42678407;-0.5595831;0.02830622 +2863;7;0.9161561;0.3508091;-0.19388413;0.0;-0.40010345;0.77145934;-0.49474025;0.0;-0.023985654 +2863;0;-0.23399353;5.1690826;8.2642975 +2863;3;-0.014251709;-0.013092041;0.05256653 +2863;12;0.2760616;-0.049047843;-0.23314539;0.93114316 +2865;0;-0.24354553;5.1595764;8.240448 +2865;1;-0.3688412;5.2878313;8.254629 +2865;2;-0.19546843;0.15298033;-0.04612446; +2865;3;-0.017913818;-0.016159058;0.04951477 +2867;0;-0.23399353;5.1833344;8.221359 +2868;12;0.2760164;-0.049107067;-0.23303254;0.93118167 +2868;3;-0.021575928;-0.019821167;0.047683716 +2870;0;-0.23876953;5.197586;8.221359 +2870;1;-0.36678153;5.2870893;8.255197 +2870;3;-0.027679443;-0.023483276;0.04524231 +2872;4;-11.506653;-6.590271;-66.29639 +2872;6;0.42518276;-0.5635734;0.029034425 +2872;7;0.91697645;0.34869674;-0.19381651;0.0;-0.39818585;0.77008426;-0.49841565;0.0;-0.024540845 +2872;0;-0.24832153;5.173828;8.2070465 +2872;3;-0.033798218;-0.027145386;0.042800903 +2873;12;0.2759537;-0.04917286;-0.23293662;0.9312208 +2874;0;-0.27697754;5.1928253;8.192749 +2875;1;-0.3645742;5.2859087;8.25605 +2875;3;-0.041122437;-0.029586792;0.04219055 +2877;0;-0.2817688;5.1833344;8.178452 +2877;12;0.2758641;-0.049244456;-0.23285788;0.93126327 +2878;3;-0.048446655;-0.033859253;0.0415802 +2880;0;-0.2722168;5.188095;8.187988 +2881;1;-0.36216894;5.284167;8.257271 +2881;3;-0.055160522;-0.038146973;0.039749146 +2882;4;-12.257385;-6.590271;-63.89618 +2882;6;0.46879998;-0.5645262;0.033233628 +2882;7;0.89965063;0.38171333;-0.21195255;0.0;-0.4357074;0.7536932;-0.49204257;0.0;-0.028072005 +2882;0;-0.2817688;5.221344;8.178452 +2882;3;-0.060058594;-0.041809082;0.03730774 +2883;12;0.2757398;-0.04932177;-0.2327893;0.93131316 +2884;0;-0.2817688;5.197586;8.140289 +2884;1;-0.35954356;5.2819495;8.258804 +2885;2;-0.14576033;0.082511425;0.07007599; +2885;3;-0.068603516;-0.043640137;0.03791809 +2886;0;-0.2960968;5.197586;8.149826 +2887;12;0.27558437;-0.049407158;-0.23273571;0.93136805 +2887;3;-0.0771637;-0.046691895;0.039749146 +2888;5;999.57135 +2889;0;-0.3104248;5.2023315;8.14505 +2889;1;-0.3567284;5.279127;8.260731 +2890;3;-0.08326721;-0.050354004;0.04096985 +2892;4;-13.90686;-6.2911987;-65.54718 +2892;6;0.5050415;-0.56806886;0.038093645 +2892;7;0.8844333;0.40785196;-0.22679187;0.0;-0.46556112;0.7377039;-0.488923;0.0;-0.032102946 +2892;0;-0.3343048;5.1833344;8.173676 +2894;12;0.27539194;-0.049494144;-0.2326872;0.93143237 +2894;3;-0.088760376;-0.054031372;0.040359497 +2896;1;-0.3536095;5.275765;8.263013 +2896;0;-0.3104248;5.1595764;8.159363 +2896;3;-0.09487915;-0.055862427;0.04219055 +2898;0;-0.3343048;5.1833344;8.164139 +2898;3;-0.10281372;-0.05708313;0.044631958 +2898;12;0.27516547;-0.049590394;-0.23264089;0.93150586 +2900;1;-0.3502614;5.2719026;8.265619 +2900;0;-0.32476807;5.1690826;8.1689 +2900;3;-0.108306885;-0.05708313;0.046463013 +2902;4;-11.657715;-6.1401367;-65.24658 +2902;6;0.4510126;-0.56381464;0.039735723 +2902;7;0.9085493;0.3684132;-0.19700216;0.0;-0.41642612;0.7607056;-0.49791184;0.0;-0.033576693 +2902;0;-0.3199768;5.154831;8.159363 +2902;3;-0.112594604;-0.059524536;0.04890442 +2902;12;0.2749074;-0.049690627;-0.23259279;0.9315887 +2904;0;-0.35820007;5.164322;8.154587 +2904;1;-0.34674633;5.2675815;8.268521 +2904;2;-0.07386854;0.08369112;0.111390114; +2906;3;-0.11747742;-0.058303833;0.050125122 +2906;0;-0.35820007;5.121567;8.178452 +2906;12;0.27462175;-0.049789395;-0.23253827;0.9316813 +2907;3;-0.12236023;-0.05769348;0.050125122 +2911;0;-0.3438568;5.154831;8.159363 +2911;3;-0.12541199;-0.059524536;0.051345825 +2911;1;-0.34319618;5.2628736;8.2716675 +2913;4;-13.006592;-6.890869;-66.44745 +2913;6;0.49412462;-0.56305146;0.042117685 +2913;7;0.8902622;0.40104955;-0.21585263;0.0;-0.45405433;0.7444795;-0.48947397;0.0;-0.03560546 +2913;0;-0.3534088;5.1358337;8.183212 +2913;3;-0.1272583;-0.058303833;0.051345825 +2913;12;0.274315;-0.049884122;-0.23247907;0.93178135 +2914;1;-0.3395864;5.2579107;8.274972 +2914;0;-0.35820007;5.140564;8.1689 +2914;3;-0.1290741;-0.05708313;0.051971436 +2916;0;-0.36775208;5.121567;8.178452 +2916;3;-0.13092041;-0.054641724;0.051971436 +2916;12;0.27399305;-0.04997724;-0.23241873;0.931886 +2918;1;-0.3361044;5.2527943;8.278363 +2918;0;-0.38208008;5.1120605;8.159363 +2919;3;-0.13214111;-0.05218506;0.05319214 +2921;4;-13.157654;-5.6915283;-65.097046 +2921;6;0.5040984;-0.559204;0.046793014 +2921;7;0.88663805;0.40944377;-0.21500881;0.0;-0.4607611;0.7422353;-0.4866066;0.0;-0.03965092 +2921;0;-0.39640808;5.1168213;8.173676 +2921;3;-0.13397217;-0.0491333;0.051345825 +2922;12;0.27366468;-0.050060518;-0.23235588;0.93199384 +2923;1;-0.33284223;5.2475653;8.281811 +2923;0;-0.39163208;5.1453247;8.178452 +2923;3;-0.13641357;-0.047912598;0.051345825 +2923;2;-0.014444053;0.10957718;0.111517906; +2925;12;0.27333322;-0.050129827;-0.23228943;0.9321038 +2926;0;-0.42507935;5.1025696;8.149826 +2926;3;-0.13458252;-0.04547119;0.04951477 +2926;5;999.57135 +2928;1;-0.3298084;5.242237;8.285306 +2928;0;-0.40596008;5.1358337;8.1689 +2928;3;-0.13702393;-0.04425049;0.04951477 +2930;4;-12.257385;-7.0404053;-65.097046 +2930;6;0.5005184;-0.5607041;0.049654957 +2930;7;0.8889189;0.40640157;-0.21133143;0.0;-0.4561319;0.74299735;-0.48979452;0.0;-0.04203456 +2930;0;-0.41073608;5.097824;8.159363 +2930;3;-0.13946533;-0.041809082;0.04890442 +2931;12;0.27299878;-0.050187543;-0.23222478;0.9322149 +2932;1;-0.3269424;5.236788;8.288864 +2932;0;-0.39640808;5.1168213;8.178452 +2933;3;-0.14129639;-0.042419434;0.050125122 +2935;12;0.27265972;-0.0502344;-0.23216094;0.9323275 +2935;0;-0.42507935;5.097824;8.202286 +2935;3;-0.14129639;-0.039978027;0.050750732 +2938;1;-0.32413867;5.231203;8.2925005 +2938;0;-0.4202881;5.0930634;8.183212 +2940;3;-0.1437378;-0.039367676;0.050125122 +2940;4;-13.157654;-5.39093;-65.54718 +2940;6;0.50828093;-0.55612195;0.051314704 +2940;7;0.88561016;0.41333833;-0.21176854;0.0;-0.46238163;0.74194115;-0.48551673;0.0;-0.043562904 +2940;0;-0.41552734;5.1120605;8.173676 +2940;3;-0.14680481;-0.038757324;0.04951477 +2940;12;0.27231517;-0.05027589;-0.23209357;0.9324427 +2942;1;-0.3214368;5.225476;8.296216 +2943;2;0.043849796;0.110816;0.122903824; +2950;12;0.27196342;-0.050309543;-0.23202677;0.9325602 +2951;0;-0.42507935;5.107315;8.187988 +2951;3;-0.15168762;-0.03692627;0.04890442 +2951;0;-0.4298401;5.121567;8.202286 +2951;3;-0.15229797;-0.038146973;0.050125122 +2951;1;-0.3187994;5.2194448;8.300113 +2951;0;-0.43463135;5.1168213;8.192749 +2951;3;-0.15534973;-0.039367676;0.04951477 +2951;4;-12.257385;-5.9906006;-65.84625 +2951;6;0.49166864;-0.557648;0.053001054 +2951;7;0.89354354;0.40057576;-0.20277841;0.0;-0.4467208;0.74799395;-0.49086213;0.0;-0.04495045 +2951;0;-0.41552734;5.0930634;8.226135 +2951;3;-0.15840149;-0.038757324;0.050125122 +2951;12;0.2715948;-0.05033589;-0.23195979;0.9326829 +2951;0;-0.4202881;5.154831;8.202286 +2951;1;-0.3160999;5.213255;8.304105 +2952;3;-0.16268921;-0.039367676;0.04951477 +2954;12;0.2712193;-0.05036319;-0.23189424;0.93280697 +2954;0;-0.44418335;5.1595764;8.197525 +2954;3;-0.16635132;-0.038146973;0.04890442 +2956;0;-0.42507935;5.15007;8.2118225 +2956;1;-0.31344658;5.206789;8.308262 +2956;3;-0.16940308;-0.03753662;0.048294067 +2958;4;-13.456726;-6.440735;-64.94751 +2958;6;0.53100955;-0.5595441;0.051718153 +2958;7;0.8750389;0.42917615;-0.2238634;0.0;-0.48206595;0.7307938;-0.48327336;0.0;-0.043811455 +2959;0;-0.41073608;5.188095;8.2165985 +2959;3;-0.17489624;-0.03753662;0.046463013 +2959;12;0.27082723;-0.05038581;-0.23183051;0.9329354 +2961;0;-0.41073608;5.2023315;8.2165985 +2961;1;-0.31086752;5.2000403;8.312584 +2961;2;0.063114434;0.045054913;0.10649586; +2961;3;-0.18101501;-0.03630066;0.04585266 +2963;0;-0.4298401;5.1785736;8.240448 +2964;12;0.27041984;-0.050400298;-0.23177099;0.9330677 +2964;3;-0.18284607;-0.033859253;0.04524231 +2965;5;999.57135 +2965;0;-0.44418335;5.2260895;8.2595215 +2966;1;-0.30845803;5.1928935;8.317141 +2966;3;-0.18955994;-0.0332489;0.043411255 +2968;4;-11.357117;-6.440735;-64.94751 +2968;6;0.47448716;-0.56349015;0.053726584 +2968;7;0.90134865;0.38624653;-0.19591872;0.0;-0.4307082;0.7520028;-0.49898133;0.0;-0.0453984 +2968;0;-0.40119934;5.2023315;8.235672 +2968;3;-0.19322205;-0.0320282;0.04096985 +2969;12;0.26999295;-0.050402567;-0.23171464;0.93320507 +2970;0;-0.42507935;5.240341;8.235672 +2970;1;-0.30621007;5.1853848;8.321907 +2971;3;-0.19689941;-0.0332489;0.038528442 +2973;0;-0.45373535;5.211838;8.240448 +2973;12;0.2695479;-0.050391465;-0.23166586;0.93334645 +2973;3;-0.20239258;-0.0320282;0.038528442 +2975;0;-0.45373535;5.2498474;8.269058 +2975;1;-0.3040938;5.1775427;8.326866 +2975;3;-0.20544434;-0.030197144;0.036087036 +2977;4;-11.506653;-7.940674;-65.54718 +2977;6;0.49407956;-0.5649914;0.054816492 +2977;7;0.8929942;0.4005242;-0.2052843;0.0;-0.44768283;0.74358445;-0.4966508;0.0;-0.04627445 +2978;0;-0.44895935;5.2260895;8.269058 +2978;3;-0.2097168;-0.030807495;0.034866333 +2979;12;0.26908505;-0.050372865;-0.23162638;0.9334908 +2980;0;-0.44895935;5.2450867;8.292908 +2981;1;-0.30213472;5.1693745;8.332011 +2981;2;0.08658162;-0.059937;0.07892418; +2983;12;0.26860613;-0.050342683;-0.23159334;0.9336386 +2983;3;-0.21520996;-0.029586792;0.03425598 +2983;0;-0.47283936;5.2593536;8.321533 +2984;3;-0.21705627;-0.030197144;0.03363037 +2990;0;-0.47763062;5.2498474;8.33107 +2990;1;-0.30026317;5.1608567;8.337356 +2990;3;-0.22377014;-0.027145386;0.032409668 +2990;4;-12.5564575;-6.590271;-63.597107 +2990;6;0.5262121;-0.5615564;0.057268556 +2990;7;0.87860656;0.42512786;-0.21752392;0.0;-0.47508234;0.7319191;-0.48845792;0.0;-0.048447184 +2990;0;-0.5110626;5.2830963;8.311981 +2990;3;-0.2256012;-0.027145386;0.032409668 +2990;12;0.26810956;-0.050304;-0.23156464;0.9337905 +2990;0;-0.5397186;5.302109;8.340591 +2991;1;-0.29858795;5.1520243;8.342877 +2991;3;-0.22987366;-0.025314331;0.030578613 +2992;0;-0.55882263;5.2830963;8.335815 +2992;12;0.2675971;-0.050251223;-0.23153919;0.9339466 +2992;3;-0.23353577;-0.025314331;0.031188965 +2994;0;-0.55882263;5.2926025;8.364441 +2994;1;-0.2970555;5.1428967;8.348562 +2994;3;-0.23782349;-0.024093628;0.029968262 +2997;4;-12.857056;-6.590271;-63.597107 +2997;6;0.549884;-0.5631474;0.06671019 +2997;7;0.869286;0.4418897;-0.22152944;0.0;-0.49108505;0.7209281;-0.4889765;0.0;-0.0563669 +2997;0;-0.5683899;5.2830963;8.373978 +2997;3;-0.2414856;-0.027145386;0.029968262 +2998;12;0.26706982;-0.050188705;-0.23151697;0.9341064 +2999;0;-0.5874939;5.278351;8.402588 +2999;1;-0.2955522;5.133431;8.354439 +3000;2;0.18998131;-0.15250874;0.009115219; +3000;3;-0.24636841;-0.025314331;0.02935791 +3002;0;-0.5874939;5.302109;8.416901 +3002;12;0.26652443;-0.050120723;-0.2314982;0.93427044 +3002;3;-0.24636841;-0.02897644;0.030578613 +3003;5;999.57135 +3004;0;-0.63049316;5.302109;8.41214 +3004;1;-0.29401776;5.123701;8.360463 +3004;3;-0.25064087;-0.030807495;0.028137207 +3008;4;-12.857056;-5.9906006;-64.64691 +3008;6;0.5510927;-0.56113344;0.07481051 +3008;7;0.8703959;0.44332287;-0.21418655;0.0;-0.48826915;0.72130805;-0.49123105;0.0;-0.06327944 +3008;12;0.2659643;-0.050051156;-0.23148142;0.93443793 +3008;0;-0.60661316;5.297348;8.41214 +3008;3;-0.25308228;-0.031417847;0.027526855 +3009;0;-0.63526917;5.278351;8.431213 +3009;1;-0.29239002;5.113738;8.366618 +3009;3;-0.2561493;-0.0332489;0.026916504 +3011;0;-0.67349243;5.302109;8.459839 +3011;12;0.26538956;-0.0499843;-0.23147301;0.93460697 +3012;3;-0.25675964;-0.03263855;0.028137207 +3013;0;-0.70692444;5.278351;8.459839 +3014;1;-0.2907607;5.1035776;8.372876 +3014;3;-0.2598114;-0.035079956;0.028137207 +3016;4;-12.70752;-6.1401367;-64.19678 +3016;6;0.5714661;-0.5562685;0.08336872 +3016;7;0.8619691;0.45932013;-0.2145556;0.0;-0.50200415;0.71429604;-0.48761967;0.0;-0.07071734 +3016;0;-0.67349243;5.302109;8.459839 +3017;3;-0.26164246;-0.03630066;0.0256958 +3017;12;0.2648041;-0.04991719;-0.23146735;0.93477803 +3019;0;-0.72125244;5.278351;8.459839 +3019;1;-0.28903168;5.093179;8.379266 +3019;2;0.31752545;-0.20665407;-0.057102203; +3019;3;-0.26286316;-0.035705566;0.024475098 +3021;0;-0.73080444;5.302109;8.483673 +3022;12;0.26420432;-0.04985157;-0.23146558;0.9349517 +3022;3;-0.2634735;-0.035705566;0.022644043 +3023;0;-0.7594757;5.2688446;8.478897 +3023;1;-0.28744227;5.082734;8.385661 +3024;3;-0.2628479;-0.03692627;0.021438599 +3025;4;-11.657715;-5.8410645;-66.89758 +3026;6;0.5366294;-0.55422163;0.089334056 +3026;7;0.88001364;0.4347144;-0.1913095;0.0;-0.46885082;0.730788;-0.4961127;0.0;-0.07586067 +3026;0;-0.7833557;5.2593536;8.488449 +3028;12;0.26360306;-0.049780387;-0.23147175;0.9351237 +3028;3;-0.26223755;-0.038757324;0.020828247 +3028;1;-0.28586468;5.072298;8.392031 +3028;0;-0.7881317;5.2926025;8.512299 +3029;3;-0.2604065;-0.038757324;0.019607544 +3031;0;-0.7833557;5.2593536;8.521835 +3031;12;0.2630025;-0.049712334;-0.23148507;0.935293 +3031;3;-0.25979614;-0.039367676;0.01838684 +3033;0;-0.7976837;5.2688446;8.512299 +3033;1;-0.28429615;5.0619435;8.398334 +3033;3;-0.25674438;-0.039367676;0.015319824 +3035;4;-13.456726;-4.1915894;-66.14685 +3035;6;0.57308376;-0.55229586;0.09343669 +3035;7;0.86310947;0.4616088;-0.20483969;0.0;-0.49873143;0.71530896;-0.4894896;0.0;-0.079429045 +3035;0;-0.802475;5.2830963;8.517059 +3036;3;-0.25613403;-0.04058838;0.015945435 +3036;12;0.26240772;-0.049646422;-0.23150373;0.93545896 +3038;0;-0.835907;5.254593;8.517059 +3038;1;-0.28280002;5.0517373;8.404528 +3039;2;0.45589733;-0.22931004;-0.09664631; +3039;3;-0.25491333;-0.04119873;0.012878418 +3041;0;-0.802475;5.254593;8.526611 +3041;12;0.26182073;-0.049581394;-0.23153023;0.93562037 +3042;3;-0.25125122;-0.041809082;0.012268066 +3042;5;999.57135 +3042;0;-0.855011;5.2830963;8.526611 +3042;1;-0.2813261;5.041659;8.410626 +3043;3;-0.2469635;-0.041809082;0.011047363 +3045;4;-13.157654;-4.3411255;-66.596985 +3045;6;0.57597375;-0.55247027;0.09994151 +3045;7;0.86299604;0.46362433;-0.20072463;0.0;-0.49802062;0.71389526;-0.4922695;0.0;-0.08493174 +3045;0;-0.888443;5.278351;8.497986 +3045;3;-0.24208069;-0.043029785;0.008605957 +3046;12;0.26124296;-0.049517684;-0.2315644;0.9357767 +3050;12;0.26068592;-0.049458135;-0.23160455;0.93592525 +3050;0;-0.888443;5.297348;8.517059 +3050;3;-0.23597717;-0.043640137;0.006164551 +3051;0;-0.91233826;5.3163605;8.507523 +3051;1;-0.27993852;5.0319457;8.416488 +3051;3;-0.23046875;-0.043640137;0.004333496 +3052;0;-0.859787;5.3401184;8.521835 +3054;17;1;38dead6d7725;6573;1725;-68; +3055;17;1;38dead6d60ff;-248;1656;-51; +3056;17;0;1c1bb5efa29a;0;0;0; +3057;17;1;1c1bb5ecd182;11228;1672;-70; +3057;1;-0.2786089;5.0227075;8.422048 +3057;3;-0.22253418;-0.043640137;6.713867E-4 +3057;4;-12.406921;-6.1401367;-65.69672 +3057;6;0.5830915;-0.55750144;0.10055197 +3057;7;0.85979027;0.46723416;-0.20604123;0.0;-0.50349253;0.70836425;-0.49468747;0.0;-0.08518266 +3057;0;-0.86935425;5.330597;8.507523 +3057;3;-0.21765137;-0.04425049;-0.0017852783 +3057;12;0.26015517;-0.049406625;-0.23165374;0.93606347 +3057;0;-0.840683;5.330597;8.517059 +3057;1;-0.2773779;5.013997;8.427278 +3057;2;0.54230917;-0.29771423;-0.08493805; +3057;3;-0.20970154;-0.04119873;-0.006668091 +3061;0;-0.835907;5.4161377;8.507523 +3061;12;0.259656;-0.049361065;-0.23171401;0.9361896 +3061;3;-0.20359802;-0.039978027;-0.009109497 +3063;1;-0.27642873;5.0058746;8.432136 +3064;0;-0.816803;5.411377;8.540909 +3064;3;-0.19688416;-0.03630066;-0.012161255 +3065;4;-12.857056;-4.0405273;-65.097046 +3065;6;0.5570459;-0.56269175;0.09534423 +3065;7;0.87181485;0.4471701;-0.19994417;0.0;-0.48317176;0.7179513;-0.5010897;0.0;-0.08052214 +3065;0;-0.8215637;5.454132;8.517059 +3065;3;-0.19137573;-0.0332489;-0.015213013 +3065;12;0.2591917;-0.04931229;-0.2317864;0.93630296 +3067;1;-0.2758661;4.9982715;8.436663 +3067;0;-0.864563;5.454132;8.569519 +3067;3;-0.18588257;-0.02897644;-0.015213013 +3069;0;-0.835907;5.4731293;8.526611 +3070;12;0.2587607;-0.04925282;-0.23186703;0.9364053 +3070;3;-0.18099976;-0.023483276;-0.01889038 +3074;0;-0.826355;5.5396423;8.507523 +3074;3;-0.17427063;-0.018600464;-0.021331787 +3074;1;-0.27571714;4.991147;8.440886 +3076;4;-13.757324;-3.741455;-64.19678 +3076;6;0.5723184;-0.57503575;0.09682852 +3076;7;0.8651859;0.45448127;-0.21189636;0.0;-0.49484482;0.7054487;-0.5074158;0.0;-0.081128955 +3076;12;0.25836372;-0.049180012;-0.23194796;0.93649864 +3076;0;-0.840683;5.5871735;8.502762 +3076;3;-0.16816711;-0.013092041;-0.02558899 +3077;0;-0.826355;5.6204224;8.497986 +3077;3;-0.16145325;-0.00881958;-0.029266357 +3077;1;-0.27613974;4.9845834;8.44475 +3078;2;0.51399183;-0.5186353;-0.07289314; +3080;0;-0.7881317;5.6869354;8.483673 +3080;3;-0.15594482;-0.004547119;-0.031082153 +3081;12;0.2580044;-0.049088974;-0.23203468;0.936581 +3081;5;999.57806 +3083;0;-0.7929077;5.7059326;8.502762 +3083;1;-0.27705002;4.9785843;8.448257 +3083;3;-0.14860535;0.0040130615;-0.03352356 +3084;4;-12.5564575;-5.39093;-66.29639 +3084;6;0.534154;-0.5890421;0.09298405 +3084;7;0.88324374;0.42331386;-0.20170735;0.0;-0.46251515;0.7156487;-0.52338;0.0;-0.07720239 +3084;0;-0.7929077;5.7296906;8.507523 +3085;12;0.25768113;-0.04898147;-0.23212878;0.93665224 +3085;3;-0.14312744;0.010101318;-0.037200928 +3087;0;-0.7976837;5.758194;8.497986 +3087;1;-0.27864045;4.973128;8.451418 +3089;3;-0.14190674;0.017440796;-0.040252686 +3090;0;-0.7833557;5.80571;8.512299 +3090;3;-0.13700867;0.027832031;-0.04147339 +3090;12;0.2573975;-0.048847992;-0.23222436;0.93671364 +3090;1;-0.28099015;4.9679456;8.454389 +3091;0;-0.7881317;5.848465;8.49321 +3091;3;-0.13456726;0.037597656;-0.04208374 +3101;4;-12.257385;-4.940796;-66.29639 +3101;6;0.51203746;-0.60103613;0.09253052 +3101;7;0.8936195;0.40408996;-0.1953344;0.0;-0.4423086;0.7189743;-0.5361334;0.0;-0.0762057 +3101;0;-0.7785797;5.89122;8.512299 +3101;3;-0.13212585;0.047973633;-0.044525146 +3101;12;0.25713897;-0.048680115;-0.23232198;0.93676907 +3101;0;-0.7403717;5.9102325;8.507523 +3101;1;-0.2841719;4.963091;8.457132 +3101;2;0.45653948;-0.83919525;-0.040538788; +3101;3;-0.13150024;0.055923462;-0.044525146 +3101;0;-0.75468445;5.9387207;8.478897 +3102;12;0.2569096;-0.04847226;-0.23241068;0.9368208 +3102;3;-0.13150024;0.065704346;-0.045135498 +3102;0;-0.7499237;5.9529877;8.507523 +3102;1;-0.28811017;4.958349;8.45978 +3102;3;-0.13456726;0.07485962;-0.045135498 +3103;4;-13.757324;-4.4906616;-65.24658 +3103;6;0.53499526;-0.60872954;0.08792106 +3103;7;0.8825475;0.4182576;-0.21487324;0.0;-0.46467283;0.705745;-0.53479266;0.0;-0.072035365 +3105;0;-0.7881317;5.9672394;8.517059 +3105;12;0.25669578;-0.04822362;-0.2324916;0.9368722 +3105;1;-0.29277742;4.9534316;8.462501 +3105;3;-0.13822937;0.0821991;-0.043914795 +3105;0;-0.7738037;6.0242615;8.521835 +3105;3;-0.14190674;0.089523315;-0.044525146 +3108;0;-0.7785797;6.048004;8.459839 +3108;12;0.25648433;-0.047933444;-0.2325611;0.93692774 +3109;3;-0.14494324;0.09501648;-0.043914795 +3109;1;-0.29800394;4.9482865;8.465327 +3109;0;-0.8120117;6.0432434;8.478897 +3110;3;-0.15289307;0.09867859;-0.044525146 +3111;4;-13.607788;-4.940796;-66.29639 +3112;6;0.53648514;-0.6170689;0.095477365 +3112;7;0.883791;0.4168567;-0.21247078;0.0;-0.46137637;0.70099795;-0.5438141;0.0;-0.077750996 +3113;12;0.25626618;-0.04760712;-0.23262264;0.93698883 +3121;1;-0.3035661;4.942605;8.468448 +3121;2;0.4462022;-1.0832167;-0.018582344; +3121;12;0.25602323;-0.04725603;-0.2326793;0.9370589 +3121;1;-0.3091141;4.9361753;8.471997 +3122;0;-0.835907;6.062256;8.488449 +3122;3;-0.16082764;0.101745605;-0.04269409 +3122;0;-0.831131;6.071762;8.488449 +3122;3;-0.17121887;0.101745605;-0.040863037 +3123;12;0.25573906;-0.046891056;-0.23272721;0.93714297 +3123;0;-0.831131;6.071762;8.474136 +3124;3;-0.18037415;0.10296631;-0.03781128 +3124;1;-0.3144355;4.9289575;8.476003 +3124;5;999.57806 +3124;0;-0.845459;6.086014;8.488449 +3124;3;-0.19015503;0.101119995;-0.03475952 +3125;4;-12.406921;-4.79126;-66.89758 +3125;6;0.5084649;-0.61969316;0.099273704 +3125;7;0.8972155;0.39631286;-0.19478314;0.0;-0.4341599;0.71107274;-0.5530649;0.0;-0.08068175 +3125;0;-0.883667;6.0670013;8.488449 +3125;3;-0.20054626;0.097457886;-0.031707764 +3125;0;-0.897995;6.086014;8.49321 +3125;3;-0.2127533;0.09196472;-0.028640747 +3126;0;-0.874115;6.0670013;8.502762 +3126;12;0.25540885;-0.046525184;-0.23276575;0.9372417 +3127;3;-0.22253418;0.0846405;-0.024368286 +3128;13;90.64299 +3130;1;-0.31915465;4.9208164;8.480556 +3130;0;-0.9219055;6.0337524;8.54567 +3131;3;-0.23352051;0.07608032;-0.020706177 +3131;4;-12.257385;-4.6401978;-65.54718 +3131;6;0.5287853;-0.612058;0.10746424 +3131;7;0.88952863;0.4129044;-0.19557293;0.0;-0.44836625;0.7066815;-0.54732895;0.0;-0.08778677 +3132;0;-0.897995;6.005249;8.507523 +3132;3;-0.24391174;0.06692505;-0.015213013 +3132;12;0.2550196;-0.04617424;-0.23279868;0.9373568 +3134;1;-0.32302228;4.9117384;8.48567 +3134;2;0.5225576;-1.1554089;-0.01632595; +3134;0;-0.92666626;6.005249;8.569519 +3135;3;-0.25306702;0.057144165;-0.010940552 +3138;12;0.254568;-0.04585227;-0.23282515;0.9374888 +3138;0;-0.90278625;6.005249;8.607666 +3138;3;-0.26345825;0.046157837;-0.0048217773 +3138;1;-0.3258152;4.9019127;8.491242 +3139;0;-0.91233826;5.986252;8.598129 +3139;3;-0.27017212;0.0357666;-0.001159668 +3142;12;0.25406247;-0.04557182;-0.23284292;0.9376352 +3143;4;-13.006592;-3.741455;-67.196655 +3143;6;0.5299583;-0.6055669;0.10571337 +3143;7;0.8883732;0.41560963;-0.19509442;0.0;-0.45085144;0.7093997;-0.5417428;0.0;-0.08675358 +3143;0;-0.9219055;5.972;8.621979 +3143;3;-0.2750702;0.025375366;0.006164551 +3143;0;-0.91711426;5.9339905;8.664902 +3143;1;-0.32751703;4.8914776;8.497193 +3143;3;-0.2787323;0.017440796;0.012268066 +3145;0;-0.87890625;5.9102325;8.6792145 +3145;12;0.2535085;-0.04533726;-0.23285174;0.93779427 +3146;3;-0.2836151;0.008285522;0.016540527 +3147;0;-0.897995;5.872223;8.712601 +3148;1;-0.32819033;4.880654;8.503389 +3148;3;-0.2823944;-0.0014953613;0.023269653 +3150;4;-13.456726;-4.79126;-66.89758 +3150;6;0.5597434;-0.59061056;0.102705866 +3150;7;0.8732406;0.44102308;-0.2072424;0.0;-0.4797905;0.70384395;-0.5238365;0.0;-0.08515768 +3150;0;-0.86935425;5.8627167;8.717377 +3150;3;-0.2811737;-0.00881958;0.028152466 +3151;12;0.25292155;-0.045145024;-0.23284543;0.93796366 +3152;0;-0.845459;5.834198;8.717377 +3152;1;-0.32783937;4.8697896;8.509629 +3153;2;0.52754074;-1.0685115;-0.14756489; +3153;3;-0.27690125;-0.014312744;0.036102295 +3155;0;-0.850235;5.824707;8.693527 +3155;12;0.25232095;-0.045001045;-0.23282418;0.9381375 +3155;3;-0.27201843;-0.022872925;0.040985107 +3157;5;999.57806 +3157;0;-0.826355;5.8199615;8.6839905 +3157;1;-0.3266186;4.8591714;8.515744 +3157;3;-0.2640686;-0.02897644;0.04647827 +3160;4;-12.70752;-3.1402588;-66.44745 +3160;6;0.5155543;-0.5883582;0.09487277 +3160;7;0.8920275;0.4101178;-0.1899747;0.0;-0.4450587;0.72372836;-0.5273898;0.0;-0.078801855 +3161;0;-0.816803;5.80571;8.626755 +3161;3;-0.25735474;-0.04119873;0.051361084 +3162;12;0.25172487;-0.044899672;-0.23278058;0.93831325 +3162;0;-0.8215637;5.739197;8.631531 +3162;1;-0.32450265;4.8492656;8.521469 +3162;3;-0.2469635;-0.05340576;0.055648804 +3164;0;-0.7499237;5.6726837;8.712601 +3165;12;0.25115317;-0.04485054;-0.23272282;0.93848324 +3165;3;-0.23597717;-0.063797;0.059310913 +3167;0;-0.71647644;5.634674;8.755524 +3167;1;-0.32111156;4.839908;8.526916 +3167;3;-0.22680664;-0.07052612;0.063583374 +3169;4;-11.956787;-3.590393;-65.84625 +3169;6;0.4968415;-0.5703145;0.08164943 +3169;7;0.89715236;0.40121225;-0.18478756;0.0;-0.43635398;0.7399595;-0.5119132;0.0;-0.06865053 +3169;0;-0.68304443;5.5966644;8.784149 +3170;3;-0.21643066;-0.071746826;0.06968689 +3170;12;0.25059697;-0.04487258;-0.23265637;0.9386472 +3172;0;-0.68304443;5.610916;8.831833 +3172;1;-0.3169773;4.8313756;8.531908 +3172;2;0.41473702;-0.8993244;-0.1745491; +3172;3;-0.20298767;-0.071746826;0.07458496 +3174;0;-0.6925812;5.6204224;8.827072 +3174;12;0.25008008;-0.044939376;-0.23257509;0.9388021 +3175;3;-0.18832397;-0.06745911;0.07946777 +3176;0;-0.65437317;5.610916;8.798447 +3177;1;-0.3126619;4.8239284;8.536279 +3177;3;-0.17121887;-0.063186646;0.08129883 +3179;4;-11.357117;-4.1915894;-66.44745 +3179;6;0.47545636;-0.56644195;0.07423704 +3179;7;0.904854;0.38625172;-0.1790218;0.0;-0.42109656;0.75022286;-0.50974816;0.0;-0.06258485 +3180;0;-0.6018219;5.549164;8.769836 +3180;3;-0.15289307;-0.058303833;0.084350586 +3180;12;0.24962085;-0.045025595;-0.23246561;0.9389472 +3182;0;-0.6161499;5.4969025;8.722153 +3182;3;-0.13517761;-0.05340576;0.088012695 +3182;1;-0.30852687;4.8178315;8.539872 +3184;0;-0.5636139;5.468399;8.741211 +3185;3;-0.116241455;-0.046081543;0.088012695 +3185;12;0.24923913;-0.045114905;-0.2323344;0.9390769 +3186;0;-0.5253906;5.4493866;8.755524 +3187;1;-0.30466917;4.8131876;8.542629 +3187;3;-0.09791565;-0.038146973;0.09107971 +3188;4;-13.157654;-3.2913208;-65.84625 +3188;6;0.4971456;-0.5559173;0.059934895 +3188;7;0.89244473;0.40510264;-0.1985808;0.0;-0.4482787;0.74659264;-0.49157467;0.0;-0.050879225 +3189;0;-0.5015106;5.4398804;8.769836 +3189;3;-0.080200195;-0.02897644;0.095962524 +3189;12;0.248942;-0.045205563;-0.23218027;0.9391894 +3191;0;-0.49195862;5.4351196;8.779373 +3191;1;-0.30130675;4.810028;8.544528 +3192;3;-0.06309509;-0.018600464;0.09901428 +3192;2;0.2435978;-0.7174387;-0.21675205; +3195;0;-0.5015106;5.444641;8.76506 +3195;12;0.24873537;-0.04528404;-0.232;0.93928486 +3195;3;-0.047821045;-0.0082092285;0.10145569 +3198;5;999.57806 +3198;0;-0.5158386;5.3971252;8.731674 +3198;3;-0.032546997;0.0015716553;0.1020813 +3198;1;-0.29863104;4.808253;8.545621 +3199;4;-11.506653;-3.2913208;-65.84625 +3199;6;0.45571294;-0.55284977;0.059008133 +3199;7;0.91001374;0.3745412;-0.17774661;0.0;-0.41152894;0.7641816;-0.49665922;0.0;-0.050188642 +3199;0;-0.47283936;5.411377;8.669678 +3199;3;-0.019714355;0.009506226;0.100234985 +3199;12;0.24861531;-0.04533962;-0.2317885;0.93936616 +3202;0;-0.45373535;5.387619;8.6410675 +3203;3;-0.008117676;0.013168335;0.10145569 +3203;1;-0.29667413;4.8077054;8.545998 +3203;0;-0.46328735;5.368622;8.593384 +3203;12;0.2485724;-0.045371104;-0.23156048;0.9394323 +3204;3;0.0065307617;0.017440796;0.103897095 +3207;0;-0.44895935;5.3638763;8.555222 +3208;1;-0.29508033;4.808209;8.545769 +3208;3;0.0181427;0.016830444;0.104522705 +3210;4;-11.056519;-3.741455;-66.44745 +3210;6;0.4291994;-0.5593968;0.05242972 +3210;7;0.9196228;0.3527125;-0.17288074;0.0;-0.39028317;0.7706996;-0.50368756;0.0;-0.044417787 +3210;0;-0.45851135;5.344864;8.550446 +3210;3;0.027908325;0.01499939;0.104522705 +3211;12;0.24859236;-0.04539571;-0.23132041;0.93948495 +3212;0;-0.43940735;5.387619;8.483673 +3212;3;0.031585693;0.013168335;0.103302 +3212;1;-0.29346606;4.8097134;8.544978 +3213;2;0.14021087;-0.598196;-0.0690403; +3214;0;-0.44418335;5.3496094;8.44075 +3214;12;0.24866873;-0.04543421;-0.23107295;0.9395239 +3215;3;0.037078857;0.0070648193;0.1051178 +3216;1;-0.2916185;4.8116984;8.543923 +3216;0;-0.43940735;5.3401184;8.435989 +3216;3;0.04196167;-2.746582E-4;0.103302 +3220;0;-0.44418335;5.3258667;8.416901 +3220;3;0.044403076;-0.0082092285;0.103897095 +3220;4;-13.157654;-3.590393;-64.64691 +3220;6;0.48922285;-0.56353104;0.05272388 +3220;7;0.8947009;0.3972752;-0.20416348;0.0;-0.4444385;0.74621046;-0.49562538;0.0;-0.044550765 +3221;12;0.24876676;-0.0454915;-0.23082842;0.9395551 +3221;0;-0.4202881;5.3258667;8.354904 +3222;3;0.044403076;-0.013702393;0.1020813 +3223;1;-0.28919175;4.814052;8.54268 +3224;0;-0.43940735;5.3163605;8.326294 +3224;3;0.044403076;-0.02470398;0.099624634 +3224;12;0.24887836;-0.0455863;-0.23059273;0.93957883 +3225;0;-0.43463135;5.3163605;8.302444 +3225;3;0.04257202;-0.034484863;0.09718323 +3225;1;-0.28622517;4.816474;8.541415 +3228;4;-11.506653;-3.590393;-66.29639 +3228;6;0.43344486;-0.5689308;0.052302063 +3228;7;0.9181122;0.3538402;-0.17851387;0.0;-0.3938658;0.7645688;-0.5102003;0.0;-0.04404322 +3228;0;-0.44418335;5.302109;8.297668 +3228;3;0.040740967;-0.043640137;0.095962524 +3230;12;0.24898535;-0.04571324;-0.23037213;0.9395985 +3230;0;-0.44418335;5.278351;8.273819 +3230;1;-0.2825325;4.818781;8.540236 +3231;2;0.121082395;-0.52143145;0.19465256; +3231;3;0.03829956;-0.054031372;0.09352112 +3233;12;0.24907506;-0.04588179;-0.2301721;0.9396156 +3233;0;-0.41552734;5.2450867;8.245209 +3233;3;0.0340271;-0.062576294;0.092300415 +3234;5;999.5836 +3234;0;-0.44895935;5.2355957;8.240448 +3235;3;0.029754639;-0.07052612;0.0892334 +3235;1;-0.2781557;4.820825;8.539227 +3237;4;-14.506531;-4.0405273;-64.64691 +3237;6;0.52969927;-0.56533915;0.054428585 +3237;7;0.87640643;0.42665678;-0.22332908;0.0;-0.47937632;0.7286887;-0.4890923;0.0;-0.045937188 +3237;0;-0.41552734;5.1690826;8.235672 +3238;3;0.024856567;-0.07662964;0.08679199 +3239;12;0.24913992;-0.046086587;-0.2299943;0.9396319 +3240;1;-0.27326408;4.822457;8.538463 +3240;0;-0.4298401;5.1785736;8.2118225 +3240;3;0.019973755;-0.08395386;0.084350586 +3242;0;-0.45373535;5.173828;8.187988 +3242;3;0.015701294;-0.09007263;0.08190918 +3242;12;0.249177;-0.046317022;-0.22983742;0.9396491 +3249;0;-0.44895935;5.1595764;8.2165985 +3249;3;0.012023926;-0.09373474;0.07824707 +3249;1;-0.2679706;4.8236976;8.53793 +3249;4;-13.607788;-2.6901245;-65.097046 +3249;6;0.49359897;-0.5600436;0.054586254 +3249;7;0.8930539;0.4014171;-0.20327112;0.0;-0.44756916;0.7461008;-0.49296606;0.0;-0.04622426 +3249;0;-0.4202881;5.154831;8.178452 +3249;3;0.008987427;-0.09739685;0.075805664 +3249;12;0.24918512;-0.046569467;-0.22970062;0.9396679 +3249;1;-0.2624349;4.8246284;8.537576 +3249;0;-0.40119934;5.131073;8.149826 +3249;3;0.0028686523;-0.09861755;0.07397461 +3249;2;0.13209942;-0.37828112;0.34055805; +3252;12;0.24917251;-0.04683401;-0.22958337;0.9396867 +3253;0;-0.4298401;5.131073;8.164139 +3253;3;-7.9345703E-4;-0.099227905;0.07090759 +3254;1;-0.2568815;4.8251476;8.537451 +3254;0;-0.40596008;5.107315;8.159363 +3254;3;-0.0044555664;-0.099227905;0.06663513 +3256;4;-11.207581;-2.6901245;-64.34631 +3256;6;0.42864677;-0.558723;0.0497129 +3256;7;0.9193542;0.35243505;-0.17486364;0.0;-0.39116788;0.7712194;-0.5022033;0.0;-0.042135835 +3256;0;-0.42507935;5.0835724;8.135513 +3257;12;0.24913612;-0.047097363;-0.22947893;0.9397087 +3257;3;-0.007522583;-0.09983826;0.06236267 +3260;17;1;38dead6d7725;4358;1498;-66; +3260;17;1;38dead6d60ff;-1826;6761;-62; +3261;17;0;1c1bb5efa29a;0;0;0; +3262;17;1;1c1bb5ecd182;10543;2151;-70; +3262;0;-0.46328735;5.0883026;8.135513 +3262;3;-0.011184692;-0.10105896;0.059310913 +3262;1;-0.25152048;4.8253546;8.537494 +3263;12;0.2490842;-0.047352597;-0.22939457;0.93973035 +3264;1;-0.2462707;4.8252883;8.537684 +3264;0;-0.39640808;5.0788116;8.159363 +3264;3;-0.0124053955;-0.09861755;0.055038452 +3264;0;-0.39163208;5.040802;8.140289 +3264;3;-0.01361084;-0.09739685;0.05076599 +3266;12;0.24901915;-0.047601435;-0.22932738;0.9397514 +3266;4;-12.5564575;-4.0405273;-66.596985 +3266;6;0.46679842;-0.55393004;0.04807327 +3266;7;0.90335804;0.3827338;-0.19354364;0.0;-0.4269356;0.7594757;-0.4908386;0.0;-0.040868822 +3267;0;-0.4298401;5.0788116;8.121216 +3267;3;-0.014831543;-0.09434509;0.048309326 +3272;0;-0.44895935;5.0550537;8.159363 +3272;2;0.14829811;-0.28078508;0.40295124; +3272;1;-0.24141064;4.825122;8.537917 +3272;12;0.24895073;-0.047832813;-0.22927599;0.9397703 +3272;3;-0.018493652;-0.08944702;0.04525757 +3272;0;-0.45851135;5.031311;8.164139 +3272;3;-0.019714355;-0.08578491;0.04159546 +3272;5;999.5836 +3273;0;-0.43940735;5.0265503;8.125992 +3273;1;-0.23704554;4.824718;8.538268 +3273;3;-0.020935059;-0.0821228;0.03793335 +3275;4;-12.70752;-3.741455;-66.14685 +3275;6;0.48088497;-0.5533141;0.054021694 +3275;7;0.89841783;0.39354363;-0.19485565;0.0;-0.4367321;0.7542962;-0.49020615;0.0;-0.04593863 +3275;0;-0.48718262;5.007553;8.173676 +3275;3;-0.024002075;-0.07785034;0.03427124 +3275;12;0.24887598;-0.048038315;-0.2292341;0.9397898 +3277;0;-0.47763062;5.0265503;8.140289 +3277;1;-0.23319896;4.824153;8.538692 +3277;3;-0.027664185;-0.07418823;0.02998352 +3279;0;-0.5110626;4.9933014;8.121216 +3280;12;0.24879932;-0.04821876;-0.22920513;0.9398079 +3280;3;-0.028274536;-0.06990051;0.02571106 +3282;0;-0.5158386;5.0217896;8.11644 +3282;1;-0.22990479;4.8233643;8.5392275 +3282;3;-0.031936646;-0.0662384;0.023269653 +3284;4;-12.857056;-2.6901245;-65.54718 +3284;6;0.4926146;-0.553168;0.063469425 +3284;7;0.89508504;0.40240037;-0.19208553;0.0;-0.4426177;0.74969614;-0.49198118;0.0;-0.053967625 +3284;0;-0.5015106;5.0122986;8.121216 +3284;3;-0.03437805;-0.063186646;0.015945435 +3285;12;0.24871649;-0.04837267;-0.22919084;0.9398254 +3286;0;-0.5110626;5.017044;8.125992 +3287;1;-0.22709666;4.8223577;8.539871 +3287;2;0.22729793;-0.21848917;0.41620922; +3287;3;-0.03866577;-0.058914185;0.011657715 +3289;0;-0.5158386;5.040802;8.125992 +3291;12;0.24862744;-0.048502043;-0.22919136;0.93984216 +3291;3;-0.040496826;-0.054031372;0.007385254 +3292;0;-0.5349426;5.040802;8.078278 +3292;1;-0.22488114;4.8211093;8.540635 +3292;3;-0.044769287;-0.051574707;0.0012817383 +3294;4;-12.5564575;-3.590393;-65.097046 +3294;6;0.49948305;-0.55689394;0.066123344 +3294;7;0.8926396;0.4065996;-0.19460548;0.0;-0.4472676;0.7451909;-0.49461314;0.0;-0.056091275 +3294;0;-0.5301666;5.0217896;8.09259 +3295;3;-0.049041748;-0.0491333;-0.0030059814 +3295;12;0.24853112;-0.04860243;-0.2292105;0.93985784 +3296;0;-0.5349426;5.0265503;8.111679 +3297;1;-0.22315241;4.819527;8.541574 +3297;3;-0.05392456;-0.050354004;-0.009719849 +3299;0;-0.5779419;5.06456;8.083054 +3299;12;0.2484227;-0.048678305;-0.2292509;0.93987274 +3300;3;-0.056381226;-0.050354004;-0.016433716 +3301;0;-0.55882263;5.059799;8.054443 +3301;1;-0.22176868;4.817666;8.542659 +3301;3;-0.060043335;-0.05218506;-0.02255249 +3303;4;-12.406921;-3.1402588;-64.497375 +3303;6;0.4969708;-0.559816;0.06926966 +3303;7;0.8944462;0.40398815;-0.19172797;0.0;-0.44331294;0.74484926;-0.4986715;0.0;-0.058648914 +3304;0;-0.5445099;5.0930634;8.06398 +3304;3;-0.063705444;-0.054641724;-0.02986145 +3304;12;0.24830127;-0.048742007;-0.22931886;0.93988484 +3306;0;-0.5874939;5.1120605;8.083054 +3306;1;-0.22053885;4.815517;8.543902 +3306;2;0.29519346;-0.2667904;0.47035503; +3306;3;-0.067977905;-0.058303833;-0.036590576 +3308;0;-0.5779419;5.1120605;8.049683 +3309;12;0.24816439;-0.04880086;-0.22942036;0.9398932 +3309;3;-0.07041931;-0.06135559;-0.04269409 +3311;1;-0.21940333;4.813088;8.5453005 +3311;0;-0.6257019;5.131073;8.08783 +3311;3;-0.07470703;-0.063186646;-0.04940796 +3311;5;999.5836 +3313;4;-11.357117;-1.4907837;-65.24658 +3313;6;0.45958835;-0.5639951;0.0772096 +3313;7;0.9118551;0.37488043;-0.16728708;0.0;-0.40530354;0.75743186;-0.5118848;0.0;-0.065187044 +3313;0;-0.6113739;5.131073;8.068741 +3314;3;-0.07836914;-0.06562805;-0.056747437 +3314;12;0.24801125;-0.04885964;-0.22955498;0.93989766 +3315;0;-0.63049316;5.1358337;8.08783 +3316;1;-0.21840988;4.8103533;8.546865 +3316;3;-0.0826416;-0.066848755;-0.0634613 +3318;0;-0.6018219;5.164322;8.068741 +3318;12;0.24784149;-0.04891743;-0.22972493;0.939898 +3318;3;-0.087524414;-0.06562805;-0.06713867 +3321;0;-0.59706116;5.164322;8.08783 +3321;1;-0.21759975;4.8072815;8.5486145 +3321;3;-0.091812134;-0.0650177;-0.07385254 +3323;4;-13.757324;-3.440857;-64.94751 +3323;6;0.5332292;-0.5670377;0.07368851 +3323;7;0.87893444;0.42876312;-0.20889328;0.0;-0.47288248;0.72639334;-0.49873316;0.0;-0.06209971 +3323;0;-0.5922699;5.197586;8.11644 +3323;3;-0.09425354;-0.0650177;-0.078125 +3323;12;0.24765347;-0.048968695;-0.22992408;0.93989617 +3325;0;-0.64004517;5.1928253;8.154587 +3325;1;-0.21709763;4.8038726;8.550544 +3325;2;0.36137623;-0.37597847;0.47414494; +3326;3;-0.09913635;-0.062576294;-0.08178711 +3327;0;-0.6018219;5.197586;8.14505 +3328;12;0.24744926;-0.049005195;-0.23014781;0.9398933 +3329;3;-0.10157776;-0.058303833;-0.08729553 +3330;0;-0.6495819;5.2070923;8.140289 +3330;1;-0.2169874;4.800159;8.55263 +3330;3;-0.10523987;-0.05647278;-0.09156799 +3332;4;-13.157654;-2.9907227;-67.796326 +3332;6;0.5079364;-0.56763875;0.07962965 +3332;7;0.8917822;0.41009837;-0.19116451;0.0;-0.44746625;0.7367223;-0.5069657;0.0;-0.06707062 +3333;0;-0.64482117;5.221344;8.183212 +3333;3;-0.10707092;-0.05340576;-0.09461975 +3333;12;0.2472331;-0.04902114;-0.23038898;0.93989027 +3335;13;83.27399 +3336;1;-0.21730316;4.796212;8.554837 +3336;0;-0.6257019;5.2593536;8.183212 +3336;3;-0.10891724;-0.0491333;-0.0952301 +3337;0;-0.6161499;5.2593536;8.2118225 +3337;12;0.24700867;-0.049018227;-0.23064657;0.9398863 +3337;3;-0.11013794;-0.046691895;-0.09706116 +3339;0;-0.64482117;5.311615;8.202286 +3340;1;-0.21796696;4.7921495;8.5570965 +3340;3;-0.11013794;-0.043029785;-0.09889221 +3342;4;-13.006592;-3.440857;-66.14685 +3342;6;0.5116663;-0.5732657;0.07845345 +3342;7;0.890061;0.41135564;-0.19641262;0.0;-0.45106095;0.73253816;-0.50983524;0.0;-0.06584384 +3342;0;-0.6495819;5.3068542;8.235672 +3343;3;-0.11013794;-0.039978027;-0.10317993 +3343;12;0.24678281;-0.048995085;-0.23090734;0.9398827 +3346;2;0.38523382;-0.5019517;0.38004208; +3346;1;-0.2190145;4.788069;8.559355 +3346;0;-0.64004517;5.3353577;8.249985 +3346;3;-0.11013794;-0.035079956;-0.10623169 +3347;12;0.24656065;-0.048954204;-0.23117541;0.9398773 +3347;0;-0.67349243;5.35437;8.249985 +3347;3;-0.11073303;-0.0320282;-0.10562134 +3351;0;-0.65914917;5.3591156;8.273819 +3351;3;-0.11013794;-0.028366089;-0.10745239 +3351;5;999.5836 +3351;1;-0.22051488;4.78399;8.561596 +3354;12;0.24634321;-0.04889362;-0.23144943;0.93987 +3357;1;-0.22227855;4.779999;8.563779 +3359;12;0.24613495;-0.04881805;-0.23172301;0.9398611 +3359;4;-13.90686;-3.590393;-67.49725 +3359;6;0.529034;-0.57332814;0.07949895 +3359;7;0.8823094;0.42399833;-0.20434128;0.0;-0.4659172;0.7252544;-0.50687975;0.0;-0.066716775 +3359;0;-0.6161499;5.387619;8.278595 +3359;3;-0.10707092;-0.025924683;-0.10745239 +3359;0;-0.65914917;5.387619;8.292908 +3359;3;-0.10585022;-0.023483276;-0.10623169 +3359;1;-0.22421953;4.7762027;8.565846 +3360;0;-0.6639252;5.4398804;8.316757 +3360;3;-0.10279846;-0.02104187;-0.10623169 +3360;0;-0.63526917;5.4256287;8.33107 +3360;3;-0.100357056;-0.018600464;-0.10562134 +3362;4;-12.5564575;-4.0405273;-65.84625 +3362;6;0.50308275;-0.57593024;0.076105736 +3362;7;0.8935286;0.40435454;-0.19520262;0.0;-0.44445518;0.7347732;-0.5124138;0.0;-0.06376722 +3363;0;-0.67349243;5.4636383;8.350128 +3363;3;-0.098526;-0.015533447;-0.10562134 +3363;12;0.24593928;-0.04873527;-0.23199025;0.93985075 +3364;1;-0.22638506;4.772614;8.567789 +3364;0;-0.6925812;5.458893;8.364441 +3365;2;0.4042775;-0.66640425;0.27608776; +3365;3;-0.09913635;-0.014312744;-0.103775024 +3367;12;0.24575847;-0.048642773;-0.23225267;0.93983793 +3367;0;-0.6782532;5.487381;8.35968 +3367;3;-0.09486389;-0.013702393;-0.10195923 +3368;1;-0.22861694;4.7691336;8.569668 +3368;0;-0.68304443;5.5301514;8.378754 +3369;3;-0.09425354;-0.014312744;-0.10072327 +3371;4;-13.90686;-3.590393;-66.29639 +3371;6;0.5320777;-0.58186585;0.08134114 +3371;7;0.8815599;0.42383882;-0.20787676;0.0;-0.46716624;0.7199433;-0.5132614;0.0;-0.067880616 +3372;0;-0.6782532;5.5301514;8.369217 +3372;3;-0.09303284;-0.013702393;-0.09950256 +3372;12;0.24558525;-0.048546795;-0.23250817;0.939825 +3374;1;-0.23076813;4.76585;8.571437 +3374;0;-0.68304443;5.577652;8.393066 +3374;3;-0.09118652;-0.015533447;-0.09828186 +3376;0;-0.67349243;5.577652;8.38353 +3376;3;-0.09059143;-0.017974854;-0.096450806 +3377;12;0.24542224;-0.048455562;-0.2327552;0.9398112 +3379;1;-0.23272942;4.762706;8.573132 +3379;0;-0.6687012;5.6061707;8.397842 +3379;3;-0.09118652;-0.022872925;-0.09461975 +3382;4;-13.607788;-2.241516;-65.54718 +3382;6;0.5076943;-0.58717114;0.079460084 +3382;7;0.8924896;0.4047367;-0.19912425;0.0;-0.44620112;0.7275047;-0.52119225;0.0;-0.066081814 +3382;0;-0.6687012;5.6156616;8.455063 +3382;3;-0.091812134;-0.027145386;-0.0940094 +3382;12;0.24526389;-0.04837445;-0.23299706;0.9397968 +3383;0;-0.6639252;5.634674;8.421677 +3383;1;-0.23427105;4.7595434;8.574845 +3383;3;-0.092422485;-0.031417847;-0.09461975 +3383;2;0.41324306;-0.841764;0.19654274; +3386;0;-0.6639252;5.667923;8.421677 +3386;12;0.245101;-0.048314165;-0.23323672;0.9397829 +3386;3;-0.09486389;-0.03692627;-0.092178345 +3388;0;-0.6687012;5.6536713;8.49321 +3388;1;-0.23541023;4.756314;8.576606 +3389;3;-0.096084595;-0.039978027;-0.0940094 +3389;5;999.587 +3390;4;-13.006592;-2.5405884;-65.69672 +3390;6;0.4954867;-0.58588755;0.078571536 +3390;7;0.8976585;0.39616346;-0.19303805;0.0;-0.43581188;0.73301625;-0.5222597;0.0;-0.06540017 +3391;12;0.24492624;-0.048273623;-0.23347977;0.9397702 +3391;0;-0.65914917;5.648926;8.502762 +3391;3;-0.09913635;-0.046081543;-0.092178345 +3393;1;-0.23618615;4.7529035;8.578475 +3393;0;-0.69737244;5.6631775;8.483673 +3393;3;-0.10157776;-0.050964355;-0.0927887 +3398;0;-0.6782532;5.6726837;8.531357 +3398;12;0.24473841;-0.048250113;-0.23372817;0.9397586 +3398;3;-0.104019165;-0.055862427;-0.0927887 +3398;0;-0.68304443;5.6631775;8.526611 +3398;1;-0.23652631;4.749276;8.580475 +3398;3;-0.10462952;-0.060134888;-0.09095764 +3400;4;-14.0563965;-3.741455;-66.14685 +3400;6;0.5335866;-0.58480376;0.079936676 +3400;7;0.8806597;0.42410162;-0.21113113;0.0;-0.46904734;0.7179097;-0.5143931;0.0;-0.066581875 +3400;0;-0.65914917;5.658432;8.540909 +3401;3;-0.108291626;-0.0650177;-0.09095764 +3401;12;0.24453211;-0.048247926;-0.23398238;0.9397492 +3402;0;-0.70692444;5.667923;8.569519 +3402;1;-0.23644768;4.745487;8.582573 +3402;2;0.4147424;-0.9498849;0.09146881; +3403;3;-0.11013794;-0.07052612;-0.087905884 +3406;12;0.24431254;-0.04826402;-0.23423858;0.9397417 +3406;0;-0.69737244;5.6869354;8.564758 +3406;3;-0.111953735;-0.071746826;-0.08668518 +3407;0;-0.71170044;5.6726837;8.631531 +3407;1;-0.23594978;4.7415085;8.584785 +3407;3;-0.11135864;-0.07418823;-0.08300781 +3409;4;-13.157654;-3.590393;-64.64691 +3409;6;0.5264429;-0.5798696;0.082267456 +3409;7;0.8842989;0.42032582;-0.20332655;0.0;-0.46183333;0.72326726;-0.51341456;0.0;-0.06874193 +3409;0;-0.6925812;5.6774445;8.621979 +3409;3;-0.11073303;-0.07723999;-0.080566406 +3410;12;0.24407597;-0.048298713;-0.2344921;0.93973815 +3411;0;-0.71170044;5.6156616;8.621979 +3412;3;-0.10951233;-0.0796814;-0.07751465 +3412;1;-0.23513512;4.737506;8.587017 +3413;0;-0.70692444;5.6061707;8.664902 +3414;12;0.24383359;-0.04834583;-0.23473614;0.9397376 +3414;3;-0.10523987;-0.0809021;-0.07446289 +3416;0;-0.7738037;5.639435;8.688751 +3417;3;-0.10279846;-0.0809021;-0.06958008 +3417;1;-0.23403423;4.7336226;8.589189 +3421;4;-13.456726;-3.440857;-65.69672 +3421;6;0.5412868;-0.5739048;0.088823766 +3421;7;0.8784818;0.43269148;-0.20260249;0.0;-0.47193244;0.7197368;-0.5091747;0.0;-0.07449504 +3421;12;0.2435963;-0.048406564;-0.23496993;0.9397376 +3421;0;-0.73558044;5.6061707;8.688751 +3421;1;-0.23272358;4.7299876;8.591226 +3421;3;-0.09791565;-0.08029175;-0.06713867 +3421;0;-0.72125244;5.601425;8.717377 +3421;2;0.4616587;-0.94345856;-0.04018402; +3422;3;-0.09486389;-0.07846069;-0.06591797 +3423;0;-0.73080444;5.5871735;8.717377 +3423;12;0.24337015;-0.048477802;-0.23518702;0.9397382 +3424;3;-0.087524414;-0.07785034;-0.06285095 +3426;0;-0.7403717;5.558655;8.750748 +3426;1;-0.23144129;4.726728;8.593055 +3426;3;-0.0814209;-0.07723999;-0.060409546 +3426;5;999.587 +3428;4;-12.107849;-2.5405884;-66.14685 +3428;6;0.49655166;-0.56430227;0.08440566 +3428;7;0.8975807;0.40253693;-0.17975841;0.0;-0.43505707;0.7429164;-0.5087245;0.0;-0.07123492 +3428;0;-0.74513245;5.549164;8.726913 +3428;3;-0.07470703;-0.07723999;-0.05796814 +3429;12;0.24316551;-0.04854898;-0.23539108;0.9397364 +3430;0;-0.7785797;5.5396423;8.731674 +3431;1;-0.23010592;4.7239995;8.59459 +3431;3;-0.0667572;-0.07846069;-0.056747437 +3433;0;-0.7738037;5.568161;8.674438 +3433;12;0.24299179;-0.048627213;-0.2355823;0.9397294 +3433;3;-0.05821228;-0.0809021;-0.055526733 +3435;0;-0.802475;5.558655;8.660141 +3435;3;-0.051483154;-0.08578491;-0.05491638 +3436;1;-0.22863053;4.7219615;8.59575 +3437;4;-13.90686;-3.2913208;-67.04712 +3438;6;0.5525644;-0.56869465;0.09239918 +3438;7;0.8736309;0.44225934;-0.20291819;0.0;-0.4803382;0.7172094;-0.50486225;0.0;-0.077745244 +3438;0;-0.8072357;5.501648;8.6458435 +3438;3;-0.044158936;-0.09251404;-0.056137085 +3439;12;0.24285227;-0.04872;-0.23576665;0.93971455 +3441;0;-0.8215637;5.4921417;8.726913 +3441;1;-0.22676337;4.7204585;8.596625 +3441;2;0.5253175;-0.86075306;-0.08815384; +3441;3;-0.039886475;-0.09739685;-0.057357788 +3443;0;-0.802475;5.4161377;8.741211 +3443;12;0.24273446;-0.048842087;-0.23595497;0.93969125 +3443;3;-0.03744507;-0.09983826;-0.059799194 +3445;17;1;38dead6d7725;6569;688;-65; +3446;17;1;38dead6d60ff;-1526;2352;-59; +3447;17;0;1c1bb5efa29a;0;0;0; +3448;17;0;1c1bb5ecd182;0;0;0; +3448;0;-0.7929077;5.4731293;8.774612 +3448;1;-0.2245749;4.7192745;8.597332 +3448;3;-0.031936646;-0.10044861;-0.059188843 +3448;4;-13.90686;-2.9907227;-65.84625 +3448;6;0.5619989;-0.5558728;0.09011908 +3448;7;0.8680643;0.45264864;-0.20389614;0.0;-0.49053058;0.7187892;-0.4926681;0.0;-0.0764472 +3448;0;-0.7738037;5.4493866;8.784149 +3448;3;-0.024002075;-0.09983826;-0.059799194 +3448;12;0.24263221;-0.04898916;-0.23615317;0.9396603 +3449;0;-0.816803;5.468399;8.78891 +3450;1;-0.22234155;4.7185297;8.597799 +3450;3;-0.01727295;-0.09617615;-0.059799194 +3452;0;-0.802475;5.5206604;8.779373 +3452;12;0.24255481;-0.049144212;-0.23635328;0.93962187 +3452;3;-0.009963989;-0.09188843;-0.061019897 +3455;0;-0.7642517;5.468399;8.750748 +3455;1;-0.2203709;4.7184114;8.597915 +3455;3;-7.9345703E-4;-0.08944702;-0.06163025 +3457;4;-12.5564575;-2.6901245;-65.84625 +3457;6;0.5206315;-0.5568261;0.08711455 +3457;7;0.88708806;0.42228502;-0.18641429;0.0;-0.45565277;0.73645717;-0.50001156;0.0;-0.07386124 +3457;0;-0.7929077;5.4351196;8.73645 +3457;3;0.008987427;-0.08578491;-0.06285095 +3458;12;0.24251232;-0.049294073;-0.23654996;0.93957543 +3460;0;-0.845459;5.3828583;8.717377 +3460;1;-0.21874917;4.7189765;8.597647 +3460;2;0.5588871;-0.7709131;-0.14119053; +3460;3;0.016311646;-0.08456421;-0.06529236 +3462;0;-0.8120117;5.420868;8.750748 +3462;12;0.24251242;-0.049435444;-0.23674572;0.9395187 +3462;3;0.025466919;-0.082733154;-0.06591797 +3464;0;-0.816803;5.4018707;8.7603 +3464;1;-0.21736266;4.720218;8.596999 +3465;3;0.03463745;-0.0796814;-0.068359375 +3465;5;999.587 +3466;4;-12.70752;-2.8411865;-65.69672 +3466;6;0.5413505;-0.55062675;0.09297037 +3466;7;0.87834233;0.43913177;-0.18888627;0.0;-0.4714399;0.73034424;-0.49430943;0.0;-0.079114966 +3467;0;-0.816803;5.3971252;8.745987 +3467;3;0.039520264;-0.079071045;-0.068359375 +3467;12;0.24255219;-0.04957574;-0.23694433;0.9394509 +3469;0;-0.8120117;5.4066315;8.755524 +3469;1;-0.21621762;4.722118;8.595985 +3469;3;0.04562378;-0.07785034;-0.07080078 +3471;0;-0.8215637;5.4256287;8.726913 +3471;12;0.24263206;-0.04971423;-0.23714504;0.9393724 +3472;3;0.05479431;-0.074798584;-0.072631836 +3473;0;-0.7881317;5.411377;8.726913 +3474;1;-0.21526818;4.7245755;8.594658 +3474;3;0.059066772;-0.07234192;-0.07385254 +3476;4;-12.5564575;-3.590393;-65.84625 +3476;6;0.5390362;-0.55323553;0.09006615 +3476;7;0.87898463;0.4367382;-0.19143072;0.0;-0.47066924;0.73018456;-0.4952786;0.0;-0.07652732 +3476;0;-0.8072357;5.420868;8.693527 +3476;3;0.06517029;-0.06867981;-0.07507324 +3477;12;0.24274406;-0.04985225;-0.23734969;0.93928444 +3479;1;-0.21462147;4.727526;8.593052 +3479;0;-0.7929077;5.3923798;8.688751 +3479;2;0.5742853;-0.7214694;-0.11699867; +3479;3;0.07006836;-0.06806946;-0.0769043 +3481;0;-0.8120117;5.3971252;8.669678 +3482;12;0.24288635;-0.04998188;-0.23755585;0.9391887 +3482;3;0.07739258;-0.06806946;-0.078125 +3483;0;-0.7785797;5.3733673;8.6362915 +3483;1;-0.21414521;4.73095;8.59118 +3484;3;0.08227539;-0.06929016;-0.078125 +3487;4;-12.857056;-3.2913208;-67.49725 +3487;6;0.53264505;-0.55475837;0.08990903 +3487;7;0.8820043;0.4316558;-0.18905506;0.0;-0.46501985;0.73227084;-0.49753007;0.0;-0.07632225 +3487;0;-0.802475;5.3638763;8.674438 +3487;3;0.08717346;-0.06867981;-0.080566406 +3487;12;0.24305576;-0.050110992;-0.2377656;0.9390849 +3488;0;-0.816803;5.4066315;8.6458435 +3488;3;0.09083557;-0.071746826;-0.080566406 +3488;1;-0.21369016;4.7348156;8.589061 +3490;0;-0.76901245;5.411377;8.631531 +3491;12;0.24325146;-0.050247785;-0.23797894;0.93897283 +3491;3;0.09510803;-0.07234192;-0.08239746 +3495;0;-0.76901245;5.3971252;8.6458435 +3495;3;0.09693909;-0.07296753;-0.08729553 +3495;1;-0.21312064;4.7390385;8.586746 +3496;4;-12.857056;-3.2913208;-67.49725 +3496;6;0.529443;-0.5562879;0.08871246 +3496;7;0.88332194;0.42890137;-0.1891717;0.0;-0.46268952;0.7329529;-0.49869663;0.0;-0.075237714 +3497;12;0.2434639;-0.050395697;-0.23819767;0.93885434 +3497;0;-0.7785797;5.4066315;8.598129 +3497;3;0.1000061;-0.074798584;-0.08912659 +3500;0;-0.7594757;5.4351196;8.607666 +3500;1;-0.21263371;4.7435055;8.584291 +3501;3;0.1006012;-0.07662964;-0.092178345 +3501;2;0.5552763;-0.6960888;-0.03248501; +3503;12;0.24368954;-0.05054871;-0.23843148;0.93872833 +3503;0;-0.7260437;5.420868;8.593384 +3503;3;0.10548401;-0.07785034;-0.09461975 +3503;0;-0.70692444;5.4351196;8.593384 +3503;1;-0.21207896;4.748159;8.581732 +3503;3;0.107940674;-0.07785034;-0.096450806 +3503;5;999.587 +3506;4;-14.0563965;-4.1915894;-66.44745 +3506;6;0.55827856;-0.5624358;0.082078986 +3506;7;0.86847216;0.4481271;-0.21198635;0.0;-0.49086213;0.71751535;-0.49419233;0.0;-0.0693575 +3507;0;-0.6782532;5.4493866;8.621979 +3508;12;0.2439236;-0.050711263;-0.23867771;0.93859607 +3508;3;0.11038208;-0.08151245;-0.09950256 +3509;1;-0.21149234;4.75311;8.579005 +3509;0;-0.6925812;5.487381;8.574295 +3509;3;0.112213135;-0.08456421;-0.10133362 +3510;0;-0.6113739;5.5063934;8.536133 +3510;12;0.24417478;-0.050883967;-0.23893577;0.93845576 +3511;3;0.11526489;-0.08517456;-0.10501099 +3512;1;-0.21075252;4.758263;8.576166 +3513;0;-0.6161499;5.5063934;8.555222 +3513;3;0.1177063;-0.08517456;-0.108062744 +3516;12;0.2444317;-0.05107045;-0.23920543;0.93831015 +3516;4;-14.0563965;-4.1915894;-66.44745 +3516;6;0.53471273;-0.57070726;0.071896195 +3516;7;0.877968;0.428833;-0.21277805;0.0;-0.4748874;0.72405577;-0.50022525;0.0;-0.060449913 +3516;0;-0.5349426;5.534912;8.602905 +3516;3;0.120147705;-0.087005615;-0.11355591 +3517;1;-0.21004735;4.7636385;8.573199 +3518;0;-0.5110626;5.577652;8.550446 +3518;3;0.12199402;-0.087005615;-0.116607666 +3518;2;0.4080751;-0.7683139;0.01761055; +3520;0;-0.46328735;5.6061707;8.583832 +3520;12;0.24470225;-0.051263124;-0.23949094;0.9381561 +3521;3;0.12382507;-0.083343506;-0.12150574 +3522;0;-0.4298401;5.639435;8.602905 +3524;1;-0.20949449;4.769203;8.570118 +3524;3;0.124420166;-0.07846069;-0.124557495 +3525;4;-13.607788;-2.9907227;-66.596985 +3525;6;0.46684918;-0.57967925;0.04992301 +3525;7;0.90418077;0.37654996;-0.20166162;0.0;-0.42510492;0.7471105;-0.5109911;0.0;-0.04175016 +3525;0;-0.36775208;5.648926;8.626755 +3525;3;0.124420166;-0.07296753;-0.12884521 +3525;12;0.2449828;-0.05145558;-0.2397926;0.93799543 +3527;1;-0.2094141;4.774842;8.566979 +3527;0;-0.3390808;5.715439;8.6362915 +3527;3;0.12257385;-0.0662384;-0.13189697 +3529;0;-0.2960968;5.7439423;8.693527 +3530;12;0.24527381;-0.051627625;-0.24010469;0.93783003 +3530;3;0.12075806;-0.05769348;-0.13311768 +3532;1;-0.20996022;4.7803664;8.563885 +3533;0;-0.26264954;5.7296906;8.688751 +3533;3;0.11769104;-0.046691895;-0.1374054 +3534;4;-13.607788;-2.9907227;-66.596985 +3534;6;0.43149847;-0.5827714;0.030219482 +3534;7;0.9148798;0.34919918;-0.20261952;0.0;-0.40293708;0.7584099;-0.51230437;0.0;-0.025227634 +3534;0;-0.25787354;5.7629547;8.6839905 +3534;3;0.11097717;-0.038146973;-0.1386261 +3535;12;0.24556637;-0.0517665;-0.24042135;0.93766475 +3537;1;-0.21140142;4.785591;8.560931 +3537;0;-0.22921753;5.7629547;8.717377 +3537;3;0.103027344;-0.028366089;-0.1416626 +3538;2;0.10325885;-0.9595723;-0.06921959; +3539;0;-0.15278625;5.7439423;8.726913 +3540;12;0.2458525;-0.051857103;-0.24073887;0.93750316 +3540;3;0.09387207;-0.01675415;-0.1416626 +3542;1;-0.21365947;4.790142;8.558329 +3542;0;-0.16711426;5.781952;8.722153 +3542;3;0.08470154;-0.0069885254;-0.1410675 +3542;5;999.5916 +3550;4;-12.70752;-3.741455;-66.89758 +3550;6;0.3934203;-0.5853088;0.019157406 +3550;7;0.9274908;0.31953785;-0.1940525;0.0;-0.37350482;0.76986164;-0.5175008;0.0;-0.015967516 +3550;0;-0.16711426;5.8104553;8.726913 +3550;3;0.07371521;0.0015716553;-0.14228821 +3550;12;0.24611595;-0.05189327;-0.24105388;0.9373511 +3550;1;-0.21674241;4.7939177;8.556137 +3550;0;-0.17666626;5.815216;8.793686 +3550;3;0.06210327;0.009506226;-0.14350891 +3550;0;-0.15278625;5.7962036;8.836609 +3550;3;0.04989624;0.017440796;-0.14472961 +3550;12;0.24634536;-0.051873654;-0.24136017;0.9372131 +3551;0;-0.16711426;5.7772064;8.865219 +3551;3;0.035232544;0.025375366;-0.14533997 +3551;1;-0.22053038;4.7966723;8.554496 +3553;4;-12.70752;-3.741455;-66.89758 +3553;6;0.3976811;-0.57746774;0.018848319 +3553;7;0.9257824;0.32448286;-0.19400457;0.0;-0.37772682;0.7724633;-0.51051223;0.0;-0.015791085 +3553;0;-0.17666626;5.781952;8.922455 +3553;3;0.0211792;0.033325195;-0.14778137 +3554;12;0.24652918;-0.051801927;-0.2416655;0.9370901 +3555;1;-0.22504911;4.798242;8.553498 +3556;2;-0.07104677;-1.0341511;-0.23838997; +3556;0;-0.20054626;5.7866974;8.941528 +3556;3;0.0016326904;0.03881836;-0.14839172 +3558;12;0.24665901;-0.051675368;-0.24197075;0.9369841 +3558;0;-0.21009827;5.7724457;8.951065 +3558;3;-0.014846802;0.040649414;-0.14778137 +3561;1;-0.23006909;4.7983336;8.553313 +3561;0;-0.26264954;5.724945;9.003525 +3561;3;-0.036834717;0.038208008;-0.14961243 +3562;4;-12.70752;-2.5405884;-66.44745 +3562;6;0.41436446;-0.5661752;0.029163588 +3562;7;0.9212805;0.33978474;-0.18917872;0.0;-0.38811934;0.7725365;-0.5025441;0.0;-0.024609376 +3563;0;-0.28652954;5.6821747;9.056 +3564;12;0.24671263;-0.051500037;-0.24227788;0.9369003 +3566;1;-0.2350439;4.796635;8.554131 +3567;3;-0.05883789;0.0345459;-0.15022278 +3568;0;-0.3056488;5.6631775;9.089371 +3568;12;0.24666765;-0.051304962;-0.24259767;0.9368401 +3568;3;-0.08387756;0.027832031;-0.15144348 +3568;0;-0.3152008;5.634674;9.179993 +3568;3;-0.108306885;0.020492554;-0.14961243 +3572;0;-0.35820007;5.5966644;9.199066 +3572;1;-0.23956278;4.7928653;8.556119 +3573;12;0.24650283;-0.0511041;-0.24293323;0.9368075 +3573;3;-0.13092041;0.011947632;-0.14961243 +3573;4;-12.107849;-3.440857;-66.14685 +3573;6;0.440193;-0.546233;0.038919084 +3573;7;0.9125971;0.36410913;-0.18598671;0.0;-0.40750596;0.7730287;-0.4861744;0.0;-0.03324747 +3573;0;-0.42507935;5.544403;9.280151 +3573;3;-0.15534973;0.0015716553;-0.14961243 +3574;0;-0.48239136;5.5871735;9.342148 +3574;1;-0.24344912;4.78708;8.559247 +3575;2;0.071504325;-0.9104271;-0.55287457; +3575;3;-0.17857361;-0.009429932;-0.15022278 +3577;0;-0.49195862;5.4921417;9.43277 +3577;12;0.24621882;-0.050910432;-0.24328408;0.9368017 +3577;3;-0.19995117;-0.021652222;-0.15205383 +3579;0;-0.49671936;5.4256287;9.494766 +3580;1;-0.24650034;4.779213;8.563556 +3580;3;-0.22315979;-0.035705566;-0.15266418 +3581;5;999.5916 +3582;4;-12.257385;-1.6403198;-65.54718 +3582;6;0.4718135;-0.5185615;0.052267425 +3582;7;0.90129775;0.39475036;-0.17842218;0.0;-0.43081713;0.77364194;-0.46462324;0.0;-0.04537532 +3582;0;-0.5397186;5.3496094;9.513855 +3583;3;-0.2451477;-0.051574707;-0.1545105 +3583;12;0.24580802;-0.050734323;-0.24365884;0.9368217 +3584;0;-0.5779419;5.321106;9.566299 +3584;1;-0.24848914;4.769435;8.568947 +3584;3;-0.26530457;-0.06745911;-0.1569519 +3586;0;-0.5874939;5.2593536;9.628311 +3587;12;0.24527822;-0.050590944;-0.2440613;0.93686354 +3587;3;-0.28240967;-0.08517456;-0.15939331 +3589;0;-0.62094116;5.240341;9.70462 +3589;1;-0.24926901;4.7579145;8.575326 +3589;3;-0.29829407;-0.103500366;-0.16366577 +3591;4;-14.356995;-2.8411865;-65.24658 +3591;6;0.5844933;-0.49426743;0.06389698 +3591;7;0.84900373;0.48573822;-0.2079682;0.0;-0.5253881;0.73417664;-0.4300602;0.0;-0.056211293 +3591;0;-0.67349243;5.221344;9.747543 +3592;3;-0.3123474;-0.12365723;-0.16549683 +3592;12;0.24463685;-0.050491206;-0.24449895;0.9369225 +3593;1;-0.24871469;4.745016;8.582486 +3594;0;-0.67349243;5.164322;9.78093 +3594;2;0.31923065;-0.61103487;-1.000864; +3594;3;-0.3245697;-0.14198303;-0.16854858 +3596;0;-0.73558044;5.1168213;9.804764 +3596;12;0.24390006;-0.05044925;-0.24497741;0.9369919 +3596;3;-0.33311462;-0.16152954;-0.1728363 +3598;0;-0.7642517;5.0455627;9.838165 +3598;1;-0.24678716;4.731045;8.590251 +3599;3;-0.3386078;-0.18292236;-0.17771912 +3601;4;-11.956787;-2.241516;-65.097046 +3601;6;0.5587765;-0.47265902;0.07752664 +3601;7;0.86405015;0.47202408;-0.17495897;0.0;-0.4986604;0.75494087;-0.4259131;0.0;-0.06895756 +3601;0;-0.7642517;4.98378;9.86676 +3602;3;-0.3398285;-0.20307922;-0.18199158 +3602;12;0.243084;-0.05047101;-0.24549422;0.9370675 +3603;0;-0.76901245;4.9267883;9.89061 +3603;1;-0.24337195;4.716527;8.598329 +3603;3;-0.33616638;-0.22445679;-0.18565369 +3605;0;-0.76901245;4.8982697;9.928772 +3606;12;0.24221687;-0.050572723;-0.24605843;0.9371386 +3606;3;-0.32884216;-0.2427826;-0.1887207 +3608;0;-0.76901245;4.879257;9.990768 +3608;1;-0.2384331;4.702204;8.606308 +3608;3;-0.31906128;-0.25805664;-0.1905365 +3610;4;-12.5564575;-3.2913208;-65.097046 +3610;6;0.61049974;-0.45314205;0.07682082 +3610;7;0.83620644;0.5154196;-0.18735415;0.0;-0.54405695;0.7366684;-0.40164888;0.0;-0.06899984 +3610;0;-0.75468445;4.850769;10.043243 +3611;3;-0.3038025;-0.26783752;-0.19360352 +3611;12;0.24133821;-0.050764713;-0.24666175;0.93719625 +3613;0;-0.7833557;4.793747;10.086151 +3613;2;0.51804763;-0.29412842;-1.2928257; +3613;1;-0.23237611;4.6886654;8.613857 +3613;3;-0.2891388;-0.27331543;-0.19726562 +3615;0;-0.7881317;4.8127594;10.090927 +3615;12;0.2404871;-0.05103004;-0.24729066;0.9372349 +3616;3;-0.26713562;-0.2757721;-0.19787598 +3617;0;-0.75468445;4.7700043;10.071854 +3618;1;-0.22595148;4.6764736;8.620653 +3618;3;-0.2414856;-0.2769928;-0.19848633 +3618;5;999.5916 +3621;4;-12.70752;-2.8411865;-65.69672 +3621;6;0.61284906;-0.44122142;0.074790284 +3621;7;0.8340799;0.5201139;-0.18382695;0.0;-0.5474905;0.7396721;-0.39133033;0.0;-0.067564644 +3622;0;-0.7260437;4.7700043;10.062302 +3623;3;-0.21154785;-0.27394104;-0.19970703 +3623;12;0.23970366;-0.05133923;-0.24793315;0.93724895 +3623;1;-0.21942466;4.666344;8.626308 +3623;0;-0.72125244;4.7557526;10.071854 +3623;3;-0.17857361;-0.26416016;-0.19909668 +3625;0;-0.6687012;4.717743;10.090927 +3625;3;-0.1431427;-0.25254822;-0.19726562 +3625;12;0.23902987;-0.0516841;-0.24857728;0.9372315 +3627;1;-0.21363096;4.6589956;8.630425 +3628;0;-0.71170044;4.6797333;10.043243 +3628;3;-0.10708618;-0.23728943;-0.19787598 +3629;4;-12.257385;-2.9907227;-67.796326 +3629;6;0.5898484;-0.4350873;0.07074534 +3630;7;0.8455185;0.5044125;-0.1751187;0.0;-0.5300845;0.75360113;-0.38871044;0.0;-0.06410073 +3630;0;-0.68304443;4.684494;10.071854 +3630;12;0.23851942;-0.052024525;-0.24919347;0.937179 +3631;3;-0.06738281;-0.22018433;-0.19543457 +3632;0;-0.65914917;4.6892242;10.019394 +3632;1;-0.20896736;4.6546545;8.632881 +3632;2;0.4934296;-0.12484646;-1.4088469; +3633;3;-0.027069092;-0.19941711;-0.19360352 +3634;0;-0.6257019;4.7224884;9.971695 +3635;12;0.23819032;-0.052348305;-0.24978319;0.93708783 +3635;3;0.016296387;-0.17558289;-0.1893158 +3637;1;-0.20585021;4.653769;8.633433 +3637;0;-0.6161499;4.7224884;9.923996 +3637;3;0.056610107;-0.14871216;-0.18748474 +3639;4;-13.157654;-2.6901245;-65.54718 +3639;6;0.59714454;-0.4434084;0.06200728 +3639;7;0.8403038;0.5079076;-0.18952395;0.0;-0.5392182;0.7469745;-0.38893786;0.0;-0.055974957 +3639;0;-0.6113739;4.693985;9.852463 +3640;3;0.09877014;-0.123062134;-0.18748474 +3640;12;0.23807088;-0.052632708;-0.25032637;0.9369573 +3641;0;-0.60661316;4.712982;9.819077 +3642;1;-0.20477608;4.6563487;8.632068 +3642;3;0.14030457;-0.094955444;-0.18260193 +3644;0;-0.59706116;4.712982;9.771393 +3645;3;0.18122864;-0.0650177;-0.17893982 +3645;12;0.23816998;-0.052854244;-0.25082088;0.93678725 +3647;1;-0.2058489;4.662448;8.62875 +3647;0;-0.5636139;4.727234;9.728455 +3647;3;0.2172699;-0.035079956;-0.17527771 +3651;12;0.23849249;-0.05300756;-0.25125998;0.9365789 +3652;4;-12.70752;-2.5405884;-63.746643 +3652;6;0.57673556;-0.4516606;0.05786989 +3652;7;0.8506092;0.4906106;-0.18911698;0.0;-0.523217;0.7541907;-0.39678738;0.0;-0.052037843 +3652;0;-0.55882263;4.750992;9.675995 +3652;3;0.2514801;-0.003326416;-0.1728363 +3652;1;-0.20925285;4.67161;8.623711 +3652;0;-0.5301666;4.7747498;9.628311 +3652;2;0.3689294;-0.098939896;-1.149643; +3653;3;0.28385925;0.024154663;-0.16854858 +3654;0;-0.5301666;4.784256;9.504303 +3658;12;0.23901714;-0.05307392;-0.25163648;0.93634033 +3658;3;0.31440735;0.05104065;-0.16610718 +3658;1;-0.2148352;4.6835356;8.617102 +3658;0;-0.5015106;4.817505;9.399368 +3658;3;0.34066772;0.077301025;-0.16305542 +3658;5;999.5916 +3660;4;-13.456726;-2.5405884;-65.24658 +3660;6;0.55804026;-0.47304848;0.05330523 +3660;7;0.8599435;0.4713742;-0.19571282;0.0;-0.50818074;0.75513774;-0.41414887;0.0;-0.04742897 +3660;0;-0.48718262;4.850769;9.351685 +3661;3;0.36387634;0.1005249;-0.15939331 +3661;12;0.23972556;-0.053058706;-0.25195563;0.9360742 +3662;1;-0.22236261;4.697731;8.60918 +3662;0;-0.45851135;4.8365173;9.213379 +3662;3;0.38342285;0.121292114;-0.1587677 +3664;0;-0.47283936;4.907776;9.156143 +3665;12;0.24058774;-0.05296681;-0.25222442;0.9357857 +3665;3;0.3999176;0.13595581;-0.1569519 +3667;1;-0.23145604;4.713644;8.600239 +3667;0;-0.47283936;4.9220276;9.065521 +3667;3;0.41152954;0.14938354;-0.1557312 +3670;4;-14.356995;-2.8411865;-65.24658 +3670;6;0.56137305;-0.49683675;0.05211077 +3670;7;0.8585925;0.46798518;-0.2093051;0.0;-0.5106095;0.74417555;-0.43067452;0.0;-0.04578957 +3670;12;0.24156746;-0.05281309;-0.2524571;0.9354792 +3670;0;-0.46806335;4.960037;8.965378 +3670;3;0.4182434;0.15672302;-0.1563263 +3671;0;-0.44418335;4.969528;8.889069 +3671;2;0.22816798;-0.19331074;-0.5792875; +3671;1;-0.24149938;4.7305894;8.590652 +3671;3;0.42312622;0.16099548;-0.1569519 +3673;0;-0.39163208;5.0217896;8.807983 +3673;12;0.242618;-0.05262387;-0.25266722;0.93516123 +3673;3;0.42556763;0.16221619;-0.1587677 +3676;1;-0.25186634;4.7479897;8.5807495 +3676;0;-0.38685608;5.0122986;8.726913 +3676;3;0.42253113;0.16038513;-0.1599884 +3678;4;-11.657715;-2.5405884;-65.24658 +3678;6;0.4514599;-0.5209214;0.044300083 +3678;7;0.90854394;0.3784119;-0.17706576;0.0;-0.41601968;0.78046095;-0.46669915;0.0;-0.03841159 +3678;0;-0.35820007;5.0550537;8.660141 +3678;3;0.41763306;0.15487671;-0.16183472 +3679;12;0.2436988;-0.052422833;-0.25287017;0.9348367 +3680;0;-0.3295288;5.0693054;8.593384 +3680;1;-0.26209107;4.7652645;8.570862 +3681;3;0.40968323;0.14633179;-0.16305542 +3683;0;-0.3199768;5.0883026;8.531357 +3683;12;0.24477099;-0.052231077;-0.2530851;0.934509 +3683;3;0.40298462;0.1377716;-0.16427612 +3685;0;-0.28652954;5.1120605;8.507523 +3685;3;0.39259338;0.12556458;-0.16610718 +3685;1;-0.27169484;4.7820063;8.561233 +3694;4;-14.506531;-3.2913208;-65.54718 +3694;6;0.49894893;-0.5408213;0.033666827 +3694;7;0.8858807;0.41021386;-0.21665618;0.0;-0.4630147;0.7527709;-0.46792445;0.0;-0.02885665 +3695;0;-0.24354553;5.0788116;8.474136 +3695;3;0.38098145;0.11273193;-0.16732788 +3695;0;-0.21487427;5.0930634;8.44075 +3695;12;0.2458037;-0.052068032;-0.25331575;0.9341845 +3697;12;0.2467786;-0.05194609;-0.25356787;0.9338658 +3697;3;0.36753845;0.101745605;-0.16976929 +3697;0;-0.19577026;5.097824;8.421677 +3697;3;0.35716248;0.09074402;-0.1703949 +3697;1;-0.28034973;4.7979207;8.552045 +3697;2;0.026552439;-0.31171274;-0.01690197; +3698;0;-0.19099426;5.0455627;8.393066 +3698;3;0.34249878;0.07974243;-0.1728363 +3698;1;-0.2881062;4.8128037;8.54342 +3698;5;999.5916 +3698;4;-12.406921;-3.440857;-65.24658 +3698;6;0.4272051;-0.5411566;0.02275227 +3698;7;0.9147474;0.3551267;-0.19267124;0.0;-0.4035554;0.7800824;-0.47813654;0.0;-0.019499594 +3698;0;-0.138443;5.040802;8.416901 +3698;3;0.32844543;0.06814575;-0.1728363 +3698;12;0.24768203;-0.051859967;-0.25384238;0.9335568 +3700;17;1;38dead6d7725;7063;897;-64; +3701;17;1;38dead6d60ff;-466;583;-56; +3702;17;1;1c1bb5efa29a;11177;3738;-79; +3703;17;1;1c1bb5ecd182;12185;4339;-68; +3703;0;-0.12411499;4.9933014;8.378754 +3704;1;-0.29494745;4.8265095;8.535451 +3704;3;0.31500244;0.05836487;-0.17098999 +3704;0;-0.07635498;4.98378;8.369217 +3704;3;0.30523682;0.05104065;-0.16976929 +3704;12;0.2485085;-0.05180899;-0.2541397;0.93325907 +3705;0;-0.06201172;4.94104;8.38829 +3705;3;0.29301453;0.04309082;-0.16732788 +3705;1;-0.3008809;4.839118;8.528102 +3708;4;-14.356995;-4.79126;-64.94751 +3708;6;0.47599664;-0.5323099;0.0073925178 +3709;7;0.8905314;0.39482325;-0.22598335;0.0;-0.45487726;0.7658545;-0.4544818;0.0;-0.0063696094 +3709;12;0.24926193;-0.05178862;-0.25444552;0.9329759 +3709;0;-0.052444458;4.9362793;8.397842 +3709;3;0.28263855;0.036987305;-0.16549683 +3709;0;0.019195557;4.879257;8.393066 +3715;1;-0.3061032;4.850816;8.521268 +3715;3;0.27468872;0.03086853;-0.16244507 +3715;2;-0.2134231;-0.18261003;0.15077114; +3715;0;0.023986816;4.841263;8.393066 +3715;3;0.26797485;0.02720642;-0.1599884 +3715;12;0.24995498;-0.051792912;-0.25475502;0.93270576 +3715;1;-0.31066668;4.861676;8.514911 +3715;0;0.04786682;4.803253;8.416901 +3715;3;0.26368713;0.02720642;-0.1569519 +3716;4;-14.2074585;-2.9907227;-66.29639 +3716;6;0.42818907;-0.51856536;-0.0056869276 +3716;7;0.9085341;0.36063498;-0.21096957;0.0;-0.41778147;0.79011935;-0.4485197;0.0;0.004939247 +3717;0;0.10041809;4.750992;8.459839 +3717;3;0.26065063;0.029052734;-0.15266418 +3717;12;0.25059298;-0.051816285;-0.2550588;0.9324502 +3718;1;-0.31499594;4.8721313;8.508773 +3719;0;0.119506836;4.712982;8.402588 +3719;3;0.26002502;0.029647827;-0.14900208 +3721;0;0.1481781;4.6987305;8.44075 +3721;12;0.25120866;-0.051842455;-0.2553514;0.93220294 +3722;3;0.26065063;0.03149414;-0.14472961 +3723;0;0.17684937;4.6179657;8.38353 +3723;1;-0.31912276;4.8823185;8.502778 +3723;3;0.26490784;0.0357666;-0.144104 +3725;4;-14.0563965;-4.1915894;-66.44745 +3725;6;0.41755065;-0.5033923;-0.02109173 +3725;7;0.90975595;0.35521817;-0.2148588;0.0;-0.4147324;0.80069387;-0.4323038;0.0;0.018473957 +3725;0;0.17684937;4.5894623;8.416901 +3726;3;0.26553345;0.040039062;-0.1428833 +3726;12;0.2518074;-0.051868033;-0.25562093;0.9319661 +3728;0;0.20072937;4.537201;8.416901 +3728;1;-0.32350132;4.8927393;8.49662 +3728;2;-0.45894536;0.15548754;0.104652405; +3728;3;0.2698059;0.04309082;-0.1404419 +3730;0;0.22940063;4.53244;8.38829 +3730;12;0.25242442;-0.051883455;-0.25588092;0.93172693 +3731;3;0.27590942;0.049209595;-0.1410675 +3733;1;-0.3280535;4.9033456;8.49033 +3733;0;0.26760864;4.470688;8.397842 +3738;1;-0.332869;4.9144177;8.483738 +3738;12;0.25305474;-0.051889226;-0.25612554;0.9314884 +3738;3;0.28201294;0.052261353;-0.1398468 +3739;5;999.60046 +3739;4;-12.857056;-3.590393;-65.84625 +3739;6;0.36742967;-0.48898992;-0.03185558 +3739;7;0.92740595;0.3171203;-0.19837569;0.0;-0.37299812;0.82388365;-0.42671785;0.0;0.028117595 +3739;0;0.28671265;4.4611816;8.373978 +3740;3;0.28935242;0.057754517;-0.13800049 +3740;0;0.3058319;4.413666;8.335815 +3740;3;0.29608154;0.06324768;-0.1386261 +3740;12;0.25371513;-0.051885948;-0.25635952;0.93124455 +3740;0;0.3201599;4.366165;8.335815 +3741;3;0.3027954;0.0675354;-0.13800049 +3743;1;-0.33804423;4.92596;8.476836 +3743;0;0.35359192;4.3519135;8.35968 +3744;3;0.31318665;0.07241821;-0.1398468 +3745;4;-12.406921;-3.440857;-66.89758 +3745;6;0.32896462;-0.47961268;-0.042272102 +3745;7;0.93923223;0.28661332;-0.18893322;0.0;-0.34122914;0.83960116;-0.4226496;0.0;0.03749153 +3745;0;0.35836792;4.347168;8.335815 +3745;12;0.25440872;-0.051870085;-0.25658348;0.9309945 +3746;3;0.32051086;0.07608032;-0.1410675 +3747;0;0.38226318;4.3186646;8.283371 +3747;1;-0.34358943;4.9381766;8.469502 +3747;3;0.32783508;0.080963135;-0.14228821 +3747;2;-0.66959304;0.48830462;0.14206219; +3749;0;0.4204712;4.342407;8.302444 +3749;12;0.25514564;-0.051846623;-0.2568037;0.9307334 +3750;3;0.3357849;0.08401489;-0.144104 +3751;0;0.4300232;4.2949066;8.2595215 +3752;1;-0.3494694;4.9509673;8.461791 +3752;3;0.34188843;0.0846405;-0.14595032 +3754;4;-12.70752;-3.741455;-67.196655 +3754;6;0.31830028;-0.47896123;-0.05201697 +3754;7;0.94098526;0.2777374;-0.19341335;0.0;-0.33528736;0.8428952;-0.42084455;0.0;0.0461429 +3754;0;0.4204712;4.266403;8.240448 +3754;3;0.34799194;0.08769226;-0.14717102 +3755;12;0.25591868;-0.051813044;-0.25702113;0.93046296 +3756;0;0.42526245;4.256897;8.226135 +3756;1;-0.35557547;4.9642253;8.453764 +3757;3;0.35289;0.08830261;-0.14778137 +3759;0;0.43959045;4.2473907;8.187988 +3759;12;0.25672203;-0.051778216;-0.2572433;0.93018204 +3760;3;0.35655212;0.09013367;-0.14961243 +3761;0;0.46824646;4.2426453;8.192749 +3761;1;-0.3618168;4.9778504;8.445483 +3762;3;0.35899353;0.09013367;-0.15205383 +3764;4;-12.70752;-5.090332;-65.24658 +3764;6;0.335259;-0.47716278;-0.057091657 +3764;7;0.9341646;0.29226342;-0.20474072;0.0;-0.35322443;0.8388455;-0.41421115;0.0;0.05068706 +3764;0;0.49690247;4.2188873;8.178452 +3764;3;0.36143494;0.09135437;-0.1532898 +3765;12;0.25754702;-0.05174405;-0.2574662;0.92989427 +3766;0;0.47779846;4.2046356;8.178452 +3766;1;-0.36817405;4.991634;8.43707 +3767;2;-0.8309231;0.6916785;0.23955536; +3767;3;0.3620453;0.09013367;-0.1557312 +3769;12;0.2583841;-0.05170749;-0.2576961;0.92960036 +3773;0;0.48735046;4.209381;8.130753 +3773;1;-0.37455466;5.0054607;8.428593 +3773;3;0.36143494;0.089523315;-0.1563263 +3773;0;0.5160217;4.2046356;8.11644 +3773;3;0.35899353;0.085250854;-0.1581726 +3773;5;999.60046 +3773;4;-12.70752;-4.4906616;-64.497375 +3773;6;0.3197467;-0.47715142;-0.063491896 +3774;7;0.9382431;0.279218;-0.20429692;0.0;-0.34135494;0.84328294;-0.41515136;0.0;0.056362387 +3774;0;0.52557373;4.2188873;8.102127 +3774;3;0.35472107;0.08279419;-0.1599884 +3774;12;0.2592241;-0.051674303;-0.25793216;0.9293028 +3776;0;0.49690247;4.2283936;8.054443 +3776;1;-0.3807603;5.019088;8.420207 +3776;3;0.349823;0.07791138;-0.16061401 +3778;0;0.52557373;4.209381;8.078278 +3778;12;0.2600504;-0.05164933;-0.25817955;0.9290046 +3779;3;0.34432983;0.07241821;-0.16244507 +3781;0;0.52557373;4.214142;8.054443 +3781;1;-0.38664934;5.0322785;8.412062 +3781;3;0.33700562;0.06692505;-0.16183472 +3783;4;-12.257385;-5.39093;-65.54718 +3783;6;0.29869866;-0.4811683;-0.06516027 +3783;7;0.9448238;0.26086304;-0.19813764;0.0;-0.32245362;0.8472028;-0.42222154;0.0;0.05772076 +3783;0;0.55900574;4.223633;8.059219 +3783;3;0.32722473;0.061416626;-0.16305542 +3784;12;0.2608484;-0.051638376;-0.25843835;0.9287095 +3785;0;0.544693;4.214142;8.073517 +3785;1;-0.3920884;5.0448403;8.404283 +3786;3;0.31806946;0.056533813;-0.1612091 +3786;2;-0.9327994;0.79037666;0.34314537; +3788;12;0.26160547;-0.0516428;-0.2587074;0.9284213 +3788;0;0.56378174;4.233139;8.040131 +3789;3;0.30950928;0.049819946;-0.16061401 +3790;0;0.57333374;4.2283936;8.049683 +3790;1;-0.39706674;5.0567393;8.396894 +3790;3;0.30033875;0.044921875;-0.1599884 +3792;4;-11.506653;-4.940796;-65.54718 +3792;6;0.25331983;-0.4826311;-0.07110432 +3792;7;0.95737606;0.2219927;-0.1847984;0.0;-0.28190613;0.85750794;-0.43035918;0.0;0.062929496 +3793;0;0.582901;4.256897;8.068741 +3793;3;0.2881317;0.03942871;-0.1581726 +3793;12;0.26231927;-0.05166186;-0.25898045;0.9281427 +3795;0;0.592453;4.2188873;8.006744 +3795;1;-0.40149894;5.067761;8.390037 +3795;3;0.27775574;0.036376953;-0.157547 +3797;0;0.611557;4.233139;8.044907 +3797;12;0.26297626;-0.051696867;-0.25925922;0.9278769 +3798;3;0.26919556;0.032714844;-0.1557312 +3800;0;0.616333;4.256897;8.049683 +3800;1;-0.4055379;5.077933;8.383689 +3800;3;0.25697327;0.029647827;-0.15510559 +3802;4;-11.956787;-5.9906006;-67.04712 +3802;6;0.25306535;-0.4852363;-0.07641703 +3802;7;0.9564089;0.22147097;-0.19034857;0.0;-0.28411555;0.85639083;-0.43112978;0.0;0.067530036 +3802;0;0.640213;4.3043976;8.044907 +3803;3;0.24720764;0.025985718;-0.1532898 +3803;12;0.2635831;-0.05173938;-0.25953925;0.9276241 +3804;0;0.640213;4.3281555;8.049683 +3805;2;-1.0329818;0.7921238;0.35522747; +3805;1;-0.4092196;5.087292;8.377834 +3805;3;0.23620605;0.02293396;-0.15205383 +3808;0;0.69755554;4.313904;8.068741 +3808;12;0.2641382;-0.05178767;-0.25981978;0.927385 +3808;3;0.22459412;0.01927185;-0.15083313 +3810;0;0.69755554;4.280655;8.03537 +3810;3;0.21421814;0.015609741;-0.15083313 +3810;1;-0.41250017;5.0957527;8.37253 +3811;5;999.60046 +3812;4;-12.857056;-5.39093;-65.097046 +3812;6;0.26780736;-0.48792866;-0.086593546 +3812;7;0.95001143;0.23373826;-0.20698969;0.0;-0.30272496;0.8518189;-0.4275068;0.0;0.076393016 +3812;0;0.72621155;4.3329163;8.03537 +3812;3;0.20321655;0.011947632;-0.15144348 +3813;12;0.2646392;-0.051841438;-0.2600997;0.92716056 +3814;1;-0.41544804;5.103384;8.367734 +3815;0;0.72621155;4.366165;8.030594 +3815;3;0.19039917;0.008285522;-0.15022278 +3817;12;0.26508865;-0.051899936;-0.26038626;0.9269485 +3818;0;0.74053955;4.3519135;8.073517 +3818;3;0.17939758;0.005844116;-0.15144348 +3820;1;-0.41810283;5.110034;8.3635435 +3820;0;0.75009155;4.370926;8.09259 +3820;3;0.16778564;0.0033874512;-0.15266418 +3821;4;-12.406921;-5.8410645;-65.69672 +3821;6;0.23406576;-0.4934356;-0.09242461 +3822;7;0.9584407;0.20426705;-0.19916423;0.0;-0.27346736;0.85669506;-0.4373662;0.0;0.08128351 +3822;0;0.8026428;4.4231873;8.106903 +3822;3;0.15434265;0.002166748;-0.1532898 +3822;12;0.2654805;-0.05196094;-0.26067856;0.9267507 +3824;1;-0.42058557;5.115759;8.359919 +3825;0;0.7978668;4.4611816;8.173676 +3825;2;-1.1875771;0.7167754;0.30369186; +3825;3;0.14213562;0.0033874512;-0.15022278 +3827;0;0.8169861;4.44693;8.1689 +3827;12;0.26581705;-0.052016754;-0.2609808;0.926566 +3827;3;0.13052368;0.0040130615;-0.15083313 +3830;0;0.8265381;4.4849396;8.2165985 +3831;3;0.11709595;0.006439209;-0.15022278 +3831;1;-0.4230253;5.1204844;8.356901 +3832;4;-12.857056;-4.3411255;-65.54718 +3832;6;0.21957031;-0.49752876;-0.10025644 +3832;7;0.96068585;0.19140396;-0.20111468;0.0;-0.2633375;0.8576665;-0.4416577;0.0;0.087954305 +3832;0;0.8074188;4.480179;8.221359 +3832;3;0.10546875;0.0070648193;-0.15144348 +3833;12;0.26609868;-0.052056655;-0.26127875;0.92639905 +3834;0;0.8265381;4.537201;8.278595 +3834;3;0.091430664;0.008880615;-0.15205383 +3834;1;-0.4256079;5.1242085;8.354487 +3836;0;0.8074188;4.53244;8.30722 +3836;12;0.26632693;-0.05207403;-0.26157963;0.92624754 +3836;3;0.075546265;0.0113220215;-0.15205383 +3838;0;0.8169861;4.546707;8.326294 +3839;1;-0.42836455;5.1268063;8.352753 +3839;3;0.06271362;0.013763428;-0.15266418 +3842;4;-12.5564575;-4.940796;-66.596985 +3843;6;0.21164772;-0.49780536;-0.09780813 +3843;7;0.9632179;0.18457533;-0.19530244;0.0;-0.25465542;0.8590268;-0.44409838;0.0;0.08580046 +3843;0;0.8551941;4.594223;8.393066 +3843;3;0.048675537;0.016220093;-0.1545105 +3843;12;0.26649526;-0.052066565;-0.26188427;0.92611337 +3843;1;-0.43133947;5.12829;8.351688 +3844;0;0.8074188;4.5752106;8.38353 +3844;2;-1.28028;0.56837416;0.08473778; +3844;3;0.031570435;0.018661499;-0.1532898 +3846;0;0.8026428;4.6417236;8.44075 +3846;12;0.26660594;-0.052028175;-0.26219308;0.9259963 +3847;3;0.016906738;0.023544312;-0.15388489 +3848;0;0.7978668;4.660721;8.459839 +3848;1;-0.4345971;5.128539;8.351366 +3848;3;0.0016326904;0.026611328;-0.1545105 +3849;5;999.60046 +3850;4;-12.857056;-5.39093;-65.54718 +3850;6;0.23932299;-0.5016825;-0.09403415 +3850;7;0.956503;0.20783503;-0.20471112;0.0;-0.2798653;0.8517855;-0.44287357;0.0;0.08232531 +3851;0;0.7883148;4.636963;8.474136 +3851;3;-0.014251709;0.029052734;-0.1545105 +3851;12;0.26665133;-0.05195568;-0.2625013;0.92590004 +3853;0;0.73098755;4.693985;8.497986 +3854;1;-0.43818963;5.127556;8.351783 +3854;3;-0.028900146;0.030273438;-0.1557312 +3855;0;0.6736603;4.670227;8.531357 +3856;3;-0.045394897;0.028427124;-0.15388489 +3856;12;0.26663482;-0.051844057;-0.26281303;0.9258225 +3857;0;0.6688843;4.6654816;8.54567 +3858;1;-0.44197673;5.125302;8.352966 +3858;3;-0.06188965;0.024765015;-0.15510559 +3865;4;-12.406921;-7.1914673;-65.69672 +3865;6;0.27717406;-0.49844268;-0.07811247 +3865;7;0.9486918;0.24034451;-0.20547107;0.0;-0.30868477;0.8448045;-0.43705708;0.0;0.06853862 +3865;0;0.630661;4.6654816;8.621979 +3865;3;-0.080825806;0.021713257;-0.15510559 +3865;12;0.26654893;-0.051704917;-0.26313138;0.9257646 +3865;0;0.606781;4.6322327;8.664902 +3865;1;-0.44552088;5.121645;8.3550205 +3865;2;-1.1897492;0.42926025;-0.15555; +3865;3;-0.10220337;0.016220093;-0.1563263 +3865;0;0.53512573;4.6559753;8.741211 +3865;12;0.2663818;-0.051554885;-0.26345575;0.92572886 +3866;3;-0.12174988;0.010726929;-0.1557312 +3867;1;-0.44886738;5.1162553;8.358143 +3867;0;0.49214172;4.6322327;8.769836 +3868;3;-0.1443634;0.0040130615;-0.1545105 +3869;4;-13.607788;-5.9906006;-66.596985 +3869;6;0.36136714;-0.48530376;-0.05605875 +3869;7;0.9247043;0.31272978;-0.21707618;0.0;-0.3774464;0.8274052;-0.4158545;0.0;0.049559865 +3870;0;0.4443512;4.6322327;8.78891 +3870;3;-0.16696167;-0.003326416;-0.15205383 +3870;12;0.26611564;-0.051391874;-0.26379913;0.9257167 +3871;0;0.39179993;4.5799713;8.84137 +3872;1;-0.4516894;5.1090975;8.362369 +3872;3;-0.18955994;-0.011260986;-0.14839172 +3874;0;0.34883118;4.57045;8.889069 +3874;12;0.26574236;-0.051227424;-0.26415005;0.92573303 +3875;3;-0.2133789;-0.02104187;-0.14595032 +3876;1;-0.4538023;5.100039;8.367783 +3877;0;0.28671265;4.556198;8.946289 +3877;3;-0.23538208;-0.031417847;-0.1404419 +3879;4;-12.107849;-6.440735;-65.69672 +3879;6;0.3914208;-0.47083932;-0.032037254 +3879;7;0.91835016;0.33999014;-0.20258288;0.0;-0.3947382;0.8237856;-0.40688977;0.0;0.02854633 +3879;0;0.20072937;4.5657043;9.013062 +3879;3;-0.25675964;-0.043029785;-0.13494873 +3881;12;0.26525518;-0.051067263;-0.2645055;0.92578006 +3882;1;-0.45497802;5.089152;8.374344 +3882;2;-0.8467945;0.46790123;-0.48512745; +3882;0;0.1625061;4.5181885;9.027374 +3882;3;-0.2805786;-0.055862427;-0.13067627 +3884;0;0.1529541;4.494446;9.079834 +3884;12;0.2646521;-0.0509263;-0.26486027;0.92585903 +3884;3;-0.3038025;-0.06806946;-0.1239624 +3888;0;0.10041809;4.437439;9.117996 +3888;3;-0.3209076;-0.08151245;-0.11540222 +3888;1;-0.454958;5.076346;8.382114 +3888;5;999.60297 +3888;4;-13.90686;-5.6915283;-67.796326 +3888;6;0.49097434;-0.45290154;-0.01101273 +3888;7;0.87954843;0.4239508;-0.21600999;0.0;-0.47570634;0.79296446;-0.38067156;0.0;0.00990224 +3889;0;0.03831482;4.432678;9.179993 +3890;3;-0.3398285;-0.095565796;-0.109298706 +3890;12;0.26392636;-0.05081167;-0.26521456;0.9259711 +3891;0;-0.0046844482;4.4089203;9.208603 +3891;1;-0.45361385;5.061964;8.390881 +3891;3;-0.3544922;-0.11265564;-0.100738525 +3893;0;-0.052444458;4.370926;9.251541 +3894;12;0.26309538;-0.050735496;-0.26555893;0.926113 +3894;3;-0.3703766;-0.12794495;-0.09524536 +3896;0;-0.028564453;4.366165;9.261063 +3896;3;-0.38198853;-0.14138794;-0.08792114 +3896;1;-0.45069593;5.046256;8.400493 +3899;4;-12.107849;-5.8410645;-64.94751 +3899;6;0.5025001;-0.44054928;0.0030843506 +3899;7;0.8770106;0.43563202;-0.20267546;0.0;-0.4804631;0.7927022;-0.37520453;0.0;-0.0027898445 +3899;0;-0.07156372;4.356659;9.284912 +3899;3;-0.3923645;-0.15664673;-0.080581665 +3900;12;0.2621701;-0.050716814;-0.2658956;0.92627984 +3901;0;-0.08111572;4.3329163;9.308762 +3902;2;-0.4882838;0.5994582;-0.7848911; +3902;1;-0.4463193;5.029548;8.41074 +3903;12;0.26116833;-0.05075226;-0.26622325;0.92646676 +3904;3;-0.39970398;-0.17375183;-0.0738678 +3904;0;-0.08590698;4.3043976;9.327835 +3904;3;-0.40519714;-0.19085693;-0.06530762 +3905;17;1;38dead6d7725;5002;1673;-63; +3906;17;1;38dead6d60ff;1048;2614;-56; +3907;17;1;1c1bb5efa29a;11541;1011;-77; +3908;17;1;1c1bb5ecd182;11791;752;-67; +3908;0;-0.15278625;4.2473907;9.370773 +3908;1;-0.4402847;5.0121784;8.42142 +3908;3;-0.4082489;-0.20552063;-0.061645508 +3908;4;-11.506653;-4.6401978;-65.097046 +3908;6;0.5081459;-0.4255111;0.016303107 +3908;7;0.8768063;0.44317082;-0.18657537;0.0;-0.48061442;0.795743;-0.36851418;0.0;-0.014848665 +3908;0;-0.147995;4.2426453;9.427994 +3908;3;-0.4094696;-0.22140503;-0.0579834 +3909;12;0.26010656;-0.05085521;-0.26653835;0.9266692 +3910;0;-0.19099426;4.2188873;9.404144 +3910;1;-0.4328026;4.994506;8.432301 +3910;3;-0.40763855;-0.23667908;-0.057373047 +3912;0;-0.16233826;4.199875;9.38031 +3913;12;0.25900894;-0.05102848;-0.26685584;0.9268757 +3913;3;-0.40153503;-0.25073242;-0.056152344 +3915;0;-0.147995;4.1523743;9.385086 +3915;1;-0.4240043;4.976979;8.443105 +3915;3;-0.39419556;-0.26538086;-0.05493164 +3917;4;-11.506653;-6.2911987;-66.596985 +3917;6;0.536493;-0.41650656;0.015767861 +3917;7;0.8626601;0.46742767;-0.1932071;0.0;-0.5055786;0.7860254;-0.35574475;0.0;-0.014419234 +3917;0;-0.157547;4.1713715;9.399368 +3917;3;-0.38076782;-0.27638245;-0.053710938 +3918;12;0.25789943;-0.051273856;-0.2671843;0.9270769 +3920;0;-0.157547;4.176132;9.365997 +3920;1;-0.4140447;4.960144;8.453499 +3920;2;-0.29968274;0.7187028;-0.91507053; +3921;3;-0.36671448;-0.28797913;-0.053710938 +3922;0;-0.15278625;4.176132;9.413681 +3923;3;-0.34777832;-0.2940979;-0.053100586 +3923;12;0.2568117;-0.051591802;-0.2675216;0.9272639 +3924;0;-0.11933899;4.1713715;9.404144 +3924;1;-0.40321758;4.9445276;8.463165 +3925;3;-0.3282318;-0.29959106;-0.05432129 +3926;5;999.60297 +3927;4;-12.257385;-5.39093;-66.596985 +3927;6;0.5369595;-0.41746187;0.012689361 +3927;7;0.8618304;0.46759647;-0.19647388;0.0;-0.50706404;0.7854749;-0.3548457;0.0;-0.0115993 +3927;0;-0.10499573;4.190384;9.385086 +3927;3;-0.3038025;-0.30386353;-0.055541992 +3928;12;0.25577843;-0.051975794;-0.26786292;0.9274295 +3929;0;-0.100234985;4.2188873;9.337372 +3929;1;-0.3918836;4.930542;8.471853 +3929;3;-0.27874756;-0.30386353;-0.056152344 +3931;0;-0.12411499;4.185623;9.294464 +3932;12;0.2548276;-0.052412536;-0.26821238;0.9275657 +3932;3;-0.25248718;-0.30264282;-0.057373047 +3934;0;-0.07635498;4.190384;9.265839 +3934;1;-0.3805963;4.9187;8.479248 +3934;3;-0.22254944;-0.30082703;-0.0592041 +3936;4;-11.657715;-5.5404663;-64.94751 +3936;6;0.5124427;-0.42470253;0.008240296 +3936;7;0.8731846;0.4467494;-0.19484253;0.0;-0.4873318;0.7941222;-0.36314976;0.0;-0.0075081545 +3937;0;-0.10499573;4.209381;9.184769 +3937;3;-0.1926117;-0.2989807;-0.060424805 +3937;12;0.25399572;-0.052882258;-0.2685576;0.92766726 +3939;0;-0.08590698;4.233139;9.16568 +3939;1;-0.3695113;4.9092855;8.485192 +3939;2;-0.29766938;0.6876588;-0.80861664; +3939;3;-0.1608429;-0.29470825;-0.06286621 +3941;0;-0.042907715;4.266403;9.11322 +3942;12;0.25329962;-0.053382043;-0.2688993;0.92772996 +3942;3;-0.1302948;-0.28675842;-0.06530762 +3943;0;-0.01423645;4.347168;9.022598 +3944;1;-0.35882917;4.9025044;8.48957 +3944;3;-0.09976196;-0.27760315;-0.068374634 +3946;4;-11.956787;-5.39093;-64.64691 +3946;6;0.47942233;-0.44898862;0.0015778646 +3946;7;0.8875764;0.415549;-0.19881472;0.0;-0.4606585;0.79932207;-0.3858473;0.0;-0.0014214765 +3946;0;0.014419556;4.342407;8.984451 +3947;3;-0.07104492;-0.26905823;-0.07203674 +3947;12;0.2527547;-0.05390317;-0.26923335;0.9277516 +3948;0;0.03831482;4.4089203;8.936752 +3949;1;-0.3489427;4.8982687;8.492428 +3949;3;-0.043563843;-0.2574463;-0.07447815 +3951;0;0.07652283;4.4421844;8.831833 +3951;12;0.25236124;-0.05442557;-0.26956317;0.92773247 +3951;3;-0.016693115;-0.24339294;-0.07752991 +3953;0;0.08129883;4.4754486;8.70784 +3953;1;-0.3400713;4.8964276;8.493848 +3953;3;0.006515503;-0.22872925;-0.08241272 +3955;4;-12.406921;-5.5404663;-66.14685 +3955;6;0.43514818;-0.47473246;-0.009336009 +3955;7;0.9049691;0.37492824;-0.20114575;0.0;-0.42539614;0.8065283;-0.41054863;0.0;0.008303466 +3956;0;0.057418823;4.5181885;8.660141 +3956;12;0.25211415;-0.054931752;-0.26988384;0.9276765 +3957;3;0.028518677;-0.2158966;-0.08731079 +3960;1;-0.33255193;4.8966627;8.49401 +3960;0;0.10997009;4.5847015;8.574295 +3960;2;-0.41045794;0.45026112;-0.3481083; +3960;3;0.048065186;-0.20246887;-0.0909729 +3962;0;0.08607483;4.6179657;8.46936 +3962;12;0.25200075;-0.055404603;-0.27019975;0.9275872 +3962;3;0.06333923;-0.18902588;-0.096466064 +3964;0;0.119506836;4.670227;8.397842 +3965;1;-0.32630536;4.898602;8.4931345 +3965;3;0.07676697;-0.17803955;-0.100128174 +3965;5;999.60297 +3966;4;-12.857056;-4.6401978;-65.54718 +3966;6;0.40405178;-0.5074884;-0.014229699 +3966;7;0.9166638;0.3435979;-0.20412716;0.0;-0.39946556;0.8035921;-0.44121078;0.0;0.012435879 +3966;0;0.1577301;4.6892242;8.335815 +3966;3;0.08532715;-0.16764832;-0.105026245 +3966;12;0.25199768;-0.055841353;-0.27051106;0.9274712 +3968;1;-0.32117018;4.9017067;8.491539 +3968;0;0.10997009;4.7747498;8.230911 +3968;3;0.09265137;-0.15786743;-0.10990906 +3970;0;0.1481781;4.7747498;8.140289 +3971;3;0.09692383;-0.14993286;-0.11418152 +3971;12;0.25207606;-0.056240663;-0.2708259;0.9273338 +3973;0;0.10517883;4.817505;8.097366 +3973;3;0.09814453;-0.14382935;-0.11907959 +3973;1;-0.3170419;4.9054904;8.489509 +3975;0;0.1481781;4.8555145;8.068741 +3975;3;0.095703125;-0.13954163;-0.12333679 +3975;4;-13.607788;-4.6401978;-65.097046 +3975;6;0.39570963;-0.5416444;-0.018362401 +3976;7;0.9189189;0.33028868;-0.21563281;0.0;-0.39413267;0.79064655;-0.46854824;0.0;0.01573316 +3976;12;0.25220418;-0.056602344;-0.271148;0.9271829 +3981;1;-0.31361806;4.9094586;8.487342 +3981;2;-0.47816092;0.12622404;0.28622818; +3981;12;0.25235325;-0.056934655;-0.27148202;0.9270241 +3981;0;0.1290741;4.879257;7.9638214 +3981;3;0.09082031;-0.13587952;-0.12884521 +3981;0;0.124298096;4.9267883;7.906601 +3981;3;0.08654785;-0.13282776;-0.13189697 +3984;0;0.1386261;4.9647827;7.8350525 +3984;1;-0.31072164;4.9132204;8.4852705 +3985;3;0.07859802;-0.12731934;-0.13677979 +3985;4;-14.356995;-5.8410645;-66.44745 +3985;6;0.40481317;-0.5647339;-0.01769122 +3985;7;0.91530335;0.33269483;-0.22701092;0.0;-0.40248787;0.77645653;-0.48489052;0.0;0.014943543 +3985;0;0.1386261;4.998047;7.815979 +3985;3;0.07066345;-0.12428284;-0.1404419 +3986;12;0.2524966;-0.057242136;-0.2718319;0.9268637 +3987;0;0.1529541;5.074051;7.7635193 +3987;1;-0.30835587;4.9165173;8.483447 +3987;3;0.06088257;-0.123062134;-0.14533997 +3990;12;0.25262266;-0.05751828;-0.27219656;0.9267052 +3991;0;0.114746094;5.0883026;7.7062836 +3991;3;0.05050659;-0.12121582;-0.14900208 +3992;0;0.114746094;5.0788116;7.687195 +3992;1;-0.30637175;4.919135;8.482001 +3992;3;0.038894653;-0.118774414;-0.1563263 +3994;4;-12.406921;-5.5404663;-66.89758 +3994;6;0.33901262;-0.5837985;-0.014925805 +3994;7;0.9402425;0.27747643;-0.19735935;0.0;-0.34027752;0.78688514;-0.51480365;0.0;0.012453255 +3994;0;0.1386261;5.1453247;7.644287 +3994;3;0.024841309;-0.11633301;-0.16305542 +3995;12;0.25271416;-0.05777066;-0.27258286;0.926551 +3996;0;0.1386261;5.1785736;7.6156616 +3996;1;-0.3048541;4.920859;8.481056 +3997;2;-0.4777977;-0.16075087;0.7470226; +3997;3;0.011413574;-0.115722656;-0.16793823 +3999;0;0.1338501;5.164322;7.6204376 +3999;12;0.2527611;-0.057989962;-0.2729944;0.92640334 +3999;3;-8.087158E-4;-0.11328125;-0.17527771 +4002;0;0.1481781;5.1928253;7.6251984 +4002;1;-0.30373728;4.9215045;8.480721 +4002;3;-0.016693115;-0.10839844;-0.18138123 +4003;5;999.60297 +4004;0;0.1434021;5.188095;7.5918274 +4004;3;-0.033172607;-0.10411072;-0.1887207 +4004;4;-12.5564575;-5.9906006;-65.54718 +4004;6;0.33835265;-0.5994005;-0.018886764 +4004;7;0.93959796;0.27406892;-0.20504102;0.0;-0.3419246;0.7788605;-0.52579826;0.0;0.0155933825 +4005;12;0.25275344;-0.058179688;-0.27343678;0.92626303 +4006;0;0.1434021;5.2736053;7.6108856 +4007;1;-0.30327404;4.920961;8.481054 +4007;3;-0.0466156;-0.099227905;-0.19482422 +4008;0;0.16729736;5.2498474;7.6108856 +4015;3;-0.060668945;-0.09373474;-0.20031738 +4015;12;0.2526894;-0.058322977;-0.27390254;0.92613393 +4015;0;0.1577301;5.2450867;7.6156616 +4016;1;-0.30347854;4.919241;8.482044 +4016;3;-0.07594299;-0.087005615;-0.20581055 +4016;4;-12.5564575;-5.6915283;-64.64691 +4016;6;0.3359767;-0.6030176;-0.02070832 +4016;7;0.94001466;0.27154306;-0.20648704;0.0;-0.34070757;0.7775779;-0.5284798;0.0;0.017054733 +4016;0;0.124298096;5.2830963;7.6108856 +4016;3;-0.088760376;-0.08151245;-0.21070862 +4016;12;0.25256997;-0.058418024;-0.27439657;0.9260142 +4016;0;0.1481781;5.278351;7.6586 +4016;1;-0.30445972;4.916357;8.483681 +4016;3;-0.10220337;-0.071746826;-0.21742249 +4016;2;-0.49175552;-0.34496927;0.8795786; +4018;0;0.1290741;5.2688446;7.682434 +4019;3;-0.11503601;-0.06562805;-0.2223053 +4019;12;0.2523952;-0.05846017;-0.27491108;0.92590666 +4021;0;0.1386261;5.2736053;7.687195 +4021;1;-0.30634367;4.9123535;8.485932 +4021;3;-0.12359619;-0.055862427;-0.2247467 +4025;12;0.25217265;-0.05844145;-0.27544126;0.9258109 +4025;1;-0.30915838;4.9074717;8.488655 +4026;4;-13.157654;-4.0405273;-66.29639 +4026;6;0.33554655;-0.60120904;-0.018031426 +4026;7;0.9407187;0.2715459;-0.20325153;0.0;-0.3388617;0.7786619;-0.5280705;0.0;0.014868851 +4026;0;0.124298096;5.254593;7.7492065 +4026;3;-0.13397217;-0.04486084;-0.22903442 +4026;0;0.09562683;5.2688446;7.773056 +4026;3;-0.1431427;-0.033859253;-0.23147583 +4027;0;0.09085083;5.254593;7.8350525 +4028;12;0.25191623;-0.05836302;-0.27598387;0.925724 +4028;3;-0.15168762;-0.021652222;-0.23391724 +4030;0;0.07652283;5.2498474;7.811203 +4030;1;-0.3130494;4.90178;8.491799 +4030;3;-0.15962219;-0.011260986;-0.23330688 +4033;4;-14.356995;-5.5404663;-64.19678 +4033;6;0.413467;-0.591727;-0.009796235 +4033;7;0.913494;0.33347428;-0.2330745;0.0;-0.40677106;0.7600391;-0.5068313;0.0;0.0081305355 +4033;0;0.03352356;5.2450867;7.9161377 +4038;3;-0.16635132;0.002166748;-0.23147583 +4038;12;0.25163257;-0.058216084;-0.2765289;0.9256478 +4038;0;0.009643555;5.230835;7.944748 +4038;1;-0.31793696;4.8953834;8.495308 +4038;2;-0.44775465;-0.38932085;0.71033096; +4039;3;-0.17550659;0.013763428;-0.23208618 +4039;0;-0.0046844482;5.2023315;7.98291 +4039;3;-0.1773529;0.025985718;-0.23086548 +4040;12;0.25132632;-0.058003735;-0.2770624;0.9255848 +4040;1;-0.32383898;4.8883686;8.499123 +4040;0;-0.047683716;5.1833344;7.997223 +4041;3;-0.18101501;0.037597656;-0.22779846 +4042;5;999.59375 +4043;4;-12.857056;-3.590393;-65.097046 +4043;6;0.3886059;-0.57505965;0.005962464 +4043;7;0.9266504;0.3179565;-0.2005557;0.0;-0.3758908;0.7765905;-0.505582;0.0;-0.0050034304 +4043;0;-0.028564453;5.1690826;8.030594 +4044;3;-0.18589783;0.048599243;-0.2247467 +4044;12;0.25100425;-0.057724543;-0.2775759;0.9255357 +4044;0;-0.08590698;5.1833344;8.049683 +4044;1;-0.3305852;4.881033;8.503078 +4045;3;-0.18894958;0.05897522;-0.21986389 +4048;13;70.74599 +4049;0;-0.08111572;5.188095;8.111679 +4049;3;-0.18833923;0.06692505;-0.21437073 +4049;12;0.25068045;-0.05739145;-0.27807117;0.9254956 +4050;1;-0.337954;4.8734345;8.507146 +4050;0;-0.10978699;5.1358337;8.159363 +4050;3;-0.19017029;0.07546997;-0.21070862 +4051;4;-14.0563965;-4.79126;-66.44745 +4051;6;0.44637942;-0.56174535;0.013454527 +4051;7;0.9050282;0.3653614;-0.2177958;0.0;-0.42519912;0.76340026;-0.48623627;0.0;-0.011386582 +4052;0;-0.13366699;5.1263123;8.221359 +4052;3;-0.19017029;0.0821991;-0.20581055 +4052;12;0.2503522;-0.0570132;-0.2785356;0.9254681 +4054;0;-0.147995;5.1453247;8.2595215 +4054;1;-0.3457991;4.865709;8.511251 +4054;2;-0.30902016;-0.33134127;0.42513943; +4055;3;-0.19078064;0.09013367;-0.20153809 +4056;0;-0.16233826;5.1453247;8.2642975 +4056;12;0.25002936;-0.056602415;-0.2789715;0.9254493 +4057;3;-0.19139099;0.09623718;-0.19482422 +4058;0;-0.15278625;5.121567;8.292908 +4059;1;-0.3539966;4.8579364;8.515354 +4059;3;-0.19017029;0.101119995;-0.1899414 +4061;4;-12.857056;-5.39093;-65.097046 +4061;6;0.44480452;-0.55317277;0.01842164 +4061;7;0.90670586;0.36611003;-0.20939876;0.0;-0.4214721;0.7680685;-0.48211184;0.0;-0.015673384 +4062;0;-0.16233826;5.1358337;8.340591 +4062;3;-0.18711853;0.105407715;-0.18260193 +4062;12;0.24971078;-0.0561646;-0.27937484;0.9254403 +4063;0;-0.19577026;5.121567;8.373978 +4063;1;-0.36233705;4.8502374;8.519391 +4064;3;-0.18589783;0.11029053;-0.17527771 +4066;12;0.24940121;-0.055711556;-0.27974752;0.9254387 +4066;0;-0.19577026;5.121567;8.397842 +4066;3;-0.18284607;0.11273193;-0.16915894 +4068;0;-0.21966553;5.107315;8.455063 +4068;1;-0.3707588;4.842638;8.523351 +4069;3;-0.1791687;0.11578369;-0.16366577 +4070;4;-12.70752;-4.4906616;-66.14685 +4071;6;0.44594058;-0.5432458;0.02597451 +4071;7;0.9076914;0.36921376;-0.19944292;0.0;-0.4190489;0.77231973;-0.4774099;0.0;-0.0222326 +4071;0;-0.20533752;5.097824;8.455063 +4071;3;-0.1773529;0.1164093;-0.16061401 +4072;12;0.24910043;-0.055247393;-0.28008586;0.9254451 +4073;0;-0.22921753;5.0883026;8.455063 +4073;1;-0.37907648;4.8353224;8.527138 +4073;2;-0.23221597;-0.31341743;0.16343212; +4074;3;-0.17428589;0.1182251;-0.15510559 +4075;0;-0.23876953;5.0788116;8.488449 +4076;12;0.24881619;-0.054785226;-0.2803963;0.9254551 +4076;3;-0.17367554;0.1182251;-0.15083313 +4078;0;-0.24832153;5.06456;8.49321 +4078;1;-0.38728392;4.8281603;8.530826 +4078;3;-0.17062378;0.1182251;-0.14533997 +4080;5;999.59375 +4081;4;-12.70752;-5.090332;-66.14685 +4081;6;0.46338025;-0.53751165;0.029229328 +4082;7;0.90085286;0.3839445;-0.20260994;0.0;-0.43339816;0.7684026;-0.47087535;0.0;-0.02510399 +4082;0;-0.25787354;5.017044;8.569519 +4083;3;-0.17123413;0.117630005;-0.1398468 +4083;12;0.24853875;-0.054324623;-0.2806826;0.92547005 +4084;0;-0.26742554;5.0360413;8.555222 +4084;3;-0.17367554;0.11456299;-0.13372803 +4084;1;-0.39524782;4.8210683;8.534471 +4085;0;-0.24832153;5.031311;8.54567 +4085;12;0.2482658;-0.05387356;-0.28094783;0.92548907 +4086;3;-0.17489624;0.113342285;-0.12701416 +4089;1;-0.4027343;4.8138723;8.538182 +4089;0;-0.23876953;5.050308;8.588608 +4089;3;-0.17489624;0.11090088;-0.120895386 +4091;17;1;38dead6d7725;4335;1501;-64; +4093;17;1;38dead6d60ff;778;1259;-55; +4094;17;0;1c1bb5efa29a;0;0;0; +4094;17;1;1c1bb5ecd182;8208;3120;-67; +4095;4;-12.70752;-4.4906616;-66.14685 +4095;6;0.45855245;-0.53139836;0.027793566 +4095;7;0.90258145;0.38160875;-0.19930272;0.0;-0.4298521;0.77303946;-0.46651605;0.0;-0.02395773 +4095;12;0.2479804;-0.05343774;-0.28118837;0.9255179 +4095;0;-0.23876953;5.0550537;8.631531 +4095;3;-0.17979431;0.109069824;-0.11357117 +4095;0;-0.2722168;5.06456;8.6362915 +4095;1;-0.4097561;4.8065605;8.541966 +4095;2;-0.20234069;-0.27509308;-0.005906105; +4095;3;-0.1816101;0.10784912;-0.10441589 +4095;0;-0.2817688;5.031311;8.6458435 +4095;12;0.24768361;-0.053014666;-0.2814029;0.9255565 +4095;3;-0.18467712;0.10601807;-0.09585571 +4097;1;-0.41627893;4.799022;8.545889 +4097;0;-0.2817688;5.0455627;8.6458435 +4097;3;-0.18589783;0.1023407;-0.08731079 +4099;4;-11.956787;-4.0405273;-65.84625 +4099;6;0.44611162;-0.5280293;0.032578558 +4099;7;0.9087337;0.3726967;-0.18788356;0.0;-0.41642696;0.7792628;-0.46833554;0.0;-0.028136434 +4100;0;-0.26742554;5.0360413;8.650604 +4100;3;-0.18833923;0.101745605;-0.07875061 +4101;12;0.2473699;-0.05260306;-0.28157443;0.9256117 +4102;0;-0.23399353;5.007553;8.6792145 +4102;3;-0.19017029;0.09867859;-0.072647095 +4103;1;-0.4221662;4.7913365;8.5499115 +4104;0;-0.25309753;5.0122986;8.726913 +4105;12;0.24703848;-0.052213006;-0.28171846;0.92567843 +4105;3;-0.19139099;0.09440613;-0.064086914 +4108;0;-0.26742554;4.998047;8.717377 +4108;1;-0.42749345;4.7834916;8.554038 +4108;3;-0.19200134;0.089523315;-0.056152344 +4112;4;-11.956787;-4.3411255;-66.596985 +4112;6;0.44757226;-0.5203852;0.030667678 +4112;7;0.9076747;0.37549037;-0.18743975;0.0;-0.41883045;0.7821668;-0.46129847;0.0;-0.026603958 +4112;0;-0.23876953;4.998047;8.722153 +4112;3;-0.19444275;0.085861206;-0.048828125 +4112;12;0.24669291;-0.051841017;-0.28183374;0.92575645 +4113;0;-0.23399353;5.0265503;8.73645 +4113;3;-0.19689941;0.08035278;-0.044540405 +4113;2;-0.21911177;-0.27620363;-0.11669445; +4113;1;-0.4320616;4.775586;8.558225 +4115;0;-0.21009827;4.969528;8.693527 +4115;3;-0.19689941;0.076690674;-0.037826538 +4115;12;0.24633394;-0.05149843;-0.28191873;0.92584527 +4117;0;-0.22442627;4.960037;8.745987 +4117;3;-0.19871521;0.07058716;-0.031723022 +4117;1;-0.43597016;4.7675233;8.562521 +4121;5;999.59375 +4121;4;-12.107849;-4.1915894;-66.44745 +4121;6;0.44491163;-0.515752;0.025654856 +4121;7;0.90779656;0.37439546;-0.18903323;0.0;-0.41881686;0.7852341;-0.4560702;0.0;-0.022315279 +4121;0;-0.21487427;4.9552917;8.779373 +4121;3;-0.19934082;0.0675354;-0.025604248 +4121;12;0.24595676;-0.051178675;-0.2819797;0.9259447 +4124;0;-0.20054626;4.950531;8.803207 +4124;1;-0.4391892;4.7593594;8.566897 +4124;3;-0.19934082;0.065078735;-0.01890564 +4124;0;-0.19577026;4.893524;8.812759 +4125;3;-0.19871521;0.062026978;-0.012786865 +4125;12;0.24556392;-0.050887786;-0.2820235;0.9260517 +4127;1;-0.44187906;4.751169;8.571303 +4127;0;-0.20533752;4.8982697;8.812759 +4127;3;-0.19871521;0.060195923;-0.008514404 +4129;4;-13.006592;-4.1915894;-67.196655 +4129;6;0.46805313;-0.507182;0.02329581 +4129;7;0.89731055;0.3943575;-0.19828272;0.0;-0.44093;0.78010404;-0.44386768;0.0;-0.020361416 +4129;0;-0.21966553;4.884018;8.784149 +4129;3;-0.19934082;0.057754517;-0.0011749268 +4130;12;0.24516523;-0.050615832;-0.28204218;0.9261664 +4132;0;-0.19099426;4.893524;8.793686 +4132;3;-0.19934082;0.05470276;0.0037078857 +4132;2;-0.28142217;-0.21509075;-0.18701744; +4132;1;-0.44413507;4.743013;8.575703 +4134;0;-0.15278625;4.879257;8.798447 +4134;12;0.24476174;-0.05036284;-0.2820385;0.92628807 +4134;3;-0.1974945;0.05104065;0.007369995 +4136;1;-0.44585285;4.7348924;8.5801 +4137;0;-0.16711426;4.869766;8.803207 +4137;3;-0.1926117;0.04737854;0.0110321045 +4138;4;-12.70752;-4.4906616;-66.44745 +4138;6;0.4611576;-0.5052058;0.018981056 +4138;7;0.8994643;0.38939527;-0.19833119;0.0;-0.43667847;0.7836628;-0.44179693;0.0;-0.01660885 +4140;0;-0.157547;4.86026;8.812759 +4140;3;-0.18955994;0.044921875;0.015304565 +4140;12;0.2443533;-0.050129827;-0.2820136;0.9264161 +4141;0;-0.16711426;4.8982697;8.812759 +4141;1;-0.4471338;4.727043;8.58436 +4141;3;-0.18650818;0.041259766;0.018371582 +4148;0;-0.147995;4.8317566;8.81752 +4148;12;0.24395324;-0.049920555;-0.281976;0.9265443 +4148;3;-0.18101501;0.038208008;0.02142334 +4148;1;-0.44796282;4.7195787;8.588424 +4149;0;-0.143219;4.8460083;8.807983 +4149;3;-0.17550659;0.033935547;0.023254395 +4149;4;-13.157654;-5.6915283;-65.54718 +4149;6;0.49255824;-0.5029283;0.016258702 +4149;7;0.8847152;0.4143269;-0.21357028;0.0;-0.46591428;0.7720204;-0.43232885;0.0;-0.014244838 +4149;0;-0.143219;4.8317566;8.807983 +4149;3;-0.16757202;0.033325195;0.02508545 +4150;12;0.24356839;-0.04973775;-0.28192666;0.9266704 +4151;0;-0.138443;4.8365173;8.793686 +4151;3;-0.1590271;0.029052734;0.02508545 +4151;1;-0.44845223;4.712539;8.592262 +4151;2;-0.34215236;-0.17671251;-0.19928837; +4153;0;-0.12411499;4.850769;8.807983 +4153;12;0.24320193;-0.049577743;-0.28186905;0.9267928 +4153;3;-0.15229797;0.025375366;0.0256958 +4155;0;-0.08590698;4.8365173;8.774612 +4155;1;-0.44860643;4.7062187;8.595717 +4155;3;-0.1437378;0.024765015;0.026916504 +4157;5;999.59375 +4157;4;-11.657715;-2.8411865;-66.14685 +4157;6;0.39656457;-0.50373954;0.009790089 +4157;7;0.9241744;0.33827302;-0.17740616;0.0;-0.38187444;0.80781704;-0.44900295;0.0;-0.008573864 +4158;0;-0.07156372;4.8555145;8.731674 +4158;3;-0.13580322;0.02293396;0.026916504 +4158;12;0.24287;-0.049444586;-0.2817979;0.9269085 +4160;0;-0.09068298;4.841263;8.755524 +4160;1;-0.44856215;4.7005873;8.598801 +4160;3;-0.1278534;0.02293396;0.028137207 +4162;0;-0.08590698;4.841263;8.745987 +4162;12;0.2425706;-0.04933328;-0.28173563;0.9270118 +4162;3;-0.11930847;0.025375366;0.028747559 +4164;0;-0.057235718;4.884018;8.717377 +4165;1;-0.44848642;4.6956487;8.601502 +4165;3;-0.11381531;0.025375366;0.027526855 +4166;4;-11.357117;-3.1402588;-66.14685 +4166;6;0.3796203;-0.5106788;0.00656561 +4166;7;0.92997456;0.32328817;-0.17502023;0.0;-0.36757928;0.81030184;-0.45639506;0.0;-0.005727882 +4167;0;-0.07156372;4.879257;8.745987 +4167;3;-0.10649109;0.026611328;0.028747559 +4167;12;0.24230942;-0.049235165;-0.28166732;0.9271061 +4169;2;-0.41556022;-0.19813585;-0.12574291; +4171;1;-0.4484835;4.6912837;8.603885 +4171;0;-0.052444458;4.8650208;8.6792145 +4171;3;-0.10159302;0.028427124;0.028137207 +4171;0;-0.019012451;4.8982697;8.703064 +4172;12;0.24208021;-0.04914373;-0.2815965;0.92719233 +4172;3;-0.09365845;0.029647827;0.027526855 +4173;0;-0.033355713;4.9267883;8.6792145 +4174;3;-0.08938599;0.032714844;0.02935791 +4174;1;-0.4485737;4.6874833;8.605951 +4176;4;-11.357117;-3.1402588;-66.14685 +4176;6;0.37039635;-0.5162927;0.003843153 +4176;7;0.93286383;0.31480214;-0.17511344;0.0;-0.36021376;0.8106788;-0.46156916;0.0;-0.0033422103 +4176;0;-0.042907715;4.917267;8.664902 +4176;3;-0.088150024;0.0345459;0.02935791 +4177;12;0.24188426;-0.049050953;-0.28150937;0.9272748 +4178;0;-0.09068298;4.9457855;8.6362915 +4178;1;-0.4488646;4.68409;8.607783 +4179;3;-0.080825806;0.029647827;0.029968262 +4181;0;-0.10978699;4.9315186;8.698288 +4182;12;0.2417122;-0.0489554;-0.28142935;0.927349 +4182;3;-0.07104492;0.01927185;0.030578613 +4183;0;-0.10978699;4.9362793;8.798447 +4183;1;-0.44880453;4.6811833;8.609367 +4183;3;-0.059448242;0.010726929;0.027526855 +4186;4;-10.157776;-4.0405273;-66.596985 +4186;6;0.36223578;-0.5112463;0.0124773495 +4186;7;0.93719727;0.30905494;-0.16169779;0.0;-0.34862977;0.8155397;-0.4619005;0.0;-0.010881655 +4186;0;-0.10499573;4.9552917;8.946289 +4186;3;-0.047836304;0.0033874512;0.027526855 +4187;12;0.24155766;-0.04888774;-0.28135166;0.9274164 +4189;0;-0.12890625;4.9220276;9.027374 +4189;1;-0.44809452;4.679085;8.610545 +4189;2;-0.41628426;-0.2831421;-0.14344692; +4190;3;-0.036239624;-0.0014953613;0.026916504 +4190;0;-0.11933899;4.9647827;9.036911 +4190;3;-0.027069092;-0.003326416;0.0256958 +4191;12;0.2414375;-0.048870187;-0.28128812;0.9274679 +4193;1;-0.44705826;4.677903;8.61124 +4193;0;-0.18144226;4.98378;9.008301 +4193;3;-0.016067505;-0.0069885254;0.0256958 +4195;5;999.59375 +4196;0;-0.17666626;4.9933014;9.008301 +4196;3;-0.009353638;-0.012481689;0.0256958 +4196;4;-10.157776;-4.0405273;-66.596985 +4196;6;0.3806176;-0.5060571;0.019608984 +4196;7;0.9317877;0.32493183;-0.16183595;0.0;-0.36259818;0.8120677;-0.45724022;0.0;-0.017150145 +4196;12;0.24136347;-0.048885707;-0.28123063;0.92750376 +4197;0;-0.19099426;5.0455627;8.984451 +4198;1;-0.44577113;4.677552;8.611498 +4198;3;-0.004470825;-0.019195557;0.022644043 +4200;0;-0.21487427;5.050308;8.941528 +4200;12;0.24133357;-0.048916366;-0.28112504;0.927542 +4201;3;0.0028533936;-0.028366089;0.022033691 +4202;0;-0.22442627;5.107315;8.955841 +4203;1;-0.44402033;4.677756;8.611479 +4203;3;0.009567261;-0.038757324;0.018981934 +4205;4;-12.406921;-5.8410645;-66.89758 +4205;6;0.4674305;-0.51814294;0.025053963 +4205;7;0.8980394;0.39144912;-0.2007305;0.0;-0.4393763;0.77554977;-0.45328903;0.0;-0.021763114 +4205;0;-0.26742554;5.097824;8.960602 +4205;3;0.018127441;-0.050964355;0.017150879 +4205;12;0.24132161;-0.048996158;-0.28108537;0.9275529 +4207;0;-0.2960968;5.1168213;9.022598 +4208;3;0.024841309;-0.058914185;0.01776123 +4208;2;-0.28148198;-0.39978695;-0.36322498; +4208;1;-0.44156495;4.678557;8.61117 +4210;0;-0.3199768;5.121567;9.103683 +4210;12;0.24132751;-0.049126428;-0.28106666;0.92755014 +4210;3;0.03401184;-0.06440735;0.018371582 +4212;0;-0.3152008;5.15007;9.151382 +4212;1;-0.4384355;4.679966;8.610563 +4212;3;0.04194641;-0.06745911;0.019592285 +4214;4;-12.406921;-5.8410645;-66.89758 +4214;6;0.4913553;-0.5123368;0.03442936 +4214;7;0.8891334;0.41124004;-0.20080678;0.0;-0.45666352;0.76848584;-0.44820517;0.0;-0.030002749 +4215;0;-0.29130554;5.1358337;9.170456 +4215;3;0.04928589;-0.06867981;0.020812988 +4215;12;0.24135534;-0.04930514;-0.28105488;0.927537 +4217;0;-0.25787354;5.164322;9.156143 +4217;3;0.05722046;-0.06562805;0.02508545 +4217;1;-0.43496913;4.6820316;8.609616 +4219;0;-0.23399353;5.173828;9.132294 +4220;3;0.06333923;-0.061965942;0.028137207 +4220;12;0.24141504;-0.049512535;-0.2810403;0.92751473 +4221;0;-0.24832153;5.211838;9.08461 +4222;1;-0.43150422;4.684775;8.608298 +4222;3;0.0700531;-0.05769348;0.02935791 +4224;4;-13.157654;-2.6901245;-66.596985 +4224;6;0.4549692;-0.5206953;0.027327504 +4224;7;0.90391254;0.38119793;-0.19398531;0.0;-0.42706013;0.7792294;-0.45871705;0.0;-0.023702936 +4224;0;-0.21009827;5.1785736;9.070297 +4224;3;0.07737732;-0.05218506;0.03302002 +4225;12;0.24151196;-0.04972541;-0.28100687;0.92748827 +4226;0;-0.19577026;5.164322;9.075058 +4226;1;-0.428265;4.6880755;8.606663 +4227;2;-0.21855733;-0.50823927;-0.49562073; +4227;3;0.08470154;-0.047302246;0.03730774 +4229;0;-0.22921753;5.1263123;9.089371 +4229;12;0.24164139;-0.049930234;-0.28095663;0.9274588 +4229;3;0.09082031;-0.04058838;0.039749146 +4231;0;-0.25309753;5.1168213;9.075058 +4231;1;-0.42535982;4.691919;8.6047125 +4232;3;0.099990845;-0.035079956;0.043411255 +4233;4;-13.157654;-2.6901245;-66.596985 +4233;6;0.46173164;-0.5132355;0.027882129 +4234;7;0.90103257;0.38810113;-0.19369517;0.0;-0.43307096;0.7799345;-0.45183125;0.0;-0.02428666 +4234;0;-0.25787354;5.1833344;9.103683 +4234;3;0.11097717;-0.02470398;0.047683716 +4235;5;999.5979 +4235;12;0.24180914;-0.050121285;-0.28088015;0.92742795 +4236;0;-0.23399353;5.1833344;9.022598 +4236;1;-0.4228832;4.696559;8.602303 +4236;3;0.12013245;-0.013702393;0.051971436 +4238;0;-0.23876953;5.197586;8.960602 +4240;12;0.2420285;-0.050299663;-0.28077963;0.92739147 +4241;3;0.13175964;-0.0027160645;0.0574646 +4242;0;-0.22921753;5.221344;8.912918 +4243;1;-0.4210842;4.702135;8.599344 +4243;3;0.14213562;0.010726929;0.063568115 +4244;4;-12.257385;-4.940796;-66.29639 +4244;6;0.44765285;-0.52978176;0.025711782 +4244;7;0.90679115;0.37351453;-0.195491;0.0;-0.42099604;0.7778903;-0.4665287;0.0;-0.0221847 +4244;0;-0.22442627;5.2070923;8.893829 +4244;3;0.15252686;0.023544312;0.06907654 +4244;12;0.24230969;-0.050450142;-0.2806433;0.9273511 +4246;0;-0.20054626;5.2593536;8.831833 +4247;1;-0.42004454;4.7086625;8.595822 +4247;2;-0.2366086;-0.5125122;-0.3743019; +4247;3;0.16046143;0.038208008;0.0745697 +4248;0;-0.17666626;5.2355957;8.793686 +4249;3;0.16473389;0.052261353;0.08067322 +4249;12;0.24265696;-0.050568316;-0.28046304;0.92730844 +4252;0;-0.157547;5.2498474;8.741211 +4252;1;-0.41985643;4.715886;8.591871 +4252;3;0.16900635;0.065704346;0.08799744 +4254;4;-12.406921;-4.1915894;-65.69672 +4254;6;0.4239782;-0.5407785;0.018021524 +4254;7;0.91512805;0.35268778;-0.1953255;0.0;-0.4028673;0.7814018;-0.47655994;0.0;-0.015449164 +4254;0;-0.16233826;5.230835;8.6792145 +4254;3;0.17085266;0.07974243;0.09288025 +4255;12;0.24305728;-0.050642274;-0.28023672;0.92726797 +4258;1;-0.42050442;4.7234893;8.587662 +4258;0;-0.16711426;5.2736053;8.631531 +4258;3;0.17207336;0.09074402;0.099609375 +4264;12;0.24349523;-0.05066902;-0.27996683;0.92723316 +4264;0;-0.16711426;5.278351;8.54567 +4264;3;0.17266846;0.101745605;0.10450745 +4264;1;-0.42184448;4.7313046;8.583293 +4265;12;0.24395627;-0.05065412;-0.27965638;0.9272065 +4265;0;-0.147995;5.297348;8.49321 +4265;3;0.17329407;0.109069824;0.10876465 +4265;4;-12.107849;-3.440857;-66.89758 +4265;6;0.38917196;-0.55760705;0.017423332 +4265;7;0.9285811;0.32194898;-0.184624;0.0;-0.370835;0.78507423;-0.4961249;0.0;-0.014783364 +4265;0;-0.143219;5.297348;8.455063 +4265;3;0.17266846;0.117630005;0.111831665 +4265;1;-0.42367494;4.7391953;8.578849 +4266;0;-0.138443;5.278351;8.41214 +4266;3;0.17085266;0.12432861;0.11366272 +4266;2;-0.31692782;-0.56385374;0.0016803741; +4269;0;-0.143219;5.264099;8.369217 +4269;3;0.17144775;0.12739563;0.116104126 +4269;12;0.24442968;-0.050606932;-0.2793173;0.9271866 +4270;0;-0.095443726;5.2736053;8.335815 +4271;1;-0.42588314;4.7470355;8.574403 +4271;3;0.17022705;0.13227844;0.116104126 +4272;4;-12.107849;-4.1915894;-64.94751 +4272;6;0.3918032;-0.5640478;0.011449337 +4272;7;0.9264987;0.32270542;-0.19354944;0.0;-0.37617356;0.7810582;-0.49843907;0.0;-0.009675601 +4273;0;-0.09068298;5.287857;8.326294 +4273;3;0.16963196;0.1365509;0.115493774 +4273;5;999.5979 +4274;12;0.24490778;-0.050535887;-0.27895743;0.92717266 +4275;1;-0.42839;4.7548313;8.569958 +4275;0;-0.10978699;5.254593;8.33107 +4277;17;1;38dead6d7725;2488;2250;-65; +4278;17;1;38dead6d60ff;154;4052;-59; +4279;17;0;1c1bb5efa29a;0;0;0; +4280;17;0;1c1bb5ecd182;0;0;0; +4280;3;0.16656494;0.14083862;0.11488342 +4280;0;-0.08111572;5.211838;8.302444 +4280;12;0.24538632;-0.050445583;-0.2785933;0.92716056 +4280;3;0.16534424;0.14328003;0.11427307 +4280;0;-0.08111572;5.197586;8.297668 +4280;1;-0.43122736;4.762454;8.565582 +4281;3;0.16412354;0.14572144;0.11305237 +4282;4;-11.357117;-4.4906616;-68.096924 +4282;6;0.35650715;-0.5595776;0.009775413 +4282;7;0.9388877;0.29577297;-0.17609125;0.0;-0.34412375;0.7941912;-0.5008384;0.0;-0.008284329 +4283;0;-0.06201172;5.188095;8.297668 +4283;3;0.16107178;0.1487732;0.11061096 +4284;12;0.24586183;-0.05033496;-0.27822524;0.9271511 +4284;0;-0.07635498;5.121567;8.269058 +4285;3;0.15802002;0.1506195;0.108169556 +4285;1;-0.4342948;4.7698445;8.561313 +4285;2;-0.3937267;-0.49170208;0.26268196; +4287;0;-0.057235718;5.1263123;8.283371 +4287;12;0.24632756;-0.050209355;-0.27786297;0.9271429 +4287;3;0.15618896;0.15428162;0.10694885 +4290;0;-0.057235718;5.1358337;8.316757 +4290;1;-0.43767244;4.777005;8.557147 +4290;3;0.15374756;0.15794373;0.10632324 +4291;4;-11.956787;-2.9907227;-66.29639 +4291;6;0.3674752;-0.55319786;0.006881867 +4291;7;0.9345142;0.3056762;-0.18233241;0.0;-0.35587746;0.7940438;-0.49279374;0.0;-0.0058553815 +4296;0;-0.057235718;5.107315;8.321533 +4296;3;0.15068054;0.16099548;0.10510254 +4296;12;0.24678619;-0.05006301;-0.27749744;0.9271383 +4296;0;-0.042907715;5.121567;8.302444 +4296;1;-0.44133615;4.7838902;8.553112 +4296;3;0.15008545;0.1658783;0.10632324 +4296;0;-0.047683716;5.1358337;8.273819 +4296;12;0.24723612;-0.04990101;-0.27714223;0.92713344 +4296;3;0.14640808;0.16894531;0.10694885 +4299;0;-0.052444458;5.1168213;8.292908 +4299;3;0.14274597;0.16894531;0.107543945 +4299;1;-0.44529355;4.7906303;8.549133 +4301;4;-12.406921;-4.4906616;-67.196655 +4302;6;0.38770828;-0.5528254;0.006323929 +4302;7;0.92701477;0.32175243;-0.19266257;0.0;-0.37498605;0.78787804;-0.4885014;0.0;-0.0053819083 +4303;0;-0.06678772;5.097824;8.269058 +4303;3;0.14091492;0.17260742;0.10998535 +4303;12;0.24768126;-0.049718324;-0.27678084;0.9271324 +4304;2;-0.44646466;-0.3537817;0.27938938; +4304;0;-0.06678772;5.06456;8.2118225 +4304;1;-0.4493483;4.797088;8.5453 +4304;3;0.13786316;0.17076111;0.10998535 +4305;0;-0.095443726;5.06456;8.240448 +4306;12;0.2481135;-0.04952394;-0.2764137;0.9271368 +4306;3;0.13420105;0.1695404;0.111831665 +4308;0;-0.095443726;5.0883026;8.235672 +4308;1;-0.45335016;4.803302;8.541597 +4308;3;0.12869263;0.16343689;0.11366272 +4310;4;-11.207581;-3.2913208;-65.84625 +4310;6;0.36066043;-0.55340177;0.011588545 +4310;7;0.9377505;0.3002201;-0.17461944;0.0;-0.3471698;0.7960082;-0.4958267;0.0;-0.009858635 +4311;0;-0.09068298;5.0788116;8.230911 +4311;3;0.124420166;0.15550232;0.11366272 +4311;5;999.5979 +4312;12;0.24853325;-0.049324293;-0.27602893;0.92714965 +4313;0;-0.08111572;5.0930634;8.249985 +4313;1;-0.4568307;4.809134;8.538129 +4313;3;0.11831665;0.14450073;0.11366272 +4315;0;-0.07156372;5.0883026;8.321533 +4320;12;0.24892189;-0.049148146;-0.27565917;0.92716473 +4321;3;0.115875244;0.13227844;0.115493774 +4321;1;-0.45940626;4.814508;8.534961 +4321;0;-0.08111572;5.059799;8.373978 +4322;3;0.112197876;0.1164093;0.11427307 +4322;4;-11.506653;-4.3411255;-65.84625 +4322;6;0.38145208;-0.5435024;0.009686339 +4322;7;0.92994624;0.3186257;-0.1835148;0.0;-0.36760208;0.7943848;-0.48355106;0.0;-0.008290434 +4322;0;-0.057235718;5.0930634;8.407364 +4322;3;0.10914612;0.1023407;0.111831665 +4322;12;0.24927123;-0.049012527;-0.27530122;0.9271844 +4323;2;-0.43468416;-0.30238295;0.23612976; +4323;0;-0.07156372;5.1025696;8.455063 +4323;1;-0.46080974;4.819587;8.53202 +4323;3;0.10731506;0.085250854;0.108169556 +4325;0;-0.07635498;5.1120605;8.497986 +4325;3;0.10670471;0.06692505;0.10572815 +4325;12;0.24958603;-0.048935704;-0.27496478;0.9272036 +4327;1;-0.46098062;4.8244314;8.529271 +4327;0;-0.038131714;5.0930634;8.626755 +4327;3;0.107925415;0.050430298;0.10206604 +4330;4;-12.406921;-5.090332;-64.94751 +4330;6;0.4176317;-0.5333116;0.00442014 +4330;7;0.91495466;0.34927088;-0.20215826;0.0;-0.40353885;0.78711605;-0.46648127;0.0;-0.0038062946 +4330;0;-0.009475708;5.059799;8.631531 +4330;3;0.107925415;0.0357666;0.09899902 +4331;12;0.24986476;-0.048927575;-0.2746612;0.9272189 +4332;0;0.0048675537;5.06456;8.726913 +4332;1;-0.4598863;4.829201;8.52663 +4332;3;0.11036682;0.01927185;0.09655762 +4334;0;0.023986816;5.0788116;8.798447 +4335;12;0.2501198;-0.048990548;-0.2743922;0.9272265 +4335;3;0.11280823;0.0046081543;0.09350586 +4337;0;0.0048675537;5.1263123;8.898605 +4337;1;-0.45762753;4.8340526;8.524003 +4337;3;0.115875244;-0.010650635;0.09106445 +4339;4;-11.657715;-5.090332;-67.196655 +4339;6;0.3795253;-0.52264583;-5.4700184E-4 +4339;7;0.92873925;0.3210211;-0.18544199;0.0;-0.37073317;0.80484176;-0.4634508;0.0;4.7397788E-4 +4339;0;-0.019012451;5.107315;8.984451 +4340;3;0.11953735;-0.018600464;0.08862305 +4340;12;0.25036052;-0.04911974;-0.27415422;0.9272251 +4342;0;-0.047683716;5.154831;8.994003 +4342;1;-0.45445672;4.8390884;8.521315 +4342;2;-0.49063337;-0.2990446;-0.22990131; +4343;3;0.124420166;-0.021652222;0.08618164 +4344;0;-0.042907715;5.1785736;8.989227 +4344;12;0.2505992;-0.04930691;-0.27394342;0.927213 +4344;3;0.12991333;-0.022262573;0.08555603 +4346;0;0.0048675537;5.211838;9.008301 +4347;1;-0.45106533;4.8445415;8.518395 +4347;3;0.14030457;-0.023483276;0.08433533 +4349;4;-10.757446;-4.79126;-66.89758 +4349;6;0.3501548;-0.5245051;-5.403409E-4 +4349;7;0.9392267;0.29692852;-0.17229833;0.0;-0.3432973;0.8130486;-0.47021148;0.0;4.6770382E-4 +4349;0;0.023986816;5.2830963;8.989227 +4350;3;0.14823914;-0.022872925;0.08618164 +4350;5;999.5979 +4350;12;0.25085747;-0.04951422;-0.27372974;0.92719525 +4351;0;0.07652283;5.35437;9.017838 +4351;1;-0.44756475;4.8507824;8.515029 +4352;3;0.15679932;-0.018600464;0.087402344 +4354;0;0.119506836;5.3971252;9.0607605 +4354;12;0.25115538;-0.049744133;-0.2735285;0.9271617 +4354;3;0.16656494;-0.010040283;0.09106445 +4356;0;0.1386261;5.501648;9.089371 +4356;1;-0.44423258;4.8578453;8.511175 +4356;3;0.17329407;9.460449E-4;0.092285156 +4358;4;-11.506653;-4.6401978;-67.49725 +4358;6;0.3252505;-0.544244;-0.015250269 +4358;7;0.94493747;0.2733778;-0.1798828;0.0;-0.32699087;0.8106647;-0.4856951;0.0;0.0130463885 +4359;0;0.18640137;5.549164;9.0607605 +4359;3;0.17878723;0.014389038;0.095336914 +4359;12;0.2515037;-0.0499739;-0.27330828;0.92711985 +4361;0;0.21028137;5.6631775;9.046463 +4361;1;-0.4416348;4.8655834;8.506889 +4361;2;-0.58872914;-0.5657091;-0.5068855; +4362;3;0.18244934;0.029647827;0.09838867 +4363;0;0.20550537;5.6964264;9.041687 +4364;12;0.25190195;-0.050169814;-0.27306294;0.92707336 +4364;3;0.1855011;0.044311523;0.10144043 +4365;0;0.22460938;5.7534485;9.022598 +4366;1;-0.44006965;4.8737473;8.5022955 +4366;3;0.18733215;0.060195923;0.10266113 +4368;4;-10.757446;-3.440857;-66.14685 +4368;6;0.27095115;-0.5675187;-0.02488895 +4368;7;0.959638;0.22569081;-0.16780578;0.0;-0.28045452;0.8124734;-0.511109;0.0;0.020985125 +4368;0;0.22940063;5.848465;9.017838 +4369;3;0.1855011;0.07791138;0.10510254 +4369;12;0.2523429;-0.050303362;-0.27275345;0.92703736 +4370;0;0.23416138;5.8769684;8.974915 +4370;3;0.18244934;0.09196472;0.10632324 +4371;1;-0.43969703;4.882131;8.497504 +4373;0;0.21028137;5.89122;8.946289 +4373;12;0.25281277;-0.05037915;-0.27244613;0.92699564 +4373;3;0.17512512;0.104782104;0.10450745 +4375;0;0.19117737;5.9387207;8.960602 +4375;1;-0.44050804;4.890256;8.492788 +4376;3;0.168396;0.117004395;0.103881836 +4377;4;-12.257385;-4.940796;-67.49725 +4377;6;0.31402624;-0.58518773;-0.02133209 +4377;7;0.9472419;0.2574937;-0.19086602;0.0;-0.32002604;0.792843;-0.51863605;0.0;0.017781261 +4378;0;0.1720581;6.005249;8.998749 +4378;3;0.15679932;0.12739563;0.10206604 +4378;12;0.25328776;-0.050384473;-0.27211866;0.92696184 +4380;0;0.1290741;6.052765;8.979691 +4380;2;-0.7013468;-1.0254006;-0.48462772; +4381;1;-0.44239187;4.8977714;8.4883585 +4381;3;0.14274597;0.1365509;0.099609375 +4382;0;0.10997009;6.0907745;8.974915 +4383;12;0.25374714;-0.050322827;-0.27178445;0.9269376 +4383;3;0.12564087;0.14389038;0.09655762 +4385;0;0.071746826;6.114517;8.970154 +4385;1;-0.4451772;4.904176;8.484514 +4385;3;0.10670471;0.1499939;0.09350586 +4388;4;-12.107849;-4.4906616;-67.196655 +4388;6;0.32630756;-0.5982901;-0.007998223 +4388;7;0.9457581;0.2648685;-0.18811253;0.0;-0.3248045;0.7826981;-0.53092927;0.0;0.006608861 +4389;0;0.023986816;6.1572723;8.946289 +4389;3;0.08532715;0.15306091;0.09106445 +4389;12;0.25415963;-0.05019608;-0.27145064;0.9269293 +4390;5;999.59546 +4391;0;-0.033355713;6.2475433;8.946289 +4391;3;0.06210327;0.15306091;0.08799744 +4391;1;-0.44865045;4.9090967;8.481485 +4393;0;-0.08111572;6.2142944;8.946289 +4393;12;0.25450048;-0.050012846;-0.27113166;0.92693895 +4393;3;0.038894653;0.1512146;0.08555603 +4395;1;-0.4523874;4.912136;8.4795265 +4396;0;-0.15278625;6.171524;8.970154 +4396;3;0.012008667;0.14694214;0.08433533 +4398;12;0.2547389;-0.04978749;-0.2708321;0.9269733 +4401;2;-0.44031775;-1.2954569;-0.48294926; +4401;4;-12.257385;-5.39093;-65.097046 +4401;6;0.39198914;-0.6025635;0.017031088 +4401;7;0.9277043;0.31474686;-0.20074657;0.0;-0.37305215;0.76139456;-0.5301985;0.0;-0.014030988 +4401;0;-0.23876953;6.162033;9.022598 +4401;3;-0.019729614;0.14205933;0.08496094 +4401;1;-0.4560213;4.9128904;8.478894 +4401;0;-0.3104248;6.171524;9.08461 +4401;3;-0.052719116;0.13717651;0.08433533 +4403;0;-0.36297607;6.128784;9.079834 +4403;3;-0.08570862;0.1341095;0.08862305 +4404;12;0.25485057;-0.04953496;-0.27055037;0.9270384 +4405;0;-0.48239136;6.1572723;9.117996 +4405;1;-0.45940304;4.910954;8.479835 +4405;3;-0.11930847;0.12983704;0.09043884 +4409;4;-11.056519;-5.5404663;-66.89758 +4409;6;0.42238927;-0.59329945;0.052856136 +4409;7;0.92294717;0.33988222;-0.18068947;0.0;-0.38242638;0.7562326;-0.53090715;0.0;-0.043802645 +4409;0;-0.57315063;6.1192627;9.16568 +4409;3;-0.15473938;0.12188721;0.09472656 +4409;12;0.25481188;-0.04924964;-0.27027488;0.9271446 +4409;0;-0.68304443;6.1050262;9.170456 +4409;1;-0.4624535;4.906218;8.4824095 +4409;3;-0.18955994;0.11212158;0.10083008 +4411;0;-0.75468445;6.048004;9.21814 +4412;12;0.25461406;-0.0489371;-0.27000785;0.9272931 +4412;3;-0.2243805;0.1035614;0.10572815 +4414;0;-0.816803;6.0195007;9.232452 +4414;3;-0.26042175;0.09196472;0.11244202 +4414;1;-0.46468526;4.8985796;8.486701 +4416;4;-11.506653;-4.6401978;-67.796326 +4416;6;0.49449828;-0.57599336;0.088241115 +4416;7;0.89956254;0.39801574;-0.17991868;0.0;-0.4304938;0.73818696;-0.51937944;0.0;-0.073907554 +4416;0;-0.883667;5.9767303;9.332611 +4416;3;-0.2940216;0.07485962;0.11793518 +4417;12;0.25424454;-0.04861825;-0.26973835;0.9274898 +4419;0;-0.9792175;5.9292297;9.40892 +4419;1;-0.4657983;4.887914;8.492787 +4419;2;0.1659962;-1.216136;-0.70156; +4419;3;-0.33006287;0.05958557;0.12527466 +4421;0;-1.0269775;5.8532104;9.466141 +4422;12;0.25369206;-0.04830437;-0.26946616;0.9277366 +4422;3;-0.36366272;0.04248047;0.13137817 +4425;1;-0.46541223;4.87435;8.500601 +4425;0;-1.0795288;5.7772064;9.537689 +4425;3;-0.39726257;0.020492554;0.13687134 +4426;4;-11.056519;-3.440857;-66.44745 +4426;6;0.54485416;-0.54180133;0.112705916 +4426;7;0.87983656;0.444064;-0.16939536;0.0;-0.46540558;0.73272175;-0.49650428;0.0;-0.09636 +4428;0;-1.1273041;5.6964264;9.609222 +4428;3;-0.4277954;-0.002090454;0.14360046 +4428;5;999.59546 +4428;12;0.2529588;-0.04801698;-0.26918465;0.92803335 +4428;0;-1.1320801;5.639435;9.699844 +4428;1;-0.46312976;4.857957;8.510104 +4428;3;-0.4559021;-0.027145386;0.15031433 +4430;0;-1.1416473;5.5871735;9.747543 +4431;12;0.25204298;-0.04778697;-0.26892188;0.92837054 +4431;3;-0.47911072;-0.05279541;0.1558075 +4433;0;-1.1559601;5.4731293;9.795227 +4433;1;-0.45857728;4.8391905;8.521036 +4434;3;-0.49682617;-0.07785034;0.15948486 +4435;4;-11.956787;-4.6401978;-65.097046 +4435;6;0.6321288;-0.5066005;0.11746927 +4435;7;0.8348116;0.5166505;-0.19016261;0.0;-0.5409137;0.7054402;-0.4580027;0.0;-0.10247895 +4435;0;-1.1750793;5.411377;9.89061 +4436;3;-0.51148987;-0.10227966;0.16192627 +4436;12;0.25096306;-0.047634583;-0.26866743;0.9287445 +4438;0;-1.1750793;5.3258667;9.938309 +4438;2;0.61627585;-0.8203292;-1.1564264; +4438;1;-0.45184302;4.8187504;8.53297 +4438;3;-0.5175934;-0.12794495;0.16436768 +4440;0;-1.1368561;5.2688446;10.038467 +4441;3;-0.51942444;-0.15054321;0.16741943 +4442;12;0.24975988;-0.047572657;-0.26843047;0.92914045 +4442;0;-1.1368561;5.188095;10.095703 +4443;1;-0.44295335;4.7975526;8.545372 +4443;3;-0.5145416;-0.16947937;0.16680908 +4445;4;-11.657715;-3.741455;-66.89758 +4445;6;0.6272318;-0.47214225;0.11213553 +4445;7;0.8344389;0.5226959;-0.1746445;0.0;-0.5420147;0.7210758;-0.4315898;0.0;-0.099658296 +4446;0;-1.0747681;5.0883026;10.143387 +4446;3;-0.5041504;-0.18536377;0.16558838 +4446;12;0.24848339;-0.047612704;-0.26820886;0.9295445 +4448;1;-0.43242836;4.776562;8.557661 +4448;0;-1.0269775;5.0455627;10.138611 +4448;3;-0.49072266;-0.19880676;0.16680908 +4450;12;0.24719577;-0.0477472;-0.2680111;0.929938 +4450;0;-0.98876953;4.950531;10.1577 +4451;3;-0.4705658;-0.20979309;0.16375732 +4453;0;-0.93144226;4.8887787;10.176773 +4453;1;-0.4207547;4.7566066;8.56935 +4454;3;-0.44735718;-0.22262573;0.16253662 +4455;4;-10.757446;-3.440857;-66.14685 +4455;6;0.5919378;-0.4462077;0.09127199 +4455;7;0.84835374;0.50333935;-0.16415049;0.0;-0.52300626;0.7486094;-0.40749025;0.0;-0.0822213 +4455;0;-0.90756226;4.7890015;10.186325 +4455;3;-0.42352295;-0.22872925;0.15826416 +4456;12;0.24594715;-0.047960956;-0.2678271;0.9303109 +4457;1;-0.4082488;4.738361;8.580057 +4457;0;-0.840683;4.7557526;10.176773 +4457;2;0.54006076;-0.30060148;-1.53895; +4458;3;-0.39482117;-0.23789978;0.1558075 +4463;0;-0.7833557;4.727234;10.176773 +4463;3;-0.36244202;-0.24951172;0.15336609 +4463;12;0.24478155;-0.04825186;-0.26766002;0.9306513 +4463;0;-0.7594757;4.61322;10.152924 +4463;1;-0.3950512;4.7223535;8.589495 +4464;3;-0.33067322;-0.25683594;0.14726257 +4464;4;-13.456726;-4.4906616;-66.89758 +4464;6;0.6743941;-0.42543522;0.07466459 +4464;7;0.7981332;0.5687624;-0.19872735;0.0;-0.5986373;0.7114588;-0.36804834;0.0;-0.067945756 +4465;0;-0.71647644;4.5657043;10.148163 +4465;3;-0.29463196;-0.2574463;0.14297485 +4465;12;0.24372552;-0.048616923;-0.26750895;0.93095297 +4465;5;999.59546 +4468;1;-0.3814351;4.7089114;8.5974865 +4468;0;-0.63049316;4.470688;10.176773 +4468;3;-0.25737;-0.25683594;0.13809204 +4469;0;-0.5349426;4.4231873;10.13385 +4469;12;0.24280128;-0.04905381;-0.2673779;0.93120915 +4469;3;-0.21949768;-0.25254822;0.13015747 +4471;0;-0.4202881;4.366165;10.13385 +4471;1;-0.36798415;4.698409;8.603816 +4471;3;-0.18101501;-0.2440033;0.12649536 +4473;4;-12.257385;-3.2913208;-66.596985 +4473;6;0.57639664;-0.4065027;0.041449927 +4473;7;0.8466415;0.50059336;-0.1805671;0.0;-0.5308009;0.77010757;-0.35381478;0.0;-0.038061243 +4474;0;-0.3438568;4.347168;10.191071 +4474;3;-0.14007568;-0.23240662;0.12161255 +4474;12;0.24203911;-0.049534418;-0.26725894;0.9314162 +4475;0;-0.3104248;4.2949066;10.143387 +4476;1;-0.35529715;4.6910224;8.608378 +4476;2;0.15036938;0.17535877;-1.529769; +4476;3;-0.10220337;-0.2146759;0.11732483 +4478;0;-0.24354553;4.290146;10.138611 +4478;12;0.24145901;-0.050026055;-0.26714244;0.9315739 +4479;3;-0.06188965;-0.19573975;0.111831665 +4481;1;-0.34408805;4.686838;8.611113 +4481;0;-0.20054626;4.256897;10.062302 +4481;3;-0.025848389;-0.17436218;0.10632324 +4483;4;-11.357117;-3.440857;-66.44745 +4483;6;0.51083213;-0.40014994;0.019927818 +4483;7;0.87595993;0.45028117;-0.17303498;0.0;-0.48203465;0.8034255;-0.34949952;0.0;-0.018352356 +4483;0;-0.15278625;4.2283936;9.976471 +4484;12;0.24107578;-0.05049117;-0.26700965;0.93168604 +4484;3;0.010192871;-0.15237427;0.09899902 +4487;1;-0.3347771;4.6857014;8.612099 +4487;0;-0.08590698;4.199875;9.895386 +4487;3;0.042556763;-0.12854004;0.09472656 +4488;0;-0.019012451;4.1381226;9.795227 +4488;12;0.2408845;-0.05091118;-0.26687646;0.93175095 +4488;3;0.0712738;-0.10411072;0.09106445 +4490;0;0.052627563;4.133362;9.70462 +4490;3;0.09754944;-0.083343506;0.087402344 +4490;1;-0.32744497;4.6872315;8.611547 +4492;4;-11.506653;-3.590393;-65.54718 +4492;6;0.46179962;-0.4026417;-0.005422886 +4492;7;0.8942922;0.40992808;-0.179445;0.0;-0.44745576;0.82365793;-0.34838334;0.0;0.004989188 +4492;0;0.09562683;4.109619;9.647385 +4493;3;0.12319946;-0.062576294;0.08250427 +4493;12;0.24086848;-0.051270604;-0.2667273;0.931778 +4494;0;0.1338501;4.095352;9.566299 +4495;1;-0.32202095;4.6909595;8.609722 +4495;2;-0.32717794;0.47265577;-1.2209377; +4495;3;0.14396667;-0.046081543;0.07640076 +4497;0;0.1625061;4.1048584;9.4804535 +4497;12;0.24100107;-0.05156479;-0.26656404;0.9317742 +4497;3;0.16290283;-0.030197144;0.07273865 +4499;0;0.16729736;4.0716095;9.351685 +4500;1;-0.3182106;4.696499;8.606843 +4500;3;0.17878723;-0.017974854;0.06907654 +4502;4;-11.357117;-3.440857;-66.89758 +4502;6;0.40612236;-0.41057765;-0.017887633 +4502;7;0.9156923;0.36221766;-0.17408647;0.0;-0.40154546;0.84231025;-0.35954815;0.0;0.016400125 +4502;0;0.18640137;4.0811005;9.299225 +4503;3;0.19161987;-0.0082092285;0.06295776 +4503;12;0.24125613;-0.05180215;-0.26638696;0.93174577 +4503;5;999.59546 +4504;0;0.22460938;4.095352;9.189545 +4504;3;0.2001648;-2.746582E-4;0.056243896 +4505;1;-0.3155782;4.7033925;8.603175 +4507;0;0.23416138;4.0621033;9.122772 +4507;12;0.24160108;-0.05200557;-0.2662204;0.93169266 +4507;3;0.20994568;0.005844116;0.051971436 +4509;0;0.25328064;4.052597;9.065521 +4509;1;-0.3138195;4.711107;8.599017 +4510;3;0.21788025;0.0070648193;0.04524231 +4511;4;-12.406921;-4.4906616;-66.14685 +4512;6;0.42994457;-0.42023942;-0.027931629 +4512;7;0.90388507;0.38055342;-0.1953739;0.0;-0.4270149;0.8298989;-0.3590628;0.0;0.025498018 +4512;0;0.21984863;4.028839;8.970154 +4512;3;0.22276306;0.008880615;0.03791809 +4512;12;0.24200243;-0.052180003;-0.26606846;0.931622 +4514;0;0.24372864;4.052597;8.912918 +4514;1;-0.31256732;4.719465;8.594479 +4514;2;-0.58328044;0.6164155;-0.56309223; +4514;3;0.22398376;0.008285522;0.027526855 +4516;0;0.19593811;4.0621033;8.846146 +4517;12;0.24244638;-0.05234541;-0.26593938;0.93153423 +4517;3;0.22459412;0.006439209;0.020202637 +4519;0;0.1577301;4.009842;8.774612 +4519;1;-0.31175163;4.727995;8.589819 +4519;3;0.22523499;0.0027923584;0.011047363 +4522;4;-11.357117;-3.1402588;-67.196655 +4522;6;0.3835058;-0.4285841;-0.017973797 +4522;7;0.924414;0.3403318;-0.1721426;0.0;-0.38104013;0.84348375;-0.37860757;0.0;0.01634728 +4522;0;0.1577301;3.9860992;8.76506 +4523;3;0.22277832;-0.002090454;0.0018920898 +4523;12;0.24290176;-0.052496288;-0.2658337;0.9314372 +4524;0;0.10041809;3.9860992;8.73645 +4524;3;0.22033691;-0.0057678223;-0.0103302 +4524;1;-0.31109688;4.736451;8.585182 +4526;0;0.057418823;3.962326;8.703064 +4526;12;0.24335392;-0.05265222;-0.26578894;0.9313232 +4526;3;0.21911621;-0.013092041;-0.01889038 +4529;0;-0.023803711;3.933838;8.669678 +4529;1;-0.31065366;4.7446737;8.580657 +4529;3;0.2166748;-0.018600464;-0.029266357 +4531;4;-13.006592;-3.440857;-67.196655 +4531;6;0.49190968;-0.4259639;0.0027456211 +4531;7;0.881965;0.4301048;-0.19273709;0.0;-0.47130823;0.80266845;-0.3655022;0.0;-0.0025002717 +4531;0;-0.06678772;3.9480896;8.6362915 +4532;3;0.21606445;-0.022872925;-0.039031982 +4532;12;0.24379417;-0.052807566;-0.2657992;0.93119633 +4533;0;-0.12890625;3.938568;8.626755 +4534;1;-0.3103322;4.752733;8.576207 +4534;2;-0.4268428;0.742126;-0.12814903; +4534;3;0.2166748;-0.028366089;-0.04574585 +4536;0;-0.17666626;3.9290771;8.507523 +4536;12;0.24422505;-0.05296857;-0.2658615;0.9310565 +4537;3;0.22033691;-0.029586792;-0.050628662 +4538;0;-0.21966553;3.9243164;8.478897 +4538;1;-0.3101198;4.7608895;8.57169 +4539;3;0.22216797;-0.0320282;-0.05430603 +4541;4;-11.657715;-4.79126;-67.196655 +4541;6;0.5138247;-0.4333469;0.02590153 +4541;7;0.8759241;0.44607902;-0.1837674;0.0;-0.48187602;0.79037243;-0.37829486;0.0;-0.023504704 +4541;0;-0.29130554;3.933838;8.416901 +4542;3;0.22460938;-0.035705566;-0.056747437 +4542;12;0.2446613;-0.05313413;-0.26595584;0.93090564 +4544;5;999.59503 +4544;0;-0.38685608;3.9148254;8.397842 +4544;3;0.22645569;-0.041809082;-0.05796814 +4544;1;-0.31005463;4.7692547;8.56704 +4546;17;1;38dead6d7725;3025;1450;-64; +4547;17;1;38dead6d60ff;-541;3160;-54; +4548;17;1;1c1bb5efa29a;12748;956;-74; +4549;17;1;1c1bb5ecd182;11827;2668;-75; +4549;12;0.24510923;-0.053300194;-0.2660765;0.9307437 +4549;0;-0.47763062;3.9053192;8.340591 +4549;3;0.22950745;-0.04852295;-0.055526733 +4549;1;-0.3097564;4.7777824;8.562299 +4549;0;-0.5110626;3.8768158;8.364441 +4549;3;0.23500061;-0.050964355;-0.05430603 +4550;4;-11.357117;-4.1915894;-65.24658 +4550;6;0.58249354;-0.43330315;0.061023574 +4550;7;0.8476252;0.4992691;-0.17961569;0.0;-0.52770054;0.75791734;-0.38352758;0.0;-0.05534964 +4551;0;-0.5540619;3.862564;8.326294 +4551;3;0.23927307;-0.050354004;-0.048187256 +4551;12;0.2455599;-0.05348691;-0.2662077;0.9305767 +4553;1;-0.3092151;4.786684;8.557345 +4553;0;-0.59706116;3.9100647;8.326294 +4553;2;0.032792866;0.8493581;0.1769638; +4554;3;0.2447815;-0.050964355;-0.040863037 +4555;0;-0.6495819;3.9290771;8.292908 +4555;12;0.24603128;-0.05369029;-0.2663298;0.9304056 +4555;3;0.25393677;-0.050354004;-0.032302856 +4558;1;-0.30847222;4.7961984;8.552043 +4558;0;-0.70692444;4.0050964;8.240448 +4558;3;0.26004028;-0.05218506;-0.02558899 +4560;4;-12.107849;-5.090332;-68.096924 +4560;6;0.6298112;-0.45096868;0.085577615 +4560;7;0.82712275;0.5301079;-0.1866913;0.0;-0.55673164;0.72734535;-0.4012713;0.0;-0.07692804 +4560;0;-0.7403717;4.009842;8.221359 +4561;3;0.2637024;-0.055252075;-0.020111084 +4561;12;0.246536;-0.053904574;-0.26641458;0.9302352 +4563;0;-0.7403717;4.000351;8.149826 +4563;1;-0.30736518;4.8063707;8.54637 +4563;3;0.26860046;-0.058303833;-0.01399231 +4566;12;0.24706958;-0.054142203;-0.26647374;0.9300629 +4566;0;-0.7785797;3.9908295;8.154587 +4566;3;0.27287292;-0.063186646;-0.006668091 +4568;0;-0.7594757;3.9813385;8.135513 +4568;3;0.2771454;-0.06745911;-0.002380371 +4568;1;-0.30572534;4.816909;8.540494 +4570;4;-12.406921;-4.4906616;-66.14685 +4570;6;0.65061235;-0.453403;0.09308337 +4570;7;0.8169278;0.54447746;-0.19019233;0.0;-0.57065487;0.7153155;-0.40333185;0.0;-0.08355759 +4570;0;-0.7929077;3.9765778;8.111679 +4570;3;0.2814331;-0.071746826;0.006164551 +4570;12;0.24761635;-0.05440719;-0.2665082;0.9298921 +4573;0;-0.7929077;4.009842;8.111679 +4573;1;-0.30349287;4.8277464;8.5344515 +4574;2;0.3835485;0.8113589;0.37101555; +4574;3;0.28448486;-0.07601929;0.011657715 +4575;12;0.24817215;-0.05470134;-0.26651973;0.9297234 +4575;0;-0.8072357;3.9955902;8.140289 +4575;3;0.28753662;-0.07846069;0.017166138 +4577;0;-0.8120117;3.9860992;8.106903 +4577;1;-0.3006846;4.8388476;8.528262 +4577;3;0.28997803;-0.0809021;0.024490356 +4579;4;-11.956787;-4.6401978;-65.097046 +4579;6;0.65826887;-0.45500574;0.09983003 +4579;7;0.81390804;0.54950815;-0.18866527;0.0;-0.574055;0.71056956;-0.40688044;0.0;-0.08952429 +4580;0;-0.7976837;3.9813385;8.111679 +4580;3;0.2930298;-0.082733154;0.030593872 +4582;12;0.24873537;-0.055022266;-0.2665035;0.9295587 +4583;5;999.59503 +4583;0;-0.7833557;3.9908295;8.06398 +4583;1;-0.2973698;4.850183;8.521936 +4583;3;0.2948761;-0.08517456;0.040374756 +4584;0;-0.7642517;3.9813385;8.078278 +4584;3;0.2973175;-0.08822632;0.048309326 +4584;12;0.24930578;-0.055367287;-0.2664632;0.9293968 +4586;0;-0.73080444;3.9670868;8.06398 +4587;1;-0.29341754;4.861704;8.515507 +4587;3;0.2979126;-0.08822632;0.056869507 +4589;4;-12.257385;-5.6915283;-67.04712 +4589;6;0.6547918;-0.45557016;0.09037889 +4589;7;0.8141208;0.546883;-0.19525956;0.0;-0.5750114;0.7122791;-0.4025176;0.0;-0.081050724 +4589;0;-0.71170044;3.952835;8.044907 +4589;3;0.2997589;-0.087631226;0.06541443 +4591;12;0.24987847;-0.055738494;-0.26638713;0.92924273 +4591;0;-0.70692444;3.962326;8.08783 +4591;1;-0.2889811;4.8733234;8.509014 +4591;2;0.41896906;0.8694248;0.43494225; +4591;3;0.300354;-0.08639526;0.07519531 +4593;0;-0.69737244;3.933838;8.06398 +4593;12;0.25045177;-0.05612464;-0.26627383;0.9290975 +4594;3;0.2997589;-0.0809021;0.083740234 +4596;1;-0.28426415;4.884991;8.50248 +4596;0;-0.6687012;3.9670868;8.044907 +4596;3;0.2973175;-0.075408936;0.09352112 +4598;4;-11.506653;-6.590271;-65.84625 +4598;6;0.64256024;-0.45676258;0.08293042 +4598;7;0.81970584;0.5378153;-0.19707148;0.0;-0.5679397;0.7184944;-0.40151018;0.0;-0.07434353 +4598;0;-0.6113739;3.938568;8.025818 +4598;3;0.2936554;-0.07234192;0.10267639 +4599;12;0.25102788;-0.056515526;-0.26611224;0.92896473 +4601;1;-0.27942237;4.8964663;8.4960375 +4601;0;-0.6113739;3.9195862;8.030594 +4601;3;0.28936768;-0.06745911;0.111846924 +4608;12;0.25159383;-0.05689558;-0.26590714;0.9288471 +4608;1;-0.2745107;4.9075747;8.489785 +4613;0;-0.5779419;3.9053192;8.011505 +4613;3;0.2850952;-0.06074524;0.120407104 +4613;0;-0.5683899;3.8768158;8.016281 +4613;3;0.277771;-0.055862427;0.12895203 +4613;4;-11.657715;-3.741455;-66.89758 +4613;6;0.57463;-0.4494741;0.07078597 +4614;7;0.853994;0.48953906;-0.1761978;0.0;-0.51636827;0.75602126;-0.40223813;0.0;-0.06370197 +4614;0;-0.5062866;3.8768158;8.006744 +4614;3;0.26921082;-0.049743652;0.1375122 +4614;12;0.2521417;-0.057261936;-0.26565638;0.9287477 +4614;0;-0.47283936;3.9148254;8.040131 +4614;1;-0.26954728;4.9181256;8.483838 +4614;2;0.2646665;0.9769039;0.46613216; +4614;3;0.25881958;-0.043029785;0.14666748 +4614;0;-0.45373535;3.9290771;7.987671 +4614;12;0.25266427;-0.057609607;-0.26536125;0.9286687 +4614;3;0.2447815;-0.035705566;0.1564331 +4615;1;-0.2646567;4.92787;8.478335 +4615;0;-0.45851135;3.962326;7.9638214 +4615;3;0.2325592;-0.029586792;0.16316223 +4617;4;-11.956787;-4.3411255;-65.097046 +4617;6;0.5652697;-0.46101874;0.0575108 +4617;7;0.8567446;0.47972226;-0.18935494;0.0;-0.5131654;0.756284;-0.40582728;0.0;-0.05147827 +4617;0;-0.4202881;3.9480896;7.997223 +4617;3;0.2166748;-0.024093628;0.1698761 +4618;12;0.2531467;-0.0579242;-0.2650116;0.92861754 +4618;5;999.59503 +4619;0;-0.4298401;3.9670868;8.001968 +4619;1;-0.25987878;4.9365096;8.473455 +4620;3;0.20140076;-0.022262573;0.17597961 +4622;0;-0.47763062;3.9860992;7.973358 +4622;12;0.2535747;-0.058203902;-0.26463294;0.92859125 +4623;3;0.18429565;-0.018600464;0.18087769 +4624;0;-0.40119934;3.9765778;8.001968 +4624;1;-0.25509796;4.9438877;8.469298 +4624;3;0.16474915;-0.015533447;0.1869812 +4627;4;-12.5564575;-4.6401978;-66.596985 +4627;6;0.5633468;-0.4607045;0.050095633 +4627;7;0.8563003;0.4783417;-0.19477905;0.0;-0.5145267;0.75732315;-0.40214884;0.0;-0.04485387 +4627;0;-0.4298401;3.9480896;8.054443 +4627;12;0.25393134;-0.058457926;-0.26422784;0.9285931 +4627;3;0.14276123;-0.014312744;0.19613647 +4629;0;-0.41552734;4.019348;8.059219 +4629;1;-0.25017124;4.9496903;8.466055 +4629;2;0.1312964;0.96008444;0.47244358; +4630;3;0.118927;-0.011260986;0.20225525 +4631;0;-0.40119934;4.057358;8.021057 +4632;12;0.25420797;-0.058685753;-0.26379243;0.92862695 +4632;3;0.09388733;-0.0069885254;0.20957947 +4634;0;-0.43463135;4.0621033;7.997223 +4634;1;-0.2451685;4.953637;8.463892 +4634;3;0.06640625;-0.011871338;0.21691895 +4636;4;-12.107849;-5.8410645;-66.14685 +4636;6;0.571721;-0.46938366;0.054294366 +4636;7;0.8530138;0.48256087;-0.1987522;0.0;-0.5196394;0.7500177;-0.40920466;0.0;-0.0483985 +4636;0;-0.47283936;4.052597;8.03537 +4637;3;0.035247803;-0.022262573;0.22302246 +4637;12;0.2543814;-0.05887398;-0.26332715;0.9286995 +4638;0;-0.5397186;4.109619;8.197525 +4639;1;-0.23962052;4.9553056;8.463075 +4639;3;0.0010375977;-0.031417847;0.22975159 +4642;0;-0.5922699;4.100113;8.292908 +4642;12;0.2544218;-0.05904716;-0.2628497;0.9288127 +4643;3;-0.031936646;-0.035079956;0.2370758 +4644;0;-0.64004517;4.11911;8.311981 +4644;3;-0.063705444;-0.034484863;0.24378967 +4644;1;-0.23323141;4.9542327;8.463882 +4648;12;0.25430495;-0.059217986;-0.26236272;0.9289716 +4648;4;-11.956787;-5.9906006;-65.54718 +4648;6;0.6316404;-0.4589167;0.07685107 +4648;7;0.82475954;0.52937526;-0.19883007;0.0;-0.5612787;0.7235558;-0.40178746;0.0;-0.06883171 +4648;0;-0.65914917;4.190384;8.311981 +4648;3;-0.092422485;-0.035079956;0.2517395 +4648;1;-0.2265441;4.9507084;8.4661255 +4654;2;0.2790584;0.81880045;0.29149437; +4654;0;-0.73080444;4.199875;8.311981 +4654;12;0.25405142;-0.059358004;-0.26185432;0.9291753 +4654;3;-0.11807251;-0.034484863;0.25845337 +4655;0;-0.73080444;4.3091583;8.38829 +4655;3;-0.14068604;-0.0320282;0.2669983 +4655;1;-0.21963371;4.9451566;8.469552 +4655;0;-0.7738037;4.290146;8.478897 +4655;3;-0.16326904;-0.026535034;0.27494812 +4655;4;-12.857056;-6.2911987;-67.49725 +4655;6;0.6659728;-0.46675095;0.0910102 +4656;7;0.808329;0.5517388;-0.20539843;0.0;-0.58310956;0.70220786;-0.4085185;0.0;-0.081163146 +4656;0;-0.8215637;4.3186646;8.54567 +4656;3;-0.18588257;-0.02104187;0.2835083 +4656;12;0.2536822;-0.05946707;-0.26131794;0.92942023 +4657;5;999.59503 +4658;0;-0.874115;4.3091583;8.559982 +4658;1;-0.21283822;4.93774;8.4740505 +4658;3;-0.20664978;-0.014312744;0.29083252 +4660;0;-0.92666626;4.3186646;8.631531 +4661;12;0.2532161;-0.059531055;-0.26074895;0.929703 +4661;3;-0.22680664;-0.009429932;0.3006134 +4663;0;-0.93144226;4.3614197;8.688751 +4663;1;-0.20624125;4.9285984;8.479533 +4664;3;-0.2457428;-0.002090454;0.30793762 +4665;4;-11.657715;-4.4906616;-66.89758 +4665;6;0.64026904;-0.46292892;0.10679309 +4665;7;0.8258033;0.5345327;-0.17978805;0.0;-0.55583566;0.7175301;-0.41975865;0.0;-0.09537142 +4665;0;-0.99354553;4.3994293;8.693527 +4665;3;-0.26712036;0.002166748;0.31404114 +4666;12;0.25266346;-0.059549253;-0.2601425;0.93002206 +4667;0;-0.9983368;4.4421844;8.750748 +4667;1;-0.19985871;4.9179006;8.485895 +4668;2;0.63034797;0.5557003;-0.09689331; +4668;3;-0.28790283;0.008285522;0.31770325 +4670;0;-0.9457855;4.470688;8.693527 +4670;12;0.25203127;-0.05952581;-0.2595001;0.9303745 +4670;3;-0.30867004;0.013763428;0.320755 +4672;0;-0.92666626;4.437439;8.588608 +4672;1;-0.1936905;4.9055743;8.49317 +4672;3;-0.3288269;0.013763428;0.320755 +4674;4;-12.107849;-5.090332;-66.14685 +4674;6;0.6546366;-0.47453508;0.107479036 +4675;7;0.8185358;0.54159397;-0.19150724;0.0;-0.5664753;0.70561713;-0.4256879;0.0;-0.09541921 +4675;0;-0.97442627;4.4279175;8.6410675 +4675;3;-0.35447693;0.008285522;0.31892395 +4675;12;0.25131384;-0.05945616;-0.2588325;0.93075895 +4677;1;-0.18763584;4.891459;8.501443 +4677;0;-1.0699768;4.470688;8.703064 +4677;3;-0.3758545;-2.746582E-4;0.31770325 +4680;12;0.2504991;-0.059355285;-0.25817645;0.9311671 +4680;0;-1.0508728;4.456436;8.831833 +4680;3;-0.39907837;-0.010040283;0.3158722 +4682;0;-1.1034241;4.4754486;8.903381 +4682;1;-0.1810662;4.8753934;8.510809 +4683;3;-0.4235077;-0.01675415;0.31221008 +4684;4;-10.906982;-4.6401978;-65.097046 +4684;6;0.66352654;-0.46272877;0.12330441 +4684;7;0.8156582;0.5511297;-0.1759484;0.0;-0.5679692;0.7049757;-0.42475924;0.0;-0.11005806 +4684;0;-1.0938568;4.52771;8.936752 +4684;3;-0.44734192;-0.02470398;0.30854797 +4685;12;0.24957176;-0.059258416;-0.2575434;0.9315974 +4687;0;-1.0986481;4.5086975;8.994003 +4687;1;-0.17405306;4.8573594;8.52126 +4687;2;0.8104865;0.36858368;-0.2567854; +4687;3;-0.46992493;-0.027145386;0.30549622 +4689;0;-1.0890961;4.5086975;9.017838 +4689;12;0.24852762;-0.059162937;-0.25694034;0.93204916 +4689;3;-0.48887634;-0.030197144;0.3030548 +4691;0;-1.0986481;4.560959;9.013062 +4691;1;-0.16688393;4.8375063;8.53269 +4692;3;-0.5065918;-0.031417847;0.2999878 +4694;4;-12.107849;-3.741455;-66.14685 +4694;6;0.66617906;-0.4655025;0.12129671 +4694;7;0.8139772;0.5522304;-0.18023017;0.0;-0.5707455;0.7025353;-0.4250812;0.0;-0.10812468 +4694;0;-1.0652008;4.53244;9.089371 +4694;3;-0.52186584;-0.035079956;0.29815674 +4695;12;0.24738322;-0.05905323;-0.25635257;0.93252224 +4695;5;999.5989 +4696;0;-1.0652008;4.5419617;9.089371 +4696;1;-0.15964478;4.8161807;8.544883 +4696;3;-0.5328522;-0.039367676;0.29510498 +4699;0;-1.0222168;4.480179;9.14183 +4699;12;0.24615549;-0.0589327;-0.25579146;0.93300873 +4699;3;-0.5432434;-0.043029785;0.29449463 +4701;0;-1.0174255;4.4991913;9.127518 +4701;1;-0.1521089;4.793659;8.557675 +4701;3;-0.55178833;-0.04486084;0.29083252 +4703;4;-11.506653;-4.3411255;-66.596985 +4703;6;0.65173936;-0.4555286;0.11100968 +4703;7;0.81969875;0.5447174;-0.17713527;0.0;-0.56408924;0.7139597;-0.4148072;0.0;-0.099485256 +4704;0;-0.9983368;4.503952;9.151382 +4704;3;-0.5597229;-0.049743652;0.2865448 +4705;12;0.24486159;-0.05881394;-0.25524318;0.9335066 +4706;0;-0.99354553;4.52771;9.16568 +4706;1;-0.1445787;4.770685;8.570635 +4706;2;0.85338074;0.23606682;-0.52132034; +4706;3;-0.5615692;-0.054641724;0.2822876 +4708;0;-0.89323425;4.53244;9.160919 +4708;12;0.24354261;-0.05869894;-0.25471997;0.9340018 +4709;3;-0.5585022;-0.060134888;0.27738953 +4711;0;-0.850235;4.5181885;9.160919 +4711;1;-0.13662225;4.7472305;8.583777 +4711;3;-0.5566864;-0.06806946;0.2694397 +4713;4;-12.107849;-4.79126;-67.196655 +4713;6;0.6367545;-0.4564958;0.09254598 +4713;7;0.8248105;0.53370476;-0.18667297;0.0;-0.55929124;0.7216992;-0.4078523;0.0;-0.08295099 +4713;0;-0.7976837;4.513443;9.151382 +4714;3;-0.5493469;-0.07662964;0.25906372 +4720;12;0.24219142;-0.05860289;-0.25420952;0.93449813 +4720;0;-0.7929077;4.522949;9.156143 +4720;1;-0.12841071;4.7241793;8.596613 +4720;3;-0.53834534;-0.08639526;0.24989319 +4720;0;-0.70692444;4.4991913;9.237228 +4722;12;0.24085589;-0.05854066;-0.25374773;0.93497247 +4722;3;-0.5249176;-0.095565796;0.23951721 +4722;0;-0.71170044;4.494446;9.261063 +4722;1;-0.11980302;4.701919;8.608932 +4722;3;-0.5114746;-0.103500366;0.22302246 +4722;4;-10.757446;-4.79126;-66.89758 +4722;6;0.5764958;-0.45066777;0.07669793 +4723;7;0.8541051;0.49066576;-0.172486;0.0;-0.5155066;0.7546712;-0.4058622;0.0;-0.06897247 +4723;0;-0.63526917;4.4611816;9.246765 +4723;3;-0.49497986;-0.110839844;0.21141052 +4725;17;1;38dead6d7725;2094;1856;-63; +4726;17;1;38dead6d60ff;266;693;-59; +4727;17;0;1c1bb5efa29a;0;0;0; +4728;17;1;1c1bb5ecd182;7581;1731;-65; +4728;12;0.23955664;-0.058525115;-0.253336;0.9354188 +4728;0;-0.5827179;4.480179;9.251541 +4728;1;-0.11106129;4.6807756;8.6205635 +4728;2;0.5914209;0.16428804;-0.5759058; +4728;3;-0.48155212;-0.118774414;0.19613647 +4728;12;0.23831382;-0.058553472;-0.252989;0.93582827 +4730;0;-0.5253906;4.480179;9.308762 +4730;3;-0.46076965;-0.12550354;0.18209839 +4730;1;-0.10224398;4.660925;8.631421 +4730;0;-0.5015106;4.494446;9.289688 +4730;3;-0.4406128;-0.13343811;0.16743469 +4733;12;0.23713838;-0.05862224;-0.25270468;0.9361994 +4734;4;-12.70752;-3.440857;-66.44745 +4734;6;0.5685446;-0.45004186;0.05393338 +4734;7;0.8540857;0.48479643;-0.18844102;0.0;-0.51786244;0.7587783;-0.39506185;0.0;-0.048539627 +4734;0;-0.44895935;4.4897003;9.275375 +4735;3;-0.42045593;-0.13894653;0.1539917 +4735;5;999.5989 +4735;1;-0.09339773;4.642747;8.641314 +4735;0;-0.39640808;4.4991913;9.284912 +4735;3;-0.3966217;-0.14627075;0.13873291 +4738;12;0.23604864;-0.058737654;-0.25248712;0.9365261 +4738;0;-0.32476807;4.4897003;9.284912 +4738;3;-0.37158203;-0.15237427;0.12588501 +4740;1;-0.08452077;4.626449;8.650141 +4740;0;-0.2817688;4.4421844;9.265839 +4741;3;-0.34654236;-0.15664673;0.11489868 +4742;4;-12.257385;-2.6901245;-65.84625 +4742;6;0.50382465;-0.44686452;0.030400053 +4742;7;0.88167924;0.4353728;-0.181913;0.0;-0.47105253;0.78975034;-0.39294282;0.0;-0.027410744 +4744;0;-0.21009827;4.432678;9.289688 +4745;3;-0.32026672;-0.15542603;0.103302 +4745;12;0.23505576;-0.05889973;-0.25233257;0.9368073 +4746;0;-0.15278625;4.44693;9.246765 +4747;1;-0.07575419;4.612221;8.657817 +4747;2;0.236428;0.12794876;-0.61682224; +4747;3;-0.29522705;-0.15481567;0.09535217 +4747;0;-0.11933899;4.432678;9.256302 +4747;12;0.23417585;-0.059100337;-0.25222492;0.93704396 +4747;3;-0.26712036;-0.15603638;0.0861969 +4749;0;-0.07156372;4.4279175;9.246765 +4750;1;-0.06733011;4.6001506;8.664305 +4750;3;-0.23902893;-0.15603638;0.07519531 +4752;4;-11.657715;-3.741455;-66.14685 +4752;6;0.45060396;-0.4465824;0.0077391705 +4752;7;0.90161294;0.39279822;-0.18111798;0.0;-0.43248752;0.81190175;-0.39213544;0.0;-0.006980108 +4752;0;-0.07156372;4.437439;9.280151 +4752;3;-0.2115326;-0.15115356;0.06663513 +4753;12;0.23341587;-0.059321694;-0.25214088;0.9372422 +4754;0;0.009643555;4.465927;9.299225 +4755;3;-0.18527222;-0.14749146;0.05809021 +4755;1;-0.059354797;4.5903983;8.669535 +4756;0;0.04307556;4.494446;9.304001 +4756;12;0.2327854;-0.059569266;-0.25209978;0.93739444 +4756;3;-0.15716553;-0.14198303;0.05014038 +4763;0;0.08129883;4.494446;9.256302 +4763;3;-0.13212585;-0.13160706;0.040374756 +4763;1;-0.052017562;4.582932;8.673532 +4763;13;58.217987 +4763;4;-11.657715;-3.741455;-67.64679 +4763;6;0.39921355;-0.45201004;-0.008782852 +4763;7;0.9198404;0.3496577;-0.17785716;0.0;-0.39221328;0.828835;-0.39900038;0.0;0.007900698 +4763;0;0.1625061;4.52771;9.222916 +4763;3;-0.10647583;-0.12243652;0.02998352 +4763;12;0.23228616;-0.05982598;-0.2520822;0.9375066 +4763;0;0.1720581;4.5752106;9.184769 +4764;1;-0.045717187;4.577708;8.676325 +4764;2;-0.11470585;0.084409714;-0.5743418; +4764;3;-0.084472656;-0.1138916;0.02204895 +4766;0;0.19117737;4.5657043;9.117996 +4766;3;-0.06187439;-0.10227966;0.012268066 +4766;12;0.23192146;-0.060068134;-0.25208867;0.93757963 +4768;0;0.26283264;4.57045;9.051224 +4768;1;-0.040502496;4.5744476;8.678069 +4768;3;-0.041107178;-0.08944702;0.0012817383 +4770;4;-11.956787;-2.6901245;-67.49725 +4770;6;0.34103304;-0.46743324;-0.029030196 +4770;7;0.9376381;0.29858246;-0.17799781;0.0;-0.34664574;0.84131527;-0.41475934;0.0;0.025912425 +4771;0;0.26760864;4.61322;9.036911 +4771;3;-0.020935059;-0.07662964;-0.009719849 +4771;12;0.23167677;-0.060288005;-0.25209936;0.93762314 +4772;5;999.5989 +4773;0;0.28193665;4.660721;9.017838 +4773;1;-0.03677665;4.573049;8.678823 +4773;3;-0.0032348633;-0.06135559;-0.019485474 +4775;0;0.28671265;4.670227;9.008301 +4775;12;0.23154962;-0.06047037;-0.25215524;0.9376278 +4776;3;0.013259888;-0.043029785;-0.032302856 +4777;0;0.27716064;4.6987305;8.994003 +4778;1;-0.034802046;4.5732;8.678753 +4778;3;0.026687622;-0.022872925;-0.04208374 +4781;4;-12.257385;-3.2913208;-65.84625 +4781;6;0.35331708;-0.4812348;-0.030806411 +4781;7;0.9328518;0.30671325;-0.18898289;0.0;-0.35922426;0.8316697;-0.42341864;0.0;0.027303223 +4781;0;0.28193665;4.7082367;8.922455 +4781;3;0.037078857;-0.0014953613;-0.05003357 +4786;12;0.23152857;-0.06059376;-0.25223735;0.93760294 +4786;2;-0.3454525;-0.09015179;-0.31397724; +4787;1;-0.034929954;4.57456;8.678035 +4787;0;0.28193665;4.7414856;8.831833 +4787;3;0.04685974;0.018661499;-0.061019897 +4788;0;0.27716064;4.7462463;8.745987 +4788;12;0.23160128;-0.060634278;-0.2523382;0.93755525 +4789;3;0.05479431;0.036987305;-0.06713867 +4789;1;-0.03712792;4.576828;8.67683 +4789;0;0.25805664;4.7985077;8.6792145 +4789;3;0.059066772;0.052871704;-0.07385254 +4789;4;-12.5564575;-4.0405273;-66.596985 +4789;6;0.35133362;-0.5048596;-0.02972396 +4790;7;0.9335527;0.3012149;-0.1942908;0.0;-0.35749504;0.8217778;-0.44370988;0.0;0.02601184 +4790;0;0.23416138;4.8127594;8.602905 +4790;3;0.060897827;0.065078735;-0.080566406 +4790;12;0.23175089;-0.060585834;-0.25245133;0.9374909 +4792;0;0.21984863;4.827011;8.598129 +4792;1;-0.04094995;4.579571;8.675365 +4792;3;0.060287476;0.07424927;-0.08546448 +4794;0;0.22940063;4.8127594;8.555222 +4795;12;0.23194423;-0.060466163;-0.25257853;0.9374167 +4795;3;0.056625366;0.0846405;-0.088516235 +4797;0;0.21984863;4.817505;8.474136 +4797;1;-0.045833547;4.582284;8.673908 +4797;3;0.051132202;0.09501648;-0.0927887 +4799;4;-12.70752;-2.090454;-66.44745 +4799;6;0.33873382;-0.5167874;-0.025937669 +4799;7;0.93860084;0.2888993;-0.18858841;0.0;-0.34426734;0.82000774;-0.45723885;0.0;0.022547966 +4799;0;0.19593811;4.879257;8.397842 +4800;3;0.049301147;0.105407715;-0.09461975 +4800;12;0.2321533;-0.06029501;-0.2527162;0.9373387 +4802;0;0.16729736;4.893524;8.41214 +4802;1;-0.051771395;4.5847726;8.672559 +4803;2;-0.321865;-0.25060368;0.12027836; +4803;3;0.043182373;0.11151123;-0.095840454 +4804;12;0.2323612;-0.060067225;-0.2528589;0.93726337 +4805;0;0.1625061;4.893524;8.38353 +4805;3;0.039520264;0.12007141;-0.0952301 +4806;1;-0.058421727;4.5869293;8.671377 +4808;0;0.1481781;4.950531;8.393066 +4808;3;0.032806396;0.12861633;-0.0952301 +4810;12;0.23256274;-0.059796415;-0.2529911;0.93719506 +4812;4;-11.956787;-4.0405273;-67.04712 +4812;6;0.3376395;-0.5328441;-0.017652988 +4812;7;0.9404218;0.28533673;-0.1849048;0.0;-0.33966994;0.81273246;-0.4733819;0.0;0.015204892 +4812;0;0.1434021;4.950531;8.369217 +4812;3;0.02607727;0.13717651;-0.09461975 +4812;5;999.5989 +4812;0;0.10997009;4.974289;8.316757 +4815;1;-0.06579521;4.588648;8.670415 +4815;12;0.23275055;-0.059479717;-0.25312173;0.9371333 +4815;3;0.018753052;0.14266968;-0.0927887 +4815;0;0.062194824;4.9267883;8.278595 +4815;3;0.011428833;0.14633179;-0.08973694 +4816;0;0.04786682;4.9267883;8.249985 +4816;1;-0.07364758;4.5897775;8.669754 +4816;3;0.004699707;0.14938354;-0.08668518 +4818;4;-12.406921;-3.1402588;-67.196655 +4818;6;0.361375;-0.5383416;-0.0058019846 +4818;7;0.9343441;0.3035532;-0.1866993;0.0;-0.35633743;0.80310714;-0.4775381;0.0;0.004981325 +4818;0;0.04307556;4.9315186;8.235672 +4819;3;-0.0032348633;0.15306091;-0.083618164 +4819;12;0.23291361;-0.059128523;-0.2532401;0.93708307 +4821;0;-0.01423645;4.917267;8.2070465 +4821;1;-0.08168546;4.5903306;8.669389 +4821;3;-0.007522583;0.153656;-0.08178711 +4821;2;-0.21483196;-0.3569417;0.3716669; +4823;0;-0.009475708;4.974289;8.202286 +4824;12;0.23305035;-0.0587545;-0.25334355;0.93704456 +4824;3;-0.009963989;0.153656;-0.0793457 +4825;0;-0.07156372;5.007553;8.178452 +4826;1;-0.08978137;4.590569;8.669183 +4826;3;-0.011779785;0.15184021;-0.0769043 +4828;4;-11.357117;-2.8411865;-66.89758 +4828;6;0.35257885;-0.54938745;0.008750055 +4828;7;0.94002706;0.29450354;-0.17209497;0.0;-0.34101808;0.800382;-0.49304685;0.0;-0.007462341 +4828;0;-0.095443726;4.9885406;8.149826 +4828;3;-0.016677856;0.1499939;-0.0769043 +4829;12;0.2331731;-0.05836263;-0.2534113;0.9370202 +4830;0;-0.10499573;4.9790497;8.125992 +4830;1;-0.09774835;4.5906;8.66908 +4831;3;-0.01789856;0.14572144;-0.07507324 +4833;0;-0.10978699;4.960037;8.097366 +4833;12;0.23328018;-0.057981107;-0.25349927;0.93699354 +4833;3;-0.020339966;0.14083862;-0.07446289 +4835;9;2AEC2AEBC4E1;-71;-2147483648 +4837;1;-0.105375014;4.5904436;8.669073 +4837;0;-0.143219;4.9790497;8.073517 +4837;3;-0.024002075;0.13166809;-0.07507324 +4837;4;-12.857056;-3.590393;-66.29639 +4838;6;0.41769135;-0.5525483;0.017737495 +4838;7;0.91766036;0.34528634;-0.19666417;0.0;-0.39707875;0.77801126;-0.48685423;0.0;-0.015097185 +4838;0;-0.18144226;4.9790497;8.08783 +4838;3;-0.028884888;0.12432861;-0.07507324 +4838;12;0.2333735;-0.05761248;-0.25358784;0.9369689 +4840;0;-0.20054626;4.950531;8.11644 +4840;1;-0.11249035;4.589959;8.66924 +4841;2;-0.043066397;-0.40246773;0.5475817; +4842;3;-0.035003662;0.11517334;-0.075683594 +4842;0;-0.22442627;4.974289;8.14505 +4843;12;0.23343962;-0.05726812;-0.25368807;0.93694645 +4843;3;-0.039276123;0.10662842;-0.076293945 +4845;0;-0.21966553;4.893524;8.164139 +4845;1;-0.11890153;4.5889773;8.669675 +4845;3;-0.04598999;0.09989929;-0.07751465 +4847;4;-11.956787;-2.9907227;-65.54718 +4847;6;0.41718078;-0.5398132;0.026899658 +4847;7;0.9195054;0.3475693;-0.18359011;0.0;-0.3923996;0.784235;-0.4806226;0.0;-0.023071872 +4847;0;-0.26742554;4.8887787;8.197525 +4848;3;-0.052093506;0.09379578;-0.07324219 +4848;12;0.23346688;-0.056953195;-0.25379622;0.9369296 +4849;5;999.5989 +4850;1;-0.1247619;4.5874543;8.670398 +4850;0;-0.26264954;4.907776;8.154587 +4850;3;-0.05821228;0.08708191;-0.07141113 +4852;0;-0.2817688;4.8887787;8.230911 +4852;12;0.23345892;-0.056662872;-0.25391793;0.9369162 +4853;3;-0.06187439;0.07974243;-0.06896973 +4854;0;-0.3056488;4.8222656;8.278595 +4854;1;-0.13001007;4.5853767;8.67142 +4855;3;-0.06492615;0.07424927;-0.06529236 +4857;4;-11.956787;-2.9907227;-65.54718 +4857;6;0.44473585;-0.52715486;0.03690361 +4857;7;0.91009504;0.37181368;-0.18297972;0.0;-0.413171;0.7801722;-0.46970323;0.0;-0.03188641 +4857;0;-0.3152008;4.7414856;8.278595 +4857;3;-0.07041931;0.0687561;-0.061019897 +4857;12;0.23340905;-0.056393012;-0.25403884;0.9369122 +4859;0;-0.38208008;4.8460083;8.202286 +4860;1;-0.13464034;4.582953;8.672631 +4860;2;0.103205934;-0.30398083;0.4740963; +4860;3;-0.07531738;0.06324768;-0.056137085 +4862;12;0.23334403;-0.05614919;-0.2541512;0.93691254 +4863;0;-0.38208008;4.9647827;8.2070465 +4863;3;-0.075927734;0.053482056;-0.053085327 +4864;1;-0.13856205;4.580369;8.673934 +4865;0;-0.36775208;4.9552917;8.249985 +4865;3;-0.07714844;0.044311523;-0.05430603 +4866;4;-11.056519;-2.8411865;-66.89758 +4866;6;0.416568;-0.5404538;0.0445466 +4866;7;0.92284685;0.34695536;-0.16725925;0.0;-0.3832696;0.78414655;-0.48807642;0.0;-0.038184978 +4867;0;-0.35820007;4.9030304;8.35968 +4867;3;-0.0826416;0.037597656;-0.05369568 +4867;12;0.23325145;-0.05592953;-0.25422686;0.93692815 +4868;0;-0.36297607;4.793747;8.44075 +4869;1;-0.14172015;4.5774107;8.675445 +4869;3;-0.08569336;0.0345459;-0.051254272 +4871;0;-0.41552734;4.7652435;8.455063 +4871;12;0.23312585;-0.055748705;-0.25433823;0.9369401 +4872;3;-0.08569336;0.037597656;-0.048187256 +4874;1;-0.144642;4.574121;8.677131 +4874;0;-0.40596008;4.7319946;8.350128 +4874;3;-0.091812134;0.044311523;-0.045135498 +4876;4;-11.056519;-2.8411865;-66.89758 +4876;6;0.44230655;-0.51506597;0.048578978 +4876;7;0.91293913;0.3724933;-0.16670634;0.0;-0.40590188;0.7865123;-0.4654482;0.0;-0.042259723 +4876;0;-0.41073608;4.684494;8.278595 +4876;3;-0.091812134;0.04248047;-0.044525146 +4877;12;0.23298442;-0.055576462;-0.25444376;0.93695676 +4878;1;-0.14776208;4.5705886;8.67894 +4879;0;-0.41073608;4.7224884;8.345367 +4879;2;0.19787979;-0.2622156;0.35155296; +4879;3;-0.09364319;0.036376953;-0.04147339 +4881;0;-0.44895935;4.7082367;8.459839 +4881;12;0.23283133;-0.05538536;-0.25453535;0.9369812 +4881;3;-0.096084595;0.03086853;-0.04147339 +4883;0;-0.45373535;4.684494;8.536133 +4884;1;-0.1504401;4.5668287;8.680873 +4884;3;-0.09913635;0.029647827;-0.040252686 +4885;4;-10.456848;-3.1402588;-65.24658 +4885;6;0.45683017;-0.50131446;0.0531047 +4885;7;0.90744215;0.3868282;-0.16405037;0.0;-0.41759053;0.7870248;-0.4541036;0.0;-0.046548367 +4886;0;-0.45851135;4.6322327;8.607666 +4886;3;-0.10096741;0.03086853;-0.04147339 +4886;12;0.23265953;-0.05520563;-0.254596;0.937018 +4888;5;999.6006 +4888;0;-0.48239136;4.5752106;8.669678 +4888;1;-0.15298027;4.5626955;8.6830015 +4889;3;-0.10647583;0.038208008;-0.040863037 +4890;0;-0.49195862;4.594223;8.660141 +4893;12;0.23246653;-0.05503494;-0.25468868;0.93705076 +4893;3;-0.10707092;0.04737854;-0.03842163 +4893;0;-0.48718262;4.627472;8.602905 +4893;1;-0.15603529;4.5582976;8.685256 +4893;3;-0.10585022;0.05470276;-0.035369873 +4895;4;-10.456848;-3.1402588;-65.24658 +4895;6;0.4705946;-0.49283555;0.056569587 +4895;7;0.9020021;0.39945745;-0.16378634;0.0;-0.42884856;0.7852297;-0.4466579;0.0;-0.04981094 +4896;0;-0.47283936;4.61322;8.559982 +4896;3;-0.10218811;0.05897522;-0.035369873 +4896;12;0.2322702;-0.054834276;-0.25477207;0.93708855 +4898;0;-0.46806335;4.5847015;8.564758 +4898;1;-0.15955707;4.554046;8.687423 +4898;3;-0.098526;0.060806274;-0.03475952 +4898;2;0.26839012;-0.09140015;0.11329651; +4900;0;-0.5015106;4.556198;8.555222 +4900;12;0.23208642;-0.0546055;-0.25483784;0.9371297 +4901;3;-0.09118652;0.060806274;-0.03352356 +4902;0;-0.5445099;4.52771;8.617218 +4903;3;-0.084472656;0.05958557;-0.03352356 +4903;1;-0.1632778;4.550112;8.689415 +4905;4;-12.257385;-2.9907227;-66.29639 +4905;6;0.5346223;-0.4829609;0.0631047 +4905;7;0.87367046;0.45123953;-0.18188696;0.0;-0.4833019;0.7620448;-0.4309373;0.0;-0.05584993 +4905;0;-0.5779419;4.522949;8.65538 +4906;12;0.23192248;-0.05436814;-0.25489593;0.9371682 +4906;3;-0.07836914;0.06263733;-0.032302856 +4907;0;-0.5827179;4.4991913;8.650604 +4907;1;-0.16704677;4.546676;8.691141 +4907;3;-0.075927734;0.065078735;-0.032302856 +4912;0;-0.5827179;4.5419617;8.598129 +4912;12;0.2317892;-0.054138664;-0.25495234;0.9371992 +4913;1;-0.17109144;4.543701;8.692618 +4913;3;-0.067977905;0.069366455;-0.031082153 +4913;0;-0.62094116;4.57045;8.555222 +4914;3;-0.06309509;0.069366455;-0.032302856 +4914;4;-12.257385;-2.9907227;-66.29639 +4915;6;0.54570925;-0.48956358;0.07245332 +4915;7;0.8701848;0.45805892;-0.18155013;0.0;-0.4885662;0.7543578;-0.43846035;0.0;-0.063886896 +4915;0;-0.63049316;4.537201;8.512299 +4915;3;-0.056381226;0.0675354;-0.031082153 +4915;12;0.23168504;-0.053899195;-0.2550019;0.9372252 +4917;0;-0.5874939;4.5419617;8.478897 +4917;1;-0.1751747;4.541281;8.693801 +4917;2;0.36228752;-0.014019012;0.124443054; +4918;3;-0.047210693;0.065078735;-0.032302856 +4920;12;0.23161076;-0.053667143;-0.25504857;0.9372441 +4920;0;-0.63049316;4.546707;8.474136 +4920;3;-0.039886475;0.06324768;-0.03048706 +4921;17;1;38dead6d7725;2149;2237;-65; +4922;17;1;38dead6d60ff;1174;1012;-59; +4923;17;0;1c1bb5efa29a;0;0;0; +4923;17;1;1c1bb5ecd182;10633;1066;-64; +4924;0;-0.6687012;4.5847015;8.431213 +4924;1;-0.17912069;4.539585;8.694607 +4925;3;-0.032546997;0.060806274;-0.028640747 +4925;4;-12.5564575;-3.590393;-67.04712 +4925;6;0.5631516;-0.49673834;0.079146884 +4925;7;0.8630448;0.46933305;-0.18676233;0.0;-0.50032216;0.7433818;-0.4439159;0.0;-0.0695087 +4925;0;-0.64482117;4.5847015;8.340591 +4925;12;0.2315758;-0.053452842;-0.25509375;0.93725276 +4925;3;-0.02583313;0.056533813;-0.03048706 +4926;5;999.6006 +4926;0;-0.65437317;4.6179657;8.316757 +4927;1;-0.18280166;4.538589;8.69505 +4927;3;-0.022781372;0.048599243;-0.032928467 +4930;9;52ADB5BC186F;-80;-2147483648 +4932;12;0.23157357;-0.053262986;-0.2551369;0.9372523 +4932;0;-0.63526917;4.646469;8.326294 +4932;3;-0.019119263;0.038208008;-0.035369873 +4932;0;-0.5874939;4.660721;8.33107 +4932;1;-0.18589307;4.537984;8.695301 +4933;3;-0.01789856;0.029052734;-0.035980225 +4934;4;-10.757446;-2.090454;-66.89758 +4934;6;0.47085583;-0.50900465;0.07040188 +4934;7;0.90452343;0.3961401;-0.15783045;0.0;-0.42197663;0.7782055;-0.46511522;0.0;-0.061426263 +4934;0;-0.59706116;4.6892242;8.297668 +4934;3;-0.016052246;0.018661499;-0.03781128 +4935;12;0.2315827;-0.053113934;-0.25519678;0.9372422 +4936;0;-0.5874939;4.6892242;8.321533 +4936;1;-0.18820317;4.5375876;8.695457 +4936;2;0.3979818;-0.10866642;0.34938526; +4936;3;-0.013015747;0.0070648193;-0.040863037 +4938;0;-0.5779419;4.73674;8.292908 +4939;12;0.23159117;-0.053011004;-0.25527278;0.9372253 +4939;3;-0.009338379;-0.0014953613;-0.04269409 +4942;0;-0.5779419;4.750992;8.302444 +4942;1;-0.18972008;4.537488;8.6954775 +4942;3;-0.0050811768;-0.011871338;-0.045135498 +4943;9;2AEC2AEBC4E1;-58;-2147483648 +4944;4;-12.107849;-2.8411865;-66.14685 +4944;6;0.50965387;-0.5187164;0.06949894 +4944;7;0.8876025;0.42369822;-0.18067017;0.0;-0.45664513;0.75808716;-0.46559542;0.0;-0.06030821 +4944;0;-0.5683899;4.784256;8.316757 +4944;3;-0.0014038086;-0.022872925;-0.048187256 +4944;12;0.23160312;-0.05295709;-0.25536758;0.93719953 +4945;0;-0.55882263;4.827011;8.297668 +4946;1;-0.19048183;4.5377674;8.695314 +4946;3;0.0010375977;-0.0332489;-0.051864624 +4948;0;-0.55882263;4.827011;8.269058 +4948;12;0.2316246;-0.052953206;-0.2554857;0.9371622 +4948;3;0.0065307617;-0.04486084;-0.056747437 +4950;0;-0.5349426;4.8460083;8.245209 +4950;1;-0.19048782;4.538391;8.694989 +4950;3;0.008361816;-0.05647278;-0.061019897 +4952;4;-11.056519;-4.1915894;-66.89758 +4952;6;0.4761021;-0.5304362;0.06478841 +4952;7;0.9019353;0.39533913;-0.1738383;0.0;-0.4282452;0.76665664;-0.4783761;0.0;-0.055846512 +4953;0;-0.5253906;4.869766;8.269058 +4953;3;0.013870239;-0.06745911;-0.068359375 +4954;12;0.23165146;-0.053000364;-0.25563157;0.93711317 +4955;0;-0.5445099;4.879257;8.278595 +4955;1;-0.1897499;4.5393357;8.694511 +4955;2;0.32787937;-0.295846;0.42007065; +4955;3;0.015701294;-0.07785034;-0.072021484 +4958;0;-0.49195862;4.8887787;8.326294 +4959;12;0.23168176;-0.053098477;-0.25581235;0.9370508 +4959;3;0.019973755;-0.08639526;-0.076293945 +4960;0;-0.47283936;4.917267;8.321533 +4960;1;-0.1883109;4.5405507;8.693909 +4960;3;0.024856567;-0.09373474;-0.08178711 +4962;4;-11.956787;-2.9907227;-66.596985 +4962;6;0.470966;-0.53300226;0.056760147 +4962;7;0.9027748;0.39080596;-0.17963393;0.0;-0.42732924;0.76751757;-0.47781417;0.0;-0.04886044 +4964;0;-0.47763062;4.9315186;8.364441 +4964;3;0.030975342;-0.09983826;-0.08483887 +4964;12;0.23171628;-0.053242613;-0.25602025;0.93697727 +4965;5;999.6006 +4965;0;-0.44895935;4.907776;8.38829 +4965;1;-0.18643658;4.5421634;8.693106 +4965;3;0.035247803;-0.102890015;-0.09095764 +4967;0;-0.43463135;4.9030304;8.450302 +4968;12;0.2317615;-0.0534228;-0.25625905;0.93689054 +4968;3;0.043182373;-0.10595703;-0.0952301 +4970;0;-0.42507935;4.9125214;8.497986 +4970;1;-0.18441534;4.544172;8.6921 +4970;3;0.048080444;-0.11021423;-0.10133362 +4972;4;-11.357117;-1.7913818;-66.44745 +4972;6;0.43751004;-0.52360517;0.04997953 +4972;7;0.91526186;0.36692095;-0.16632742;0.0;-0.4005295;0.7844511;-0.47351098;0.0;-0.043265365 +4972;0;-0.40119934;4.9362793;8.512299 +4973;12;0.23182648;-0.05362296;-0.2565223;0.936791 +4973;3;0.055404663;-0.11143494;-0.10501099 +4974;0;-0.40119934;4.9362793;8.531357 +4974;1;-0.18231386;4.5466924;8.690825 +4975;2;0.22464077;-0.39138746;0.27705193; +4975;3;0.06150818;-0.110839844;-0.108673096 +4976;0;-0.39640808;4.9362793;8.559982 +4977;12;0.23191597;-0.05384017;-0.25680995;0.9366776 +4977;3;0.07067871;-0.11206055;-0.1111145 +4979;1;-0.18030986;4.5498176;8.689232 +4980;0;-0.38685608;4.9647827;8.536133 +4980;3;0.07922363;-0.11143494;-0.11355591 +4982;4;-13.90686;-4.0405273;-66.596985 +4982;6;0.5187921;-0.5263492;0.04528884 +4982;7;0.87880576;0.42871925;-0.20952421;0.0;-0.47557145;0.75087565;-0.45827684;0.0;-0.03914547 +4983;0;-0.37252808;5.007553;8.54567 +4983;3;0.08900452;-0.115112305;-0.116607666 +4983;12;0.23204085;-0.05406697;-0.2571123;0.9365506 +4984;0;-0.36775208;5.0122986;8.559982 +4984;1;-0.17833468;4.5537205;8.687228 +4984;3;0.1006012;-0.11999512;-0.120285034 +4986;0;-0.3056488;4.9790497;8.688751 +4986;12;0.23220222;-0.054306634;-0.25742286;0.9364115 +4987;3;0.11404419;-0.12121582;-0.12272644 +4988;0;-0.3104248;4.879257;8.731674 +4988;1;-0.17612208;4.5584197;8.684809 +4989;3;0.12870789;-0.11816406;-0.12272644 +4991;4;-10.606384;-1.940918;-65.84625 +4991;6;0.40471464;-0.5093053;0.03553661 +4991;7;0.92545545;0.34378228;-0.15920405;0.0;-0.3775844;0.80255127;-0.46188918;0.0;-0.0310199 +4991;0;-0.3390808;4.94104;8.76506 +4991;3;0.14276123;-0.11265564;-0.12210083 +4992;12;0.23240365;-0.054571927;-0.25774932;0.9362563 +4993;0;-0.3343048;5.1025696;8.860458 +4993;1;-0.17418183;4.5643244;8.6817465 +4994;2;0.14087482;-0.43603897;0.03677845; +4994;3;0.15864563;-0.107177734;-0.12272644 +4996;0;-0.30085754;5.164322;8.898605 +4996;12;0.23267876;-0.054845173;-0.2580704;0.93608344 +4996;3;0.17514038;-0.0980072;-0.12332153 +4998;0;-0.3104248;5.154831;8.936752 +4998;1;-0.17275292;4.571584;8.677954 +4998;3;0.18917847;-0.08639526;-0.12760925 +5001;4;-11.956787;-3.2913208;-66.596985 +5001;6;0.44142792;-0.52293444;0.03472179 +5001;7;0.91100466;0.37013465;-0.18185389;0.0;-0.4112979;0.78331053;-0.46611008;0.0;-0.030075435 +5001;0;-0.3295288;5.097824;8.884293 +5001;3;0.20262146;-0.07662964;-0.12882996 +5002;12;0.23303041;-0.05510665;-0.25837657;0.9358962 +5002;5;999.6006 +5004;0;-0.29130554;5.074051;8.898605 +5004;3;0.2166748;-0.0650177;-0.13066101 +5004;1;-0.172329;4.579981;8.673533 +5005;0;-0.19577026;5.1025696;8.946289 +5006;12;0.23345657;-0.055340677;-0.25868306;0.9356915 +5006;3;0.2301178;-0.05340576;-0.12944031 +5008;0;-0.18144226;5.1595764;9.051224 +5008;1;-0.17273216;4.5894876;8.668499 +5008;3;0.24049377;-0.038146973;-0.12516785 +5010;4;-10.906982;-4.0405273;-67.796326 +5010;6;0.3887086;-0.51801366;0.020043474 +5010;7;0.9289745;0.32927138;-0.16907611;0.0;-0.3697339;0.80399096;-0.46572024;0.0;-0.017412692 +5010;0;-0.25309753;5.2070923;9.089371 +5011;3;0.24537659;-0.02104187;-0.12150574 +5011;12;0.23395774;-0.0555424;-0.25897706;0.935473 +5013;0;-0.29130554;5.2736053;9.070297 +5013;1;-0.17431735;4.599848;8.662975 +5013;2;0.058742523;-0.57791805;-0.29729939; +5013;3;0.247818;-0.0027160645;-0.11906433 +5015;0;-0.37728882;5.287857;9.041687 +5015;12;0.2345261;-0.0556885;-0.2592379;0.93524975 +5016;3;0.2484436;0.012542725;-0.11538696 +5019;1;-0.17731857;4.6104693;8.657265 +5019;0;-0.36775208;5.302109;9.056 +5020;3;0.2472229;0.028427124;-0.11477661 +5020;4;-11.956787;-4.6401978;-65.097046 +5020;6;0.471777;-0.52931565;0.040586367 +5020;7;0.89933985;0.392277;-0.19314946;0.0;-0.4358456;0.7688639;-0.46785372;0.0;-0.03502262 +5020;0;-0.34864807;5.3163605;9.017838 +5021;3;0.24415588;0.041259766;-0.11050415 +5021;12;0.23512824;-0.05576254;-0.25946286;0.9350317 +5022;0;-0.37252808;5.3496094;8.979691 +5023;1;-0.1814476;4.6210318;8.6515465 +5023;3;0.24110413;0.050430298;-0.104400635 +5024;0;-0.38685608;5.387619;8.893829 +5025;12;0.23574784;-0.05577139;-0.25966293;0.9348196 +5025;3;0.23927307;0.060195923;-0.10133362 +5027;0;-0.45373535;5.3923798;8.879532 +5027;1;-0.1862787;4.6314607;8.645865 +5027;3;0.23500061;0.065704346;-0.09767151 +5029;4;-11.657715;-3.741455;-65.24658 +5029;6;0.45916176;-0.54517835;0.05105461 +5029;7;0.90698504;0.37894875;-0.1837827;0.0;-0.41889647;0.766474;-0.48687103;0.0;-0.043634504 +5030;0;-0.47763062;5.3971252;8.912918 +5030;3;0.22827148;0.07058716;-0.09828186 +5030;12;0.23636936;-0.055732436;-0.25983116;0.93461823 +5032;0;-0.48239136;5.4493866;8.994003 +5032;1;-0.19159484;4.6415105;8.640358 +5032;2;0.18135276;-0.74365187;-0.31911564; +5032;3;0.22033691;0.07546997;-0.095840454 +5034;0;-0.5349426;5.420868;9.027374 +5034;12;0.23697741;-0.05565988;-0.2599828;0.9344264 +5035;3;0.21179199;0.08035278;-0.09339905 +5037;0;-0.55882263;5.4636383;8.989227 +5037;1;-0.19731021;4.650886;8.635186 +5037;3;0.20262146;0.08769226;-0.092178345 +5040;12;0.23755872;-0.055556253;-0.26012224;0.9342461 +5041;4;-12.5564575;-4.940796;-66.29639 +5041;6;0.5109771;-0.5452783;0.06208592 +5042;7;0.8863237;0.4181121;-0.19902885;0.0;-0.4600175;0.7457735;-0.4818773;0.0;-0.05304831 +5042;0;-0.5301666;5.4921417;8.979691 +5042;3;0.1959076;0.09196472;-0.08973694 +5042;5;999.6006 +5045;0;-0.5445099;5.468399;8.86998 +5045;3;0.18734741;0.093185425;-0.08607483 +5045;1;-0.20342332;4.6596274;8.63033 +5045;0;-0.5779419;5.4636383;8.860458 +5045;3;0.18185425;0.088912964;-0.08546448 +5045;12;0.23811178;-0.055417635;-0.26025024;0.934078 +5047;0;-0.63049316;5.454132;8.836609 +5048;1;-0.2095477;4.667772;8.625781 +5048;3;0.17636108;0.0846405;-0.083618164 +5050;4;-11.506653;-4.0405273;-64.34631 +5050;6;0.49451843;-0.55185103;0.07122942 +5050;7;0.8956737;0.40415493;-0.18554607;0.0;-0.44056287;0.74953693;-0.49406344;0.0;-0.06060453 +5051;0;-0.65437317;5.4303894;8.850922 +5051;3;0.16964722;0.07791138;-0.08178711 +5051;12;0.23863202;-0.05526557;-0.26036888;0.93392104 +5051;0;-0.6925812;5.4351196;8.903381 +5051;1;-0.21530648;4.675431;8.6214905 +5051;3;0.16474915;0.07058716;-0.07873535 +5051;2;0.34097993;-0.80445194;-0.27990532; +5054;0;-0.71647644;5.411377;8.927231 +5054;12;0.23911999;-0.055125233;-0.26048946;0.9337709 +5054;3;0.15864563;0.06692505;-0.0769043 +5057;0;-0.7785797;5.4351196;8.941528 +5057;3;0.15254211;0.062026978;-0.0769043 +5057;1;-0.22048244;4.6825285;8.617507 +5061;4;-11.956787;-4.3411255;-65.84625 +5061;6;0.5351242;-0.54449767;0.08685549 +5061;7;0.87987655;0.43620306;-0.18853173;0.0;-0.46937343;0.73580897;-0.4881329;0.0;-0.07420173 +5061;0;-0.7833557;5.3923798;8.912918 +5061;3;0.14520264;0.056533813;-0.07385254 +5062;12;0.23957124;-0.05500435;-0.2606048;0.93363017 +5062;0;-0.816803;5.3638763;8.889069 +5062;1;-0.22527306;4.6890635;8.613829 +5062;3;0.13847351;0.04737854;-0.072631836 +5062;9;2AEC2AEBC4E1;-62;-2147483648 +5063;0;-0.8215637;5.3401184;8.879532 +5064;12;0.23998584;-0.054896194;-0.26072574;0.93349636 +5064;3;0.13543701;0.038208008;-0.07019043 +5065;0;-0.845459;5.3638763;8.879532 +5065;1;-0.22933234;4.6950874;8.610439 +5065;3;0.1317749;0.030273438;-0.06958008 +5069;12;0.24036328;-0.054817125;-0.26084942;0.9333692 +5069;4;-11.207581;-5.39093;-65.84625 +5069;6;0.5463161;-0.5414132;0.0949282 +5069;7;0.8759758;0.44523865;-0.18555072;0.0;-0.47546637;0.7322427;-0.48759857;0.0;-0.08122955 +5070;0;-0.89323425;5.3496094;8.893829 +5070;3;0.12809753;0.021713257;-0.07080078 +5071;1;-0.23274916;4.7007833;8.607239 +5071;2;0.55649656;-0.7006955;-0.2868805; +5071;0;-0.91711426;5.3353577;8.941528 +5073;12;0.24071091;-0.05476979;-0.2609816;0.9332456 +5075;3;0.12504578;0.010726929;-0.072021484 +5075;0;-0.87890625;5.330597;8.994003 +5075;3;0.12504578;0.0015716553;-0.07446289 +5075;0;-0.9553375;5.2830963;9.0607605 +5075;1;-0.23542032;4.706176;8.604219 +5075;3;0.12321472;-0.004547119;-0.07751465 +5077;4;-11.956787;-4.0405273;-66.596985 +5077;6;0.5754075;-0.525479;0.105048664 +5077;7;0.8629687;0.47075844;-0.18349847;0.0;-0.49704835;0.72577983;-0.47559074;0.0;-0.09070884 +5077;0;-0.93144226;5.287857;9.051224 +5078;12;0.24103127;-0.05475728;-0.26112863;0.9331224 +5078;3;0.120773315;-0.009429932;-0.08117676 +5081;5;999.6006 +5081;0;-0.95054626;5.2593536;9.036911 +5081;3;0.120773315;-0.013702393;-0.08239746 +5081;1;-0.23771477;4.7113886;8.601303 +5082;0;-0.99354553;5.240341;9.065521 +5083;12;0.24133563;-0.054767888;-0.2613028;0.93299437 +5087;3;0.120773315;-0.0149383545;-0.08546448 +5087;0;-1.0078735;5.240341;9.079834 +5087;1;-0.23987736;4.7164927;8.598445 +5087;3;0.120773315;-0.018600464;-0.087905884 +5088;12;0.24163215;-0.054787453;-0.26149264;0.9328633 +5088;4;-12.107849;-4.79126;-65.24658 +5088;6;0.6112172;-0.52079475;0.11054877 +5088;7;0.8454526;0.49778402;-0.19344501;0.0;-0.5254064;0.710377;-0.46830824;0.0;-0.095697455 +5088;0;-1.0699768;5.2165833;9.070297 +5088;3;0.12136841;-0.021652222;-0.092178345 +5089;0;-1.0508728;5.2450867;9.08461 +5089;1;-0.2420075;4.721582;8.5955925 +5089;2;0.70778716;-0.5694971;-0.44529438; +5089;3;0.12199402;-0.025314331;-0.09339905 +5092;0;-1.0795288;5.140564;9.108459 +5092;12;0.24192424;-0.0548146;-0.26169997;0.9327279 +5092;3;0.12382507;-0.025314331;-0.09767151 +5094;0;-1.0795288;5.1358337;9.127518 +5094;1;-0.24407141;4.7266293;8.59276 +5095;3;0.12565613;-0.026535034;-0.09828186 +5097;4;-10.906982;-3.2913208;-65.54718 +5097;6;0.5804713;-0.50956005;0.11772501 +5097;7;0.86183685;0.47874665;-0.16744807;0.0;-0.4967136;0.72997224;-0.46948498;0.0;-0.10253191 +5097;0;-1.1273041;5.1168213;9.127518 +5097;3;0.12870789;-0.027145386;-0.09950256 +5097;12;0.24221571;-0.05484081;-0.26189503;0.93259585 +5099;0;-1.1607513;5.1025696;9.146606 +5099;1;-0.2462226;4.731803;8.58985 +5099;3;0.12870789;-0.025314331;-0.100112915 +5101;0;-1.1416473;5.0693054;9.14183 +5102;12;0.2425125;-0.054875184;-0.26212695;0.93245155 +5102;3;0.1317749;-0.024093628;-0.09950256 +5104;0;-1.1702881;5.0835724;9.156143 +5104;1;-0.24849717;4.737058;8.586888 +5104;3;0.1348114;-0.021652222;-0.10133362 +5106;4;-11.357117;-5.090332;-65.24658 +5106;6;0.643172;-0.5034025;0.12712526 +5106;7;0.8304209;0.5253371;-0.18553197;0.0;-0.54595596;0.70092994;-0.4589437;0.0;-0.1110552 +5106;0;-1.2276306;5.0360413;9.127518 +5107;3;0.14093018;-0.02104187;-0.10255432 +5107;12;0.2428167;-0.05490319;-0.26236007;0.9323052 +5108;0;-1.2037506;5.06456;9.103683 +5109;1;-0.25103164;4.742607;8.583751 +5109;2;0.8705515;-0.37931442;-0.5314455; +5109;3;0.14764404;-0.020431519;-0.10317993 +5117;12;0.24314122;-0.05492773;-0.26259482;0.9321531 +5117;1;-0.25351846;4.748757;8.580277 +5117;12;0.24349612;-0.054962136;-0.2628273;0.9319929 +5119;1;-0.25575006;4.75564;8.576398 +5120;0;-1.1798553;5.050308;9.070297 +5120;3;0.15742493;-0.023483276;-0.10133362 +5120;0;-1.1941986;5.050308;9.122772 +5120;3;0.1665802;-0.025924683;-0.10133362 +5120;4;-12.857056;-4.3411255;-65.84625 +5120;6;0.67128956;-0.5020064;0.13016292 +5120;7;0.8152437;0.54525363;-0.19513103;0.0;-0.56783044;0.6864103;-0.45432305;0.0;-0.113781355 +5120;0;-1.1846313;5.0360413;9.11322 +5120;3;0.17514038;-0.027755737;-0.09889221 +5120;5;999.6006 +5120;0;-1.1846313;5.074051;9.13707 +5120;3;0.18673706;-0.028366089;-0.096450806 +5121;12;0.24388944;-0.055021267;-0.26305667;0.9318218 +5121;0;-1.1941986;5.097824;9.13707 +5121;3;0.198349;-0.026535034;-0.096450806 +5123;0;-1.1702881;5.1358337;9.098923 +5123;1;-0.2578691;4.763463;8.571991 +5124;3;0.21240234;-0.025314331;-0.09706116 +5125;4;-11.657715;-5.090332;-65.69672 +5125;6;0.64222103;-0.5103609;0.12791604 +5125;7;0.83155066;0.522647;-0.18805243;0.0;-0.54418147;0.69872427;-0.46438256;0.0;-0.11131135 +5125;0;-1.1320801;5.1928253;9.056 +5126;3;0.22460938;-0.025924683;-0.09828186 +5126;12;0.24433444;-0.055101;-0.26327437;0.931639 +5127;0;-1.0938568;5.2165833;9.027374 +5128;1;-0.26002437;4.7725053;8.5668955 +5128;3;0.24049377;-0.026535034;-0.09950256 +5128;2;0.8822964;-0.36256266;-0.5135088; +5130;0;-1.0413208;5.2736053;9.041687 +5130;12;0.24484485;-0.055199083;-0.26349;0.93143827 +5130;3;0.25759888;-0.027755737;-0.09889221 +5132;0;-1.0078735;5.3163605;9.036911 +5132;1;-0.26204136;4.7828054;8.561088 +5133;3;0.27592468;-0.028366089;-0.09706116 +5135;4;-12.107849;-5.090332;-64.94751 +5135;6;0.6101647;-0.5290704;0.111069545 +5135;7;0.8465603;0.4946596;-0.19658962;0.0;-0.5236216;0.70750153;-0.47461763;0.0;-0.09568672 +5135;0;-0.90278625;5.4066315;8.951065 +5135;3;0.29180908;-0.026535034;-0.09828186 +5136;12;0.24542378;-0.055325497;-0.2637002;0.9312188 +5137;0;-0.874115;5.487381;8.917694 +5137;1;-0.26386717;4.7947736;8.554335 +5137;3;0.30891418;-0.027145386;-0.09950256 +5140;0;-0.845459;5.6156616;8.846146 +5140;12;0.24609362;-0.05548567;-0.26390353;0.9309749 +5140;3;0.32479858;-0.025924683;-0.100112915 +5143;17;1;38dead6d7725;1584;3587;-65; +5143;17;1;38dead6d60ff;1743;493;-57; +5144;17;1;1c1bb5efa29a;12809;2336;-70; +5145;17;1;1c1bb5ecd182;5603;3210;-62; +5145;0;-0.75468445;5.691696;8.827072 +5145;1;-0.26567265;4.8082204;8.546727 +5145;3;0.33763123;-0.026535034;-0.10195923 +5145;4;-10.906982;-4.940796;-63.89618 +5145;6;0.50146186;-0.57105374;0.08528917 +5145;7;0.89582735;0.40443492;-0.18418948;0.0;-0.43858504;0.7377477;-0.51319724;0.0;-0.071669534 +5145;0;-0.7260437;5.8199615;8.827072 +5145;3;0.3480072;-0.028366089;-0.10255432 +5145;12;0.24684197;-0.055671893;-0.26410267;0.9307091 +5147;0;-0.68782043;5.895981;8.803207 +5147;1;-0.2673891;4.82288;8.53841 +5147;2;0.56506467;-0.77007675;-0.35206318; +5147;3;0.35473633;-0.027145386;-0.10501099 +5149;0;-0.6495819;5.9529877;8.769836 +5149;12;0.24765447;-0.055881474;-0.2643024;0.930424 +5150;3;0.3577881;-0.02897644;-0.10562134 +5151;9;2AEC2AEBC4E1;-67;-2147483648 +5153;1;-0.26906577;4.838206;8.529682 +5153;0;-0.60661316;6.048004;8.731674 +5153;3;0.35717773;-0.029586792;-0.10562134 +5154;4;-9.55658;-4.6401978;-65.84625 +5154;6;0.40210724;-0.60465044;0.06936127 +5154;7;0.93344456;0.3219709;-0.15816459;0.0;-0.35416138;0.757081;-0.5489976;0.0;-0.057017837 +5154;0;-0.5636139;6.147766;8.73645 +5154;3;0.35229492;-0.03263855;-0.10745239 +5155;12;0.24852037;-0.05603303;-0.26423052;0.9302044 +5156;0;-0.5015106;6.21904;8.73645 +5156;1;-0.27053958;4.8535914;8.52089 +5158;3;0.3443451;-0.034484863;-0.10684204 +5158;5;999.6006 +5159;0;-0.49195862;6.333069;8.755524 +5160;3;0.3321228;-0.035705566;-0.10928345 +5160;12;0.24936922;-0.056269474;-0.26443613;0.92990446 +5161;0;-0.4298401;6.399582;8.76506 +5161;1;-0.27180636;4.8684;8.512398 +5162;3;0.3125763;-0.038146973;-0.108673096 +5164;4;-11.357117;-5.8410645;-65.69672 +5164;6;0.40877122;-0.63008684;0.04900092 +5164;7;0.92798;0.3211561;-0.18897554;0.0;-0.3705223;0.7414071;-0.55948967;0.0;-0.03957574 +5164;0;-0.40119934;6.475601;8.78891 +5165;3;0.2936554;-0.04119873;-0.1098938 +5165;12;0.25018254;-0.056509428;-0.26464787;0.92961127 +5166;0;-0.38685608;6.5041046;8.78891 +5166;1;-0.2728444;4.8818254;8.504672 +5166;2;0.2092399;-1.4104652;-0.2367096; +5167;3;0.26921082;-0.04547119;-0.11355591 +5168;0;-0.3199768;6.556366;8.84137 +5169;12;0.25091553;-0.05674052;-0.2648685;0.9293366 +5169;3;0.24293518;-0.047912598;-0.11538696 +5171;0;-0.3104248;6.5611115;8.86998 +5171;1;-0.27363333;4.893318;8.498039 +5171;3;0.21484375;-0.04486084;-0.11721802 +5173;4;-12.406921;-5.8410645;-65.24658 +5173;6;0.40969408;-0.636583;0.03498296 +5173;7;0.9249634;0.3203088;-0.20456079;0.0;-0.37901428;0.73758405;-0.55885434;0.0;-0.02812517 +5174;0;-0.23399353;6.551605;8.898605 +5174;3;0.1836853;-0.04425049;-0.12088013 +5174;12;0.25153702;-0.056957643;-0.26510826;0.9290869 +5175;0;-0.16711426;6.580124;8.960602 +5176;1;-0.27449432;4.902439;8.492752 +5176;3;0.15132141;-0.042419434;-0.12332153 +5178;0;-0.12890625;6.523102;9.075058 +5178;12;0.25202718;-0.05713693;-0.26536515;0.92886984 +5178;3;0.11955261;-0.039367676;-0.12332153 +5181;1;-0.27551818;4.9088063;8.489042 +5182;0;-0.10978699;6.4945984;9.13707 +5182;3;0.0847168;-0.03263855;-0.12332153 +5182;4;-12.70752;-5.5404663;-66.89758 +5182;6;0.37674084;-0.6179012;0.01201498 +5183;7;0.93236214;0.29986718;-0.20194173;0.0;-0.36139295;0.7579322;-0.54307806;0.0;-0.009793127 +5183;0;-0.10499573;6.42334;9.199066 +5183;3;0.047470093;-0.02470398;-0.12516785 +5184;12;0.25236878;-0.05726465;-0.26563814;0.92869115 +5185;0;-0.07635498;6.3235626;9.256302 +5185;1;-0.27703026;4.912175;8.487042 +5185;2;-0.11764547;-1.6245399;-0.52330303; +5186;3;0.008987427;-0.018600464;-0.12454224 +5187;0;-0.08111572;6.1952972;9.327835 +5188;12;0.25255132;-0.057318635;-0.265916;0.92855865 +5188;3;-0.027053833;-0.0149383545;-0.12210083 +5193;0;-0.028564453;6.0955048;9.356461 +5193;1;-0.27897826;4.912247;8.4869375 +5193;3;-0.06248474;-0.011871338;-0.12088013 +5193;4;-12.406921;-5.8410645;-65.69672 +5193;6;0.38687062;-0.5774097;0.0030529029 +5193;7;0.9267187;0.31612536;-0.20311874;0.0;-0.37574717;0.7759554;-0.5066631;0.0;-0.0025579606 +5193;0;0.009643555;5.995743;9.46138 +5193;3;-0.10157776;-0.009429932;-0.11906433 +5193;12;0.2525607;-0.0572981;-0.2661944;0.9284776 +5195;0;0.03831482;5.881729;9.523392 +5195;1;-0.28099236;4.909123;8.488679 +5195;3;-0.13883972;-0.013092041;-0.116607666 +5195;5;999.598 +5197;0;0.08129883;5.7772064;9.647385 +5197;12;0.2523961;-0.05722012;-0.2664726;0.92844737 +5198;3;-0.16877747;-0.017974854;-0.11172485 +5200;0;0.10517883;5.6156616;9.70462 +5200;1;-0.28259125;4.9028087;8.492274 +5200;3;-0.20237732;-0.022872925;-0.1098938 +5201;9;52ADB5BC186F;-77;-2147483648 +5203;4;-11.657715;-6.1401367;-65.69672 +5203;6;0.37692413;-0.524554;-0.010837592 +5203;7;0.92774886;0.31857535;-0.19440131;0.0;-0.3730873;0.804787;-0.46165338;0.0;0.009380266 +5203;0;0.07652283;5.4731293;9.819077 +5203;3;-0.23291016;-0.030197144;-0.10684204 +5204;12;0.25205067;-0.057107657;-0.26675168;0.928468 +5204;0;0.124298096;5.3068542;9.881073 +5205;1;-0.2835923;4.893578;8.497563 +5205;2;-0.34724805;-0.93461657;-1.0730162; +5205;3;-0.25857544;-0.039367676;-0.10562134 +5207;0;0.1290741;5.154831;9.995529 +5208;12;0.251537;-0.056979224;-0.26703432;0.9285339 +5208;3;-0.2787323;-0.050354004;-0.10501099 +5209;0;0.1577301;5.040802;10.100464 +5209;1;-0.2837233;4.8819532;8.504243 +5210;3;-0.2946167;-0.058303833;-0.104400635 +5211;4;-10.906982;-4.940796;-64.64691 +5211;6;0.38365397;-0.46285173;-0.015614855 +5211;7;0.9245804;0.33492732;-0.18158934;0.0;-0.38073063;0.8297349;-0.40814725;0.0;0.013971337 +5212;0;0.1720581;4.9362793;10.210159 +5212;3;-0.30438232;-0.063797;-0.10255432 +5213;12;0.2508831;-0.056852605;-0.26730776;0.9286399 +5214;0;0.17684937;4.8127594;10.300781 +5214;1;-0.28311312;4.868808;8.511796 +5215;3;-0.30804443;-0.06806946;-0.10255432 +5216;0;0.21028137;4.7224884;10.42955 +5217;12;0.25013438;-0.05674649;-0.26761308;0.9287604 +5217;3;-0.30256653;-0.06929016;-0.10195923 +5219;0;0.22460938;4.627472;10.486786 +5219;1;-0.28211224;4.855185;8.519607 +5219;3;-0.2970581;-0.06562805;-0.10317993 +5221;4;-12.5564575;-6.2911987;-66.596985 +5221;6;0.48282966;-0.41548312;-0.02141505 +5221;7;0.8814688;0.42478633;-0.20632376;0.0;-0.47183585;0.81033194;-0.34746674;0.0;0.019591589 +5221;0;0.23416138;4.5419617;10.548782 +5222;3;-0.2823944;-0.059524536;-0.10562134 +5222;12;0.24935648;-0.056652993;-0.26792145;0.9288864 +5224;0;0.22940063;4.44693;10.606003 +5224;1;-0.28138763;4.8420043;8.527129 +5225;3;-0.26589966;-0.05279541;-0.10623169 +5225;2;-0.49744487;0.023280144;-1.789648; +5226;0;0.23416138;4.3946686;10.639404 +5227;12;0.24860856;-0.056552157;-0.26822942;0.92900413 +5227;3;-0.24513245;-0.046691895;-0.10623169 +5228;0;0.25328064;4.280655;10.663239 +5229;1;-0.2812093;4.830065;8.533903 +5230;3;-0.22009277;-0.03630066;-0.10928345 +5230;4;-11.956787;-5.9906006;-65.54718 +5230;6;0.50175166;-0.38165;-0.023748228 +5230;7;0.8722404;0.44635743;-0.19990398;0.0;-0.48858052;0.81366104;-0.3150313;0.0;0.022037504 +5231;0;0.22940063;4.180893;10.663239 +5231;3;-0.19137573;-0.027755737;-0.11355591 +5231;12;0.24793641;-0.056440815;-0.26852673;0.9291046 +5233;0;0.20550537;4.095352;10.620316 +5233;1;-0.2818947;4.819989;8.539576 +5233;3;-0.15779114;-0.016159058;-0.11843872 +5234;5;999.598 +5235;0;0.21984863;4.0478516;10.620316 +5236;12;0.24738127;-0.056316756;-0.26882216;0.9291748 +5236;3;-0.11868286;-0.006378174;-0.12210083 +5238;0;0.16729736;3.9860992;10.596466 +5238;1;-0.28365064;4.812572;8.5437 +5238;3;-0.07714844;0.0052337646;-0.1282196 +5240;4;-10.757446;-4.79126;-65.24658 +5240;6;0.48308498;-0.35975716;-0.015786722 +5240;7;0.8828743;0.4347763;-0.17748976;0.0;-0.46937698;0.8288743;-0.30438915;0.0;0.014775479 +5240;0;0.1577301;3.9480896;10.577393 +5241;3;-0.03437805;0.01927185;-0.13493347 +5241;12;0.2469876;-0.05618119;-0.26911676;0.9292023 +5242;0;0.1338501;3.933838;10.606003 +5243;1;-0.28667453;4.8084555;8.545917 +5243;2;-0.512442;0.67068195;-2.0618267; +5243;3;0.0095825195;0.032104492;-0.14349365 +5245;0;0.10041809;3.938568;10.558319 +5245;12;0.24679366;-0.056037277;-0.26941222;0.92917705 +5245;3;0.052963257;0.047973633;-0.15142822 +5247;0;-0.0046844482;3.9433289;10.424774 +5247;1;-0.29129997;4.807909;8.546067 +5248;3;0.09510803;0.062026978;-0.15997314 +5250;4;-10.606384;-5.39093;-63.146973 +5250;6;0.5512436;-0.36163014;4.4935726E-4 +5250;7;0.8519571;0.48987174;-0.1849186;0.0;-0.5236115;0.79677576;-0.3016278;0.0;-4.202934E-4 +5250;0;-0.028564453;3.9100647;10.300781 +5250;3;0.13543701;0.07180786;-0.16792297 +5251;12;0.24681959;-0.055869292;-0.2697034;0.9290958 +5252;0;-0.07156372;3.9575806;10.195847 +5252;1;-0.29750678;4.810846;8.544201 +5253;3;0.17268372;0.07913208;-0.17585754 +5256;12;0.24705698;-0.055686492;-0.27001762;0.9289523 +5256;0;-0.13366699;3.938568;10.124298 +5256;3;0.20628357;0.0846405;-0.18319702 +5257;9;2AEC2AEBC4E1;-62;-2147483648 +5258;0;-0.15278625;3.938568;10.048004 +5258;1;-0.3047851;4.8168416;8.5405655 +5258;3;0.23561096;0.08769226;-0.18992615 +5260;4;-11.657715;-5.8410645;-65.24658 +5260;6;0.604696;-0.37353006;0.01520446 +5260;7;0.82573396;0.52931017;-0.19492063;0.0;-0.563882;0.76594734;-0.30880654;0.0;-0.014155491 +5260;0;-0.23876953;3.9718475;9.89061 +5261;12;0.24747616;-0.055505518;-0.27034867;0.92875534 +5261;3;0.25698853;0.08830261;-0.19786072 +5263;0;-0.32476807;3.9765778;9.799988 +5263;1;-0.3128534;4.8253016;8.535497 +5263;2;-0.23220602;0.8529935;-1.6190186; +5263;3;0.277771;0.08647156;-0.20213318 +5267;12;0.24803963;-0.0553327;-0.27070394;0.9285117 +5267;0;-0.3438568;4.024109;9.699844 +5267;3;0.2936554;0.08157349;-0.20701599 +5267;0;-0.36297607;4.0145874;9.613998 +5267;1;-0.32098702;4.8353086;8.52953 +5267;3;0.30525208;0.07546997;-0.21191406 +5269;4;-12.70752;-4.79126;-64.19678 +5269;6;0.6449945;-0.3953136;0.03773703 +5269;7;0.8072689;0.55482745;-0.20120494;0.0;-0.58915585;0.73747295;-0.33019552;0.0;-0.03481833 +5269;0;-0.38208008;4.000351;9.537689 +5269;3;0.3125763;0.0675354;-0.21679688 +5270;12;0.24868487;-0.05518826;-0.27107406;0.9282397 +5271;0;-0.43463135;4.024109;9.4852295 +5272;1;-0.3290069;4.8464174;8.522917 +5272;3;0.31930542;0.062026978;-0.22106934 +5272;5;999.598 +5275;0;-0.41552734;4.1048584;9.356461 +5275;12;0.24939027;-0.055078838;-0.27147684;0.92793924 +5275;3;0.32479858;0.057754517;-0.22351074 +5276;0;-0.48718262;4.1571198;9.237228 +5276;1;-0.33674482;4.8581395;8.515937 +5276;3;0.3284607;0.051651;-0.22717285 +5278;4;-11.357117;-5.090332;-66.89758 +5278;6;0.5839007;-0.42236745;0.05269239 +5279;7;0.8450627;0.50283647;-0.18172675;0.0;-0.5325048;0.7609996;-0.370565;0.0;-0.048039604 +5279;0;-0.48239136;4.1523743;9.127518 +5279;3;0.33151245;0.04309082;-0.22839355 +5280;12;0.25012356;-0.054998845;-0.27189976;0.92762274 +5281;0;-0.48239136;4.180893;9.03215 +5281;1;-0.34414944;4.8702707;8.50871 +5282;2;0.05397114;0.76550627;-0.86581516; +5282;3;0.3333435;0.033325195;-0.23268127 +5284;0;-0.5158386;4.166626;8.936752 +5284;12;0.25087202;-0.054949038;-0.27234092;0.92729414 +5284;3;0.33396912;0.024765015;-0.23573303 +5286;0;-0.5062866;4.2046356;8.855682 +5286;1;-0.35100573;4.882607;8.501356 +5286;3;0.33518982;0.014389038;-0.23817444 +5288;4;-11.357117;-5.090332;-66.14685 +5288;6;0.5733053;-0.4426494;0.057108656 +5288;7;0.8520042;0.49013415;-0.18400356;0.0;-0.52098817;0.7591426;-0.3902226;0.0;-0.051576473 +5289;0;-0.5110626;4.2046356;8.7603 +5289;3;0.33580017;0.005844116;-0.2412262 +5289;12;0.25162348;-0.054935403;-0.27279186;0.92695874 +5291;0;-0.49671936;4.209381;8.650604 +5291;1;-0.35722643;4.8950844;8.493917 +5291;3;0.33641052;-0.003326416;-0.2424469 +5293;0;-0.49195862;4.214142;8.583832 +5293;12;0.25237054;-0.054967582;-0.27327985;0.92660993 +5294;3;0.33885193;-0.013092041;-0.2436676 +5296;0;-0.45851135;4.2283936;8.531357 +5298;1;-0.36275893;4.907696;8.486403 +5298;3;0.33885193;-0.024093628;-0.2448883 +5298;4;-11.357117;-5.8410645;-66.44745 +5298;6;0.5571885;-0.4595717;0.05369259 +5298;7;0.86011004;0.4739349;-0.18867022;0.0;-0.50783587;0.76068157;-0.4043096;0.0;-0.048098467 +5298;0;-0.47283936;4.223633;8.450302 +5298;3;0.33702087;-0.034484863;-0.24549866 +5299;12;0.25311333;-0.055042464;-0.27378508;0.9262537 +5300;0;-0.41552734;4.209381;8.393066 +5300;1;-0.36746082;4.920345;8.478873 +5301;2;0.09097555;0.6921902;-0.15559769; +5301;3;0.33641052;-0.046691895;-0.2448883 +5303;0;-0.42507935;4.233139;8.350128 +5303;12;0.25384432;-0.055166356;-0.27430663;0.92589176 +5304;3;0.33580017;-0.055862427;-0.24673462 +5305;0;-0.38208008;4.185623;8.316757 +5305;1;-0.37124807;4.9329247;8.4713955 +5306;3;0.3333435;-0.063797;-0.24795532 +5308;4;-11.657715;-7.7911377;-65.24658 +5308;6;0.5855871;-0.46584165;0.045908716 +5308;7;0.8439027;0.49379635;-0.20974603;0.0;-0.5349271;0.7445851;-0.3993068;0.0;-0.04100245 +5308;0;-0.3343048;4.166626;8.249985 +5308;3;0.3296814;-0.071746826;-0.25039673 +5308;12;0.25455478;-0.055340406;-0.2748401;0.9255281 +5310;0;-0.27697754;4.1713715;8.230911 +5310;1;-0.37433365;4.9452906;8.464047 +5311;3;0.32479858;-0.07785034;-0.25039673 +5311;5;999.598 +5312;0;-0.2722168;4.2046356;8.187988 +5312;12;0.25524467;-0.055552296;-0.27539176;0.92516136 +5313;3;0.32052612;-0.0821228;-0.24917603 +5314;0;-0.21966553;4.2188873;8.135513 +5315;1;-0.37687483;4.957352;8.456875 +5315;3;0.313797;-0.087005615;-0.24732971 +5317;4;-12.107849;-6.890869;-64.94751 +5317;6;0.5306954;-0.47824934;0.026994262 +5317;7;0.8684283;0.449346;-0.20957206;0.0;-0.49523532;0.7656895;-0.41044047;0.0;-0.023962647 +5317;0;-0.157547;4.2283936;8.111679 +5317;3;0.30647278;-0.09310913;-0.24673462 +5318;12;0.25590876;-0.055791523;-0.2759514;0.9247967 +5321;0;-0.143219;4.1951294;8.08783 +5321;1;-0.37883043;4.9689198;8.449997 +5321;2;-0.12771878;0.7494054;0.25114918; +5321;3;0.2966919;-0.10044861;-0.24427795 +5323;0;-0.08590698;4.1618805;8.025818 +5323;12;0.2565351;-0.056050744;-0.2765114;0.92444015 +5324;3;0.28753662;-0.10473633;-0.24183655 +5324;0;-0.042907715;4.1713715;8.040131 +5324;1;-0.3800835;4.979731;8.443573 +5325;3;0.2802124;-0.10839844;-0.2424469 +5327;4;-11.056519;-6.440735;-63.29651 +5327;6;0.4530568;-0.47858328;0.0053366427 +5327;7;0.9001763;0.38853785;-0.19677679;0.0;-0.4355001;0.79809636;-0.41639158;0.0;-0.004737039 +5327;12;0.25710866;-0.05633142;-0.2770631;0.9240985 +5328;0;0.0048675537;4.11911;8.068741 +5328;3;0.27165222;-0.107177734;-0.24061584 +5329;0;7.6293945E-5;4.1571198;7.987671 +5329;1;-0.38101336;4.9898434;8.437559 +5329;3;0.2667694;-0.106552124;-0.23939514 +5331;0;0.09085083;4.199875;7.901825 +5332;12;0.25764528;-0.056621455;-0.27762297;0.9237632 +5332;3;0.2631073;-0.10961914;-0.23756409 +5334;0;0.18640137;4.2046356;7.9208984 +5334;1;-0.38168404;4.999629;8.431734 +5334;3;0.25637817;-0.110839844;-0.23695374 +5336;4;-10.906982;-6.2911987;-65.097046 +5336;6;0.3577666;-0.48789027;-0.023528513 +5336;7;0.9325601;0.3093251;-0.18614428;0.0;-0.36041623;0.8273929;-0.4307218;0.0;0.02078138 +5336;0;0.21505737;4.142868;7.9495087 +5337;3;0.25027466;-0.11206055;-0.23573303 +5337;12;0.25815317;-0.056916576;-0.27817485;0.9234372 +5339;0;0.25805664;4.1286316;8.021057 +5340;1;-0.38205576;5.008888;8.426221 +5340;2;-0.48700657;0.8305621;0.4459734; +5340;3;0.24234009;-0.10777283;-0.23573303 +5341;0;0.3201599;4.11911;8.040131 +5342;12;0.25862807;-0.05721812;-0.27872816;0.92311877 +5342;3;0.23316956;-0.09983826;-0.23329163 +5344;0;0.30104065;4.133362;7.987671 +5344;1;-0.38259664;5.017417;8.42112 +5344;3;0.22338867;-0.091293335;-0.23512268 +5346;4;-11.357117;-7.4905396;-64.94751 +5346;6;0.3642187;-0.47723427;-0.037670337 +5346;7;0.9275773;0.3164185;-0.19869506;0.0;-0.3721307;0.83000034;-0.41547343;0.0;0.033453465 +5346;0;0.30104065;4.100113;7.9590607 +5346;3;0.2130127;-0.08578491;-0.23634338 +5347;12;0.25907078;-0.057490956;-0.27926394;0.9228157 +5348;0;0.32492065;4.11911;7.9256744 +5348;1;-0.38378626;5.0251613;8.416447 +5349;3;0.20384216;-0.083343506;-0.23939514 +5349;5;999.6128 +5351;0;0.38226318;4.095352;7.892288 +5351;12;0.25947982;-0.05772194;-0.27980116;0.9225236 +5351;3;0.1971283;-0.079071045;-0.2424469 +5353;0;0.4013672;4.090622;7.8731995 +5353;1;-0.3852925;5.032184;8.412181 +5353;3;0.18917847;-0.07601929;-0.24610901 +5355;4;-11.956787;-7.3410034;-65.84625 +5355;6;0.34297872;-0.47864437;-0.05093482 +5355;7;0.9326499;0.29850113;-0.20263559;0.0;-0.35794115;0.83592254;-0.41606683;0.0;0.045191225 +5355;0;0.4204712;4.090622;7.901825 +5356;3;0.18063354;-0.07296753;-0.25039673 +5356;12;0.25985327;-0.057925213;-0.28034657;0.92224014 +5361;0;0.42526245;4.11911;7.897049 +5361;1;-0.3872117;5.038556;8.4082775 +5361;2;-0.7758075;0.9140315;0.48190022; +5362;9;2AEC2AEBC4E1;-54;-2147483648 +5363;12;0.2601986;-0.058099523;-0.28090566;0.9219616 +5363;3;0.17208862;-0.071121216;-0.25527954 +5363;0;0.4156952;4.142868;7.9304504 +5363;3;0.16230774;-0.06867981;-0.26016235 +5363;1;-0.38955307;5.044202;8.404783 +5363;0;0.4300232;4.133362;7.935196 +5364;3;0.15010071;-0.066848755;-0.26565552 +5365;4;-11.357117;-7.7911377;-67.196655 +5365;6;0.30662888;-0.47961888;-0.054138925 +5365;7;0.9444227;0.2677894;-0.19066878;0.0;-0.32520926;0.84579015;-0.4229397;0.0;0.048007015 +5365;0;0.4300232;4.1381226;7.992447 +5366;12;0.2605083;-0.05824154;-0.2814694;0.9216932 +5366;3;0.13665771;-0.06806946;-0.2705536 +5368;1;-0.39223006;5.04884;8.401874 +5368;0;0.4443512;4.142868;7.9495087 +5368;3;0.11955261;-0.06867981;-0.27360535 +5370;12;0.26076764;-0.05835963;-0.28207353;0.92142767 +5370;0;0.3965912;4.1381226;7.9638214 +5370;3;0.10366821;-0.071746826;-0.2778778 +5372;0;0.4156952;4.1143646;7.973358 +5372;1;-0.3950246;5.052161;8.399746 +5372;3;0.08717346;-0.07357788;-0.27970886 +5375;4;-11.056519;-7.1914673;-64.19678 +5375;6;0.3199359;-0.4758238;-0.05208836 +5375;7;0.94046736;0.27956906;-0.19329329;0.0;-0.33671832;0.8438082;-0.4178619;0.0;0.04628123 +5375;0;0.38703918;4.1286316;7.978134 +5375;3;0.06945801;-0.075408936;-0.2803192 +5375;12;0.26095435;-0.05845591;-0.28270102;0.92117643 +5377;0;0.34403992;4.1713715;8.030594 +5377;1;-0.3978092;5.0541315;8.398429 +5377;2;-0.8373742;0.90084934;0.43642902; +5377;3;0.051132202;-0.079071045;-0.27848816 +5379;0;0.34403992;4.1476135;8.016281 +5380;12;0.26106685;-0.05853289;-0.283346;0.9209415 +5380;3;0.03463745;-0.08029175;-0.28094482 +5382;0;0.33448792;4.1571198;8.106903 +5383;1;-0.4004143;5.054643;8.397998 +5383;3;0.020584106;-0.082733154;-0.2778778 +5384;4;-12.107849;-6.440735;-62.997437 +5384;6;0.38871905;-0.47348008;-0.04123625 +5384;7;0.91748416;0.33730796;-0.21082242;0.0;-0.39607656;0.82358956;-0.40598458;0.0;0.03668932 +5384;0;0.2962799;4.176132;8.140289 +5384;3;0.003479004;-0.08456421;-0.27604675 +5385;12;0.2610957;-0.05859352;-0.2839948;0.92072946 +5386;0;0.29148865;4.1476135;8.173676 +5386;1;-0.40285534;5.0538745;8.398343 +5387;3;-0.0124053955;-0.08456421;-0.27604675 +5387;5;999.6128 +5389;0;0.26283264;4.1618805;8.2165985 +5389;12;0.26105103;-0.058641672;-0.28464955;0.9205369 +5389;3;-0.025222778;-0.083343506;-0.27482605 +5391;0;0.26283264;4.1618805;8.254761 +5391;1;-0.40528604;5.0518246;8.39946 +5392;3;-0.039276123;-0.082733154;-0.272995 +5393;4;-11.357117;-6.890869;-64.497375 +5393;6;0.3839167;-0.46678194;-0.031829376 +5394;7;0.921371;0.33448547;-0.19797727;0.0;-0.387644;0.8280135;-0.4051247;0.0;0.028419506 +5394;0;0.24848938;4.166626;8.302444 +5394;3;-0.050872803;-0.08029175;-0.26994324 +5394;12;0.2609365;-0.05866853;-0.28530586;0.92036444 +5397;1;-0.40773776;5.048691;8.401225 +5397;2;-0.7270463;0.87283945;0.21145535; +5397;0;0.24372864;4.185623;8.354904 +5397;3;-0.06187439;-0.07846069;-0.26994324 +5399;0;0.24372864;4.176132;8.38829 +5399;12;0.26076382;-0.058673337;-0.28595582;0.9202114 +5399;3;-0.07287598;-0.07601929;-0.26750183 +5401;0;0.18640137;4.190384;8.402588 +5401;1;-0.41035074;5.044618;8.403543 +5401;3;-0.080200195;-0.07418823;-0.26628113 +5403;4;-10.906982;-8.390808;-64.34631 +5403;6;0.4185903;-0.4625101;-0.022180168 +5403;7;0.9094157;0.36376694;-0.20158546;0.0;-0.4154144;0.81766915;-0.39855745;0.0;0.019848188 +5403;0;0.1816101;4.1286316;8.435989 +5404;3;-0.08874512;-0.071746826;-0.26565552 +5404;12;0.2605429;-0.058647435;-0.28659424;0.9200771 +5405;0;0.1386261;4.1476135;8.450302 +5406;1;-0.4131105;5.0398135;8.40629 +5406;3;-0.09669495;-0.06806946;-0.26383972 +5408;0;0.16729736;4.1571198;8.512299 +5408;12;0.26028576;-0.05860318;-0.28723392;0.91995305 +5408;3;-0.10707092;-0.066848755;-0.26016235 +5410;0;0.1338501;4.1381226;8.540909 +5410;1;-0.41599873;5.034286;8.40946 +5411;3;-0.116241455;-0.06562805;-0.2558899 +5413;4;-11.657715;-7.7911377;-66.44745 +5413;6;0.4489447;-0.45112768;-0.015670363 +5413;7;0.89782995;0.39059445;-0.20331588;0.0;-0.44011647;0.81077546;-0.38592833;0.0;0.01410206 +5413;0;0.10517883;4.1381226;8.540909 +5413;3;-0.124801636;-0.0650177;-0.25222778 +5414;12;0.259992;-0.058534745;-0.28786454;0.9198435 +5415;0;0.052627563;4.142868;8.526611 +5415;1;-0.41886267;5.0280123;8.41307 +5415;2;-0.6055459;0.8649626;-0.057131767; +5416;3;-0.13456726;-0.0662384;-0.24673462 +5417;0;0.03352356;4.166626;8.521835 +5418;12;0.2596604;-0.058449708;-0.28847978;0.9197497 +5418;3;-0.14372253;-0.06929016;-0.2424469 +5420;0;-0.019012451;4.1381226;8.579071 +5420;1;-0.42148134;5.0210114;8.41712 +5421;3;-0.15350342;-0.071746826;-0.23756409 +5423;4;-10.757446;-5.8410645;-64.19678 +5423;6;0.4490507;-0.44942793;0.0022161398 +5423;7;0.90127534;0.39100155;-0.1866026;0.0;-0.43324214;0.8114005;-0.39233986;0.0;-0.0019960662 +5423;0;-0.052444458;4.133362;8.579071 +5423;3;-0.16572571;-0.07723999;-0.23329163 +5424;12;0.2592897;-0.05833268;-0.28899097;0.9197012 +5425;0;-0.07635498;4.1143646;8.631531 +5425;1;-0.42370418;5.0131054;8.42172 +5426;3;-0.17549133;-0.08151245;-0.2277832 +5426;5;999.6128 +5427;0;-0.100234985;4.095352;8.6362915 +5428;3;-0.18832397;-0.08639526;-0.21984863 +5428;12;0.25885814;-0.05824266;-0.28958243;0.9196425 +5430;0;-0.143219;4.019348;8.6458435 +5430;1;-0.42531115;5.004286;8.426882 +5430;3;-0.19810486;-0.08822632;-0.21313477 +5432;4;-12.257385;-6.2911987;-64.34631 +5432;6;0.5583005;-0.43511307;0.016563553 +5432;7;0.85173875;0.48038512;-0.20921613;0.0;-0.5237515;0.7691275;-0.36623403;0.0;-0.015019515 +5432;0;-0.15278625;3.9955902;8.669678 +5432;3;-0.20848083;-0.09310913;-0.20762634 +5433;12;0.25836724;-0.058160573;-0.2901549;0.9196053 +5434;0;-0.17666626;4.009842;8.7603 +5434;1;-0.42636672;4.994545;8.432606 +5435;3;-0.21643066;-0.09310913;-0.20213318 +5435;2;-0.37695277;0.9022331;-0.19240475; +5437;0;-0.171875;4.000351;8.798447 +5437;12;0.2578204;-0.05808449;-0.29070544;0.9195897 +5437;3;-0.22619629;-0.09310913;-0.19725037 +5439;0;-0.20533752;3.9433289;8.855682 +5439;1;-0.427084;4.9840217;8.438793 +5439;3;-0.23658752;-0.091293335;-0.19114685 +5441;4;-11.657715;-7.7911377;-64.19678 +5441;6;0.6082754;-0.41882864;0.02318294 +5441;7;0.82580155;0.5220601;-0.21331912;0.0;-0.5635631;0.749704;-0.34690154;0.0;-0.021177247 +5442;0;-0.19577026;3.9100647;8.908142 +5442;3;-0.2481842;-0.09007263;-0.18319702 +5443;12;0.25722528;-0.058002967;-0.29123196;0.919595 +5444;0;-0.22442627;3.9053192;8.941528 +5444;3;-0.25674438;-0.087631226;-0.17585754 +5444;1;-0.42761245;4.972569;8.445521 +5446;0;-0.23399353;3.9005737;8.955841 +5447;12;0.25658154;-0.0579083;-0.29173812;0.9196202 +5447;3;-0.26712036;-0.08395386;-0.16792297 +5449;0;-0.26264954;3.8815765;8.936752 +5449;3;-0.2750702;-0.0821228;-0.15997314 +5449;1;-0.42800918;4.960335;8.452691 +5451;4;-11.357117;-8.840942;-63.29651 +5451;6;0.6619773;-0.40959612;0.02938136 +5451;7;0.7956291;0.5638326;-0.22151086;0.0;-0.6051843;0.72353196;-0.33204412;0.0;-0.026947109 +5451;0;-0.29130554;3.8530579;8.965378 +5452;3;-0.28300476;-0.08029175;-0.15327454 +5452;12;0.2558956;-0.057795387;-0.2922111;0.9196684 +5453;0;-0.30085754;3.862564;8.989227 +5454;1;-0.42827567;4.9473968;8.460258 +5454;2;-0.2295106;1.0351996;-0.4575987; +5454;3;-0.28971863;-0.07785034;-0.14654541 +5456;0;-0.3152008;3.843567;9.056 +5456;12;0.25517187;-0.05766747;-0.29265037;0.9197378 +5456;3;-0.29278564;-0.07662964;-0.13739014 +5459;1;-0.4283831;4.9339437;8.468104 +5459;0;-0.3438568;3.8197937;9.027374 +5459;3;-0.29522705;-0.07357788;-0.12760925 +5462;4;-11.056519;-6.890869;-64.94751 +5462;6;0.62438047;-0.40002942;0.03807205 +5462;7;0.8194032;0.5384407;-0.1966214;0.0;-0.5721445;0.74727094;-0.33798936;0.0;-0.035057776 +5462;0;-0.40596008;3.8388062;9.094147 +5462;3;-0.29644775;-0.06929016;-0.11906433 +5463;12;0.25442344;-0.05751912;-0.2930297;0.9198336 +5463;1;-0.428353;4.9203253;8.476027 +5463;0;-0.38208008;3.8293152;9.098923 +5464;3;-0.29522705;-0.0650177;-0.10928345 +5465;5;999.6128 +5466;0;-0.39640808;3.8340607;9.089371 +5466;12;0.253665;-0.05737318;-0.2933929;0.9199364 +5467;3;-0.28849792;-0.058303833;-0.09889221 +5468;0;-0.44895935;3.8293152;9.117996 +5470;1;-0.42829204;4.906905;8.483805 +5470;3;-0.2811737;-0.054641724;-0.08973694 +5471;9;2AEC2AEBC4E1;-54;-2147483648 +5473;4;-11.657715;-7.1914673;-63.746643 +5473;6;0.6936187;-0.39717323;0.049199082 +5473;7;0.780169;0.5895577;-0.20918393;0.0;-0.62392265;0.7090819;-0.32851672;0.0;-0.045351032 +5473;0;-0.44418335;3.8530579;9.098923 +5473;3;-0.26957703;-0.050964355;-0.080566406 +5473;12;0.25292146;-0.057217132;-0.29370773;0.9200504 +5473;13;53.79599 +5473;9;52ADB5BC186F;-70;-2147483648 +5475;1;-0.42818415;4.894164;8.491167 +5475;0;-0.47763062;3.872055;9.075058 +5475;3;-0.25491333;-0.046691895;-0.07080078 +5475;2;-0.06341475;1.0525098;-0.59205437; +5476;0;-0.46806335;3.8863068;9.0607605 +5476;12;0.25221798;-0.057063386;-0.29397464;0.9201678 +5477;3;-0.23597717;-0.039978027;-0.06285095 +5478;0;-0.47283936;3.9290771;9.075058 +5478;1;-0.42803872;4.8828073;8.49771 +5478;3;-0.21704102;-0.035079956;-0.05491638 +5480;4;-11.956787;-5.9906006;-64.64691 +5480;6;0.65618515;-0.4080939;0.052056104 +5480;7;0.8038505;0.5599967;-0.2005693;0.0;-0.59291095;0.7272588;-0.34576172;0.0;-0.047759626 +5480;0;-0.5158386;3.9433289;9.017838 +5481;3;-0.19747925;-0.02897644;-0.04637146 +5482;12;0.2515939;-0.056918908;-0.29417896;0.9202823 +5484;0;-0.5349426;3.9813385;9.03215 +5484;1;-0.42804033;4.8731146;8.503273 +5485;3;-0.17793274;-0.02104187;-0.039031982 +5486;12;0.25106528;-0.056788117;-0.29434597;0.92038137 +5486;0;-0.5397186;4.0145874;8.931976 +5486;3;-0.15594482;-0.01737976;-0.02986145 +5490;0;-0.5540619;4.028839;8.884293 +5490;1;-0.4282153;4.8652115;8.507788 +5490;3;-0.13822937;-0.0149383545;-0.023773193 +5492;4;-12.257385;-5.9906006;-63.597107 +5494;6;0.67090344;-0.4250137;0.06228355 +5494;7;0.79769725;0.56638366;-0.2070953;0.0;-0.6003861;0.713576;-0.36103427;0.0;-0.0567057 +5494;0;-0.6018219;4.0811005;8.81752 +5494;12;0.25063992;-0.056666616;-0.294464;0.920467 +5494;3;-0.11868286;-0.009429932;-0.01826477 +5494;0;-0.5779419;4.123871;8.76506 +5494;1;-0.4284207;4.859044;8.511302 +5494;2;0.06812695;0.8615875;-0.4393425; +5494;3;-0.10157776;-0.0082092285;-0.013381958 +5495;0;-0.59706116;4.2046356;8.70784 +5495;12;0.25031188;-0.056566972;-0.2945421;0.9205374 +5495;3;-0.084472656;-0.009429932;-0.009719849 +5497;0;-0.5827179;4.223633;8.660141 +5497;1;-0.42854595;4.8545065;8.513885 +5497;3;-0.071640015;-0.009429932;-0.006668091 +5499;4;-13.006592;-6.440735;-62.097168 +5499;6;0.6862056;-0.45287764;0.06718607 +5499;7;0.7905227;0.56973344;-0.22467221;0.0;-0.6094502;0.69566476;-0.3802906;0.0;-0.06036772 +5500;0;-0.59706116;4.280655;8.602905 +5500;12;0.25007102;-0.056492407;-0.29459083;0.9205919 +5500;3;-0.06248474;-0.011260986;-0.0048217773 +5501;0;-0.55882263;4.3519135;8.559982 +5502;1;-0.42846146;4.8511963;8.515775 +5502;3;-0.05392456;-0.0149383545;-0.0030059814 +5503;5;999.6128 +5504;0;-0.5397186;4.370926;8.507523 +5504;12;0.24989353;-0.056448326;-0.29462352;0.92063236 +5505;3;-0.047210693;-0.020431519;-0.0017852783 +5506;0;-0.5349426;4.413666;8.474136 +5506;1;-0.42795116;4.848692;8.517226 +5511;3;-0.042938232;-0.026535034;6.1035156E-5 +5511;4;-11.657715;-7.1914673;-63.746643 +5511;6;0.6052044;-0.4793657;0.06304286 +5511;7;0.83728355;0.50480473;-0.21006753;0.0;-0.5439038;0.72969276;-0.4143876;0.0;-0.0559001 +5511;0;-0.5301666;4.4611816;8.46936 +5511;3;-0.039886475;-0.031417847;-0.0017852783 +5511;12;0.24975248;-0.056436863;-0.29465014;0.9206628 +5511;0;-0.5158386;4.494446;8.44075 +5511;1;-0.426926;4.846671;8.518428 +5512;2;0.09402454;0.4989605;-0.037682533; +5512;3;-0.03866577;-0.03753662;-0.002380371 +5513;0;-0.5062866;4.5419617;8.426437 +5514;12;0.24962857;-0.056460682;-0.29467794;0.92068607 +5514;3;-0.03744507;-0.043029785;-0.001159668 +5516;1;-0.42542267;4.8448973;8.519512 +5516;0;-0.47763062;4.5752106;8.373978 +5516;3;-0.03868103;-0.046691895;-0.0018005371 +5518;4;-11.056519;-6.890869;-64.497375 +5518;6;0.54103976;-0.49936166;0.056975752 +5518;7;0.869827;0.45213673;-0.19741692;0.0;-0.4908176;0.75250286;-0.4391328;0.0;-0.049991295 +5519;0;-0.4202881;4.5657043;8.373978 +5519;3;-0.03929138;-0.050354004;-0.0023956299 +5520;12;0.24950881;-0.056511667;-0.2946956;0.9207097 +5521;0;-0.43463135;4.5752106;8.326294 +5521;1;-0.42351165;4.843128;8.520614 +5521;3;-0.039901733;-0.05340576;-0.0023956299 +5523;0;-0.41552734;4.603714;8.350128 +5523;12;0.24938194;-0.05658661;-0.2947355;0.9207267 +5524;3;-0.041732788;-0.054031372;-0.0030212402 +5525;0;-0.40119934;4.6797333;8.35968 +5526;1;-0.42137787;4.8413534;8.5217285 +5526;3;-0.044174194;-0.054641724;-0.0054626465 +5529;12;0.24925146;-0.056674555;-0.29477915;0.9207426 +5529;4;-11.506653;-6.590271;-64.64691 +5529;6;0.5198881;-0.5098444;0.04795539 +5529;7;0.8784994;0.43360233;-0.20056866;0.0;-0.47590768;0.7574988;-0.44688624;0.0;-0.0418404 +5529;0;-0.39163208;4.6797333;8.340591 +5529;3;-0.044174194;-0.055252075;-0.0054626465 +5530;1;-0.41923165;4.8394885;8.522893 +5531;2;-0.026555568;0.22847271;0.15800095; +5531;0;-0.38208008;4.6892242;8.340591 +5531;3;-0.04600525;-0.054031372;-0.0054626465 +5532;0;-0.36297607;4.7082367;8.297668 +5533;12;0.24911477;-0.056763105;-0.29482955;0.920758 +5533;3;-0.044784546;-0.05279541;-0.0054626465 +5535;0;-0.32476807;4.6987305;8.269058 +5535;1;-0.41709682;4.837628;8.524054 +5535;3;-0.04600525;-0.051574707;-0.003616333 +5537;4;-11.506653;-6.590271;-64.64691 +5537;6;0.49592716;-0.51640093;0.03925492 +5537;7;0.88807094;0.4137977;-0.20025338;0.0;-0.4584379;0.7648391;-0.45261005;0.0;-0.03412739 +5537;0;-0.3199768;4.717743;8.273819 +5538;3;-0.04600525;-0.050354004;-0.003616333 +5538;12;0.2489784;-0.05684765;-0.29486617;0.920778 +5540;0;-0.27697754;4.7557526;8.249985 +5540;1;-0.4149626;4.8357944;8.525198 +5540;3;-0.047836304;-0.049743652;-0.0030212402 +5541;5;999.6116 +5543;0;-0.27697754;4.7462463;8.254761 +5544;12;0.2488436;-0.056934338;-0.29490843;0.92079556 +5544;3;-0.049057007;-0.046691895;-0.0018005371 +5545;0;-0.30085754;4.7700043;8.297668 +5545;3;-0.05027771;-0.043029785;-5.79834E-4 +5545;1;-0.41290158;4.8338795;8.526384 +5547;4;-11.657715;-6.890869;-62.097168 +5547;6;0.5121192;-0.5214459;0.03624221 +5547;7;0.8799803;0.4249012;-0.21235265;0.0;-0.47396997;0.7558579;-0.4516983;0.0;-0.031418733 +5547;0;-0.27697754;4.7794952;8.283371 +5547;3;-0.052719116;-0.04119873;0.0012664795 +5548;12;0.24870563;-0.057013262;-0.29494688;0.92081565 +5549;0;-0.26264954;4.8079987;8.283371 +5549;1;-0.41099116;4.8318653;8.527618 +5550;2;-0.14699036;0.08648682;0.24808407; +5550;3;-0.053344727;-0.03630066;0.0024871826 +5552;0;-0.23399353;4.8079987;8.254761 +5552;12;0.24856576;-0.057081733;-0.29497537;0.92084 +5552;3;-0.057006836;-0.0320282;0.0037078857 +5554;0;-0.23399353;4.793747;8.278595 +5554;1;-0.4093089;4.8297396;8.528903 +5555;3;-0.060668945;-0.026535034;0.0055389404 +5557;4;-11.657715;-6.890869;-62.097168 +5557;6;0.49282205;-0.5247019;0.028257363 +5557;7;0.8873459;0.40946755;-0.21202278;0.0;-0.46045566;0.76248306;-0.454533;0.0;-0.024452738 +5557;0;-0.21009827;4.793747;8.316757 +5557;3;-0.064331055;-0.022872925;0.0067596436 +5558;12;0.24842224;-0.05713144;-0.29498953;0.92087114 +5559;0;-0.19577026;4.7890015;8.288132 +5559;1;-0.40790266;4.8272943;8.5303545 +5560;3;-0.06982422;-0.01737976;0.008590698 +5562;0;-0.21009827;4.803253;8.2642975 +5562;12;0.2482692;-0.057159252;-0.29499555;0.92090875 +5563;3;-0.07411194;-0.011871338;0.0110321045 +5564;0;-0.22442627;4.7985077;8.316757 +5564;1;-0.40684357;4.8244867;8.531994 +5565;3;-0.080215454;-0.0082092285;0.013473511 +5566;4;-12.857056;-7.3410034;-65.54718 +5566;6;0.5089249;-0.5231549;0.02697828 +5566;7;0.8795177;0.42206916;-0.219787;0.0;-0.47529224;0.75646675;-0.44928324;0.0;-0.023367027 +5567;0;-0.20054626;4.8222656;8.292908 +5567;3;-0.08509827;-0.0027160645;0.013473511 +5568;12;0.24810213;-0.05715975;-0.29498896;0.9209559 +5569;0;-0.19577026;4.817505;8.292908 +5569;1;-0.40605083;4.8212724;8.533849 +5569;3;-0.09182739;0.002166748;0.015304565 +5569;2;-0.22978017;0.020365715;0.24255848; +5571;0;-0.19099426;4.827011;8.30722 +5571;12;0.24791811;-0.05713608;-0.29496992;0.921013 +5572;3;-0.09487915;0.006439209;0.016525269 +5574;0;-0.21009827;4.841263;8.354904 +5574;1;-0.40560323;4.817621;8.535932 +5574;3;-0.09976196;0.011947632;0.018371582 +5576;9;2AEC2AEBC4E1;-62;-2147483648 +5578;4;-12.857056;-7.3410034;-65.54718 +5578;6;0.503396;-0.5250362;0.025141401 +5578;7;0.8817511;0.4174261;-0.2197051;0.0;-0.47121298;0.757964;-0.45105293;0.0;-0.021752706 +5578;0;-0.21487427;4.850769;8.354904 +5578;3;-0.10525513;0.018051147;0.018371582 +5578;12;0.24771732;-0.05708311;-0.29493967;0.92108 +5578;0;-0.18621826;4.850769;8.364441 +5578;1;-0.405536;4.8136034;8.538201 +5578;3;-0.10952759;0.02293396;0.020202637 +5579;5;999.6116 +5581;0;-0.20533752;4.8555145;8.393066 +5581;12;0.24750303;-0.057003025;-0.2949004;0.9211551 +5581;3;-0.113204956;0.02720642;0.023254395 +5583;0;-0.19577026;4.869766;8.416901 +5583;1;-0.40580234;4.8092213;8.540657 +5584;3;-0.116867065;0.033325195;0.024475098 +5585;4;-12.5564575;-7.0404053;-63.89618 +5585;6;0.49926308;-0.5243959;0.023254994 +5585;7;0.8832724;0.41444352;-0.2192404;0.0;-0.46842784;0.75996435;-0.45058787;0.0;-0.020128326 +5586;0;-0.171875;4.850769;8.435989 +5586;3;-0.124816895;0.03881836;0.026306152 +5586;12;0.2472748;-0.056896992;-0.2948488;0.92123944 +5588;0;-0.21009827;4.850769;8.435989 +5588;1;-0.4064217;4.804434;8.543322 +5588;2;-0.24569076;-0.04310131;0.15737534; +5588;3;-0.1302948;0.044921875;0.027526855 +5591;0;-0.18144226;4.86026;8.455063 +5591;12;0.24703263;-0.05676134;-0.2947841;0.9213335 +5591;3;-0.13641357;0.050430298;0.030578613 +5592;0;-0.20533752;4.8317566;8.450302 +5593;1;-0.40743503;4.7991333;8.546252 +5593;3;-0.141922;0.052871704;0.032409668 +5595;4;-12.5564575;-7.0404053;-63.89618 +5595;6;0.5063082;-0.51928765;0.024294648 +5595;7;0.88012904;0.42102218;-0.21934755;0.0;-0.47426602;0.7592527;-0.44565377;0.0;-0.021089882 +5595;0;-0.18144226;4.827011;8.483673 +5595;3;-0.14802551;0.053482056;0.035476685 +5596;12;0.24676892;-0.05659265;-0.29470462;0.92143995 +5597;0;-0.19099426;4.827011;8.502762 +5598;1;-0.40855113;4.793331;8.549455 +5598;3;-0.15473938;0.05531311;0.036087036 +5600;0;-0.17666626;4.827011;8.569519 +5600;12;0.24648067;-0.05640713;-0.29461426;0.92155737 +5601;3;-0.1590271;0.055923462;0.03791809 +5603;0;-0.18621826;4.817505;8.617218 +5603;1;-0.40968913;4.7869935;8.55295 +5603;3;-0.16268921;0.057754517;0.039749146 +5605;4;-12.70752;-7.1914673;-63.746643 +5605;6;0.5184572;-0.5096697;0.021606658 +5605;7;0.87360543;0.43256027;-0.22294666;0.0;-0.4862694;0.7581926;-0.43438017;0.0;-0.018859107 +5605;0;-0.17666626;4.7747498;8.65538 +5605;3;-0.16696167;0.060806274;0.0415802 +5605;12;0.24616322;-0.05620863;-0.29451764;0.9216853 +5607;0;-0.17666626;4.7890015;8.6458435 +5607;1;-0.41088706;4.780275;8.55665 +5607;2;-0.26453277;-0.037017345;0.006149292; +5608;3;-0.17123413;0.06324768;0.043411255 +5609;0;-0.16711426;4.7747498;8.6362915 +5610;12;0.24582969;-0.055999104;-0.2944117;0.9218209 +5610;3;-0.17184448;0.065704346;0.047073364 +5613;1;-0.41218662;4.773241;8.560513 +5613;0;-0.157547;4.760498;8.65538 +5614;3;-0.17123413;0.06814575;0.048294067 +5614;4;-12.857056;-7.0404053;-63.146973 +5614;6;0.5256554;-0.5027767;0.018200193 +5614;7;0.8692523;0.4396837;-0.2260057;0.0;-0.49411136;0.7579503;-0.42586994;0.0;-0.015947001 +5615;12;0.24548043;-0.055775438;-0.29429168;0.92196584 +5615;0;-0.138443;4.7652435;8.6839905 +5616;3;-0.17062378;0.0687561;0.050125122 +5616;0;-0.143219;4.73674;8.70784 +5617;1;-0.4135106;4.766292;8.56432 +5617;3;-0.17001343;0.07058716;0.051971436 +5618;5;999.6116 +5619;0;-0.12411499;4.73674;8.731674 +5620;12;0.24513641;-0.055549268;-0.29416272;0.92211217 +5620;3;-0.16879272;0.07241821;0.05441284 +5621;0;-0.15278625;4.717743;8.731674 +5622;1;-0.41488788;4.75929;8.568147 +5622;3;-0.16574097;0.07424927;0.0574646 +5624;4;-13.006592;-5.090332;-62.997437 +5624;6;0.5077834;-0.49530324;0.017496148 +5624;7;0.87773407;0.4278073;-0.2157867;0.0;-0.47890088;0.76881236;-0.4237708;0.0;-0.015392757 +5624;0;-0.15278625;4.703491;8.741211 +5625;12;0.24479204;-0.05531518;-0.29402164;0.92226267 +5625;3;-0.16390991;0.07424927;0.058685303 +5626;0;-0.143219;4.7224884;8.745987 +5626;1;-0.41626915;4.7525153;8.571839 +5627;2;-0.3077462;0.015091896;-0.13567829; +5627;3;-0.1614685;0.07424927;0.06173706 +5629;12;0.24446078;-0.055084225;-0.293868;0.9224133 +5630;0;-0.11456299;4.7082367;8.769836 +5630;3;-0.1590271;0.076690674;0.06417847 +5631;0;-0.13366699;4.684494;8.774612 +5631;1;-0.41756052;4.7459135;8.575434 +5632;3;-0.15657043;0.077301025;0.06661987 +5634;4;-11.657715;-4.4906616;-64.497375 +5634;6;0.4476203;-0.49032614;0.015232201 +5634;7;0.90447956;0.3818262;-0.19006692;0.0;-0.4263052;0.7952667;-0.43106234;0.0;-0.013437013 +5634;0;-0.08590698;4.660721;8.774612 +5634;3;-0.15534973;0.076690674;0.06967163 +5637;12;0.2441385;-0.054851502;-0.2936809;0.9225722 +5637;0;-0.095443726;4.646469;8.822296 +5637;1;-0.4187567;4.7394505;8.578949 +5637;3;-0.15229797;0.07852173;0.07273865 +5638;0;-0.08590698;4.65123;8.874756 +5639;12;0.24382147;-0.054627467;-0.293502;0.9227261 +5639;3;-0.14924622;0.0821991;0.07701111 +5641;0;-0.06201172;4.622711;8.855682 +5641;1;-0.41991898;4.73317;8.582358 +5641;3;-0.1461792;0.0834198;0.08067322 +5643;4;-12.406921;-6.890869;-62.997437 +5643;6;0.50938374;-0.48108622;0.007002364 +5643;7;0.8746039;0.43228877;-0.21953253;0.0;-0.4847985;0.7739483;-0.40739974;0.0;-0.006207494 +5643;0;-0.095443726;4.603714;8.865219 +5644;12;0.24351543;-0.054403793;-0.29330558;0.9228827 +5644;3;-0.14251709;0.085861206;0.08555603 +5645;0;-0.09068298;4.5847015;8.884293 +5645;1;-0.42109558;4.727128;8.58563 +5646;2;-0.36550942;0.084759235;-0.24568748; +5646;3;-0.13885498;0.08769226;0.08984375 +5648;0;-0.08590698;4.594223;8.846146 +5648;12;0.24322462;-0.054179195;-0.29308775;0.92304176 +5648;3;-0.13214111;0.09135437;0.09472656 +5650;0;-0.095443726;4.5989685;8.836609 +5650;1;-0.42226547;4.7214937;8.588673 +5650;3;-0.124816895;0.09562683;0.10021973 +5652;4;-12.406921;-5.8410645;-64.94751 +5652;6;0.4872569;-0.47984558;0.010800525 +5652;7;0.88590336;0.4153278;-0.20658666;0.0;-0.4637709;0.7838299;-0.41294947;0.0;-0.0095805945 +5653;0;-0.095443726;4.5989685;8.807983 +5653;3;-0.11747742;0.09989929;0.10450745 +5654;12;0.24295789;-0.053954873;-0.29284272;0.92320293 +5655;0;-0.08590698;4.603714;8.836609 +5655;1;-0.42354864;4.7164903;8.591358 +5655;3;-0.11074829;0.104782104;0.10939026 +5656;5;999.6116 +5663;0;-0.10499573;4.5752106;8.793686 +5664;12;0.24272716;-0.053729076;-0.29257146;0.92336273 +5664;3;-0.100982666;0.109680176;0.11488342 +5664;0;-0.11933899;4.5799713;8.803207 +5664;1;-0.42503002;4.7121286;8.5936775 +5664;3;-0.0942688;0.11212158;0.120391846 +5664;4;-11.657715;-4.79126;-63.29651 +5664;6;0.46595818;-0.47968766;0.013555477 +5664;7;0.8961199;0.398573;-0.19521418;0.0;-0.443649;0.79256254;-0.41835415;0.0;-0.012025227 +5664;0;-0.143219;4.560959;8.769836 +5664;3;-0.088150024;0.11517334;0.12464905 +5664;12;0.24253628;-0.053496677;-0.29227155;0.92352134 +5664;0;-0.12411499;4.5847015;8.731674 +5665;3;-0.08387756;0.11578369;0.12954712 +5665;1;-0.42656946;4.708415;8.595637 +5665;2;-0.36058092;0.12492466;-0.21166134; +5667;0;-0.16711426;4.603714;8.712601 +5667;12;0.24238442;-0.053266596;-0.29194286;0.92367846 +5667;3;-0.0783844;0.113342285;0.13442993 +5669;0;-0.147995;4.61322;8.693527 +5669;1;-0.42796534;4.7051997;8.597327 +5669;3;-0.07411194;0.11151123;0.13749695 +5672;4;-12.70752;-5.8410645;-64.94751 +5672;6;0.501779;-0.4878059;0.017021941 +5672;7;0.8804384;0.4248854;-0.21047722;0.0;-0.47392213;0.7744696;-0.41904017;0.0;-0.015035831 +5672;0;-0.138443;4.6179657;8.664902 +5673;3;-0.06982422;0.109680176;0.14175415 +5673;12;0.24225684;-0.0530476;-0.2915895;0.9238361 +5674;0;-0.138443;4.594223;8.6410675 +5675;1;-0.4290032;4.702406;8.598804 +5675;3;-0.068603516;0.10784912;0.14482117 +5677;12;0.24214733;-0.052849997;-0.2912215;0.9239922 +5680;0;-0.12411499;4.6749725;8.664902 +5680;3;-0.0637207;0.1035614;0.14970398 +5680;0;-0.138443;4.6797333;8.626755 +5680;3;-0.060668945;0.101119995;0.15214539 +5680;1;-0.42966044;4.699944;8.600118 +5685;9;2AEC2AEBC4E1;-66;-2147483648 +5687;4;-11.506653;-4.940796;-63.597107 +5687;6;0.45065436;-0.49698767;0.016046718 +5687;7;0.90337855;0.38286245;-0.19319288;0.0;-0.42861193;0.7912631;-0.43611285;0.0;-0.014104825 +5687;0;-0.13366699;4.6749725;8.593384 +5687;12;0.24204998;-0.052672528;-0.29083833;0.9241485 +5687;3;-0.056396484;0.09867859;0.15214539 +5687;0;-0.13366699;4.6892242;8.583832 +5687;3;-0.05393982;0.09501648;0.15397644 +5687;2;-0.3313878;0.058238506;-0.050682068; +5687;1;-0.42997384;4.697845;8.60125 +5687;0;-0.143219;4.6987305;8.54567 +5687;12;0.24196719;-0.052516636;-0.29044652;0.9243023 +5687;3;-0.04966736;0.09135437;0.15458679 +5689;0;-0.09068298;4.717743;8.564758 +5689;1;-0.4299452;4.696062;8.602224 +5689;3;-0.047225952;0.08830261;0.15519714 +5691;4;-12.5564575;-4.940796;-64.34631 +5691;6;0.46099168;-0.503458;0.010587526 +5691;7;0.8978339;0.38964093;-0.20512052;0.0;-0.4402368;0.7844838;-0.43677995;0.0;-0.0092736455 +5693;0;-0.095443726;4.73674;8.550446 +5694;3;-0.044174194;0.085250854;0.15704346 +5694;0;-0.09068298;4.7414856;8.521835 +5694;12;0.24189524;-0.05238335;-0.29004738;0.92445403 +5694;1;-0.42958018;4.694589;8.603046 +5694;3;-0.041732788;0.0834198;0.15397644 +5696;5;999.6124 +5696;0;-0.10978699;4.7700043;8.517059 +5696;12;0.24183524;-0.052271493;-0.28965157;0.9246001 +5697;3;-0.036834717;0.08157349;0.15397644 +5698;0;-0.06201172;4.803253;8.478897 +5698;1;-0.42908055;4.6934457;8.603695 +5699;3;-0.033798218;0.07852173;0.15336609 +5700;4;-12.107849;-7.1914673;-64.497375 +5700;6;0.45845693;-0.5154076;0.0073135234 +5700;7;0.8983078;0.38507214;-0.21157154;0.0;-0.43932056;0.78024316;-0.44521686;0.0;-0.0063633807 +5701;0;-0.07156372;4.8365173;8.483673 +5701;3;-0.028900146;0.07791138;0.15214539 +5701;12;0.24179068;-0.052175686;-0.28926122;0.92473936 +5703;0;-0.07635498;4.8365173;8.416901 +5703;1;-0.4284185;4.692703;8.604134 +5703;2;-0.3786137;-0.07123327;0.08998585; +5704;3;-0.027679443;0.07485962;0.14970398 +5705;0;-0.052444458;4.8365173;8.41214 +5706;12;0.24176377;-0.05209515;-0.28887472;0.9248718 +5706;3;-0.02218628;0.07241821;0.14787292 +5707;0;-0.047683716;4.8460083;8.407364 +5708;1;-0.42762735;4.6922445;8.604423 +5708;3;-0.019729614;0.06997681;0.14665222 +5710;4;-10.157776;-5.9906006;-64.64691 +5710;6;0.37087488;-0.5228791;0.0056716 +5710;7;0.9330221;0.31400472;-0.1757007;0.0;-0.35978544;0.8074799;-0.4674724;0.0;-0.0049137627 +5710;0;-0.06201172;4.874527;8.378754 +5710;3;-0.016693115;0.0663147;0.14482117 +5711;12;0.24175178;-0.052020453;-0.28846973;0.92500556 +5712;0;-0.019012451;4.8887787;8.354904 +5712;1;-0.42666477;4.6921177;8.60454 +5713;3;-0.014251709;0.06263733;0.14360046 +5715;0;7.6293945E-5;4.9125214;8.402588 +5715;12;0.24175127;-0.051971357;-0.28809935;0.9251239 +5715;3;-0.012420654;0.060195923;0.14297485 +5717;0;0.03352356;4.94104;8.35968 +5717;1;-0.4254104;4.692227;8.604542 +5717;3;-0.010574341;0.05897522;0.14237976 +5720;4;-12.5564575;-5.39093;-64.34631 +5720;6;0.41221842;-0.53381366;-0.004010127 +5720;7;0.9154095;0.34490266;-0.20752776;0.0;-0.4025093;0.7887614;-0.4645881;0.0;0.0034522004 +5720;0;0.023986816;4.960037;8.38829 +5720;3;-0.008132935;0.05836487;0.14297485 +5720;12;0.24175939;-0.051942717;-0.2877391;0.92523545 +5723;0;0.04307556;4.9362793;8.38829 +5723;1;-0.424036;4.6925154;8.604452 +5723;2;-0.45791382;-0.20401335;0.21406269; +5724;3;-0.009353638;0.057144165;0.14175415 +5724;0;0.052627563;5.0265503;8.38353 +5725;12;0.24177538;-0.051924;-0.28738084;0.9253437 +5725;3;-0.008132935;0.060195923;0.14237976 +5727;0;0.071746826;5.040802;8.378754 +5727;1;-0.422641;4.692913;8.604304 +5727;3;-0.009353638;0.062026978;0.14175415 +5730;4;-11.207581;-4.940796;-64.34631 +5730;6;0.35230604;-0.5415915;-0.008562738 +5730;7;0.937022;0.2956809;-0.18591039;0.0;-0.34919342;0.80425876;-0.48086575;0.0;0.0073372293 +5730;0;0.07652283;5.007553;8.369217 +5730;12;0.24179544;-0.05190503;-0.2870133;0.9254536 +5730;3;-0.011199951;0.064468384;0.14053345 +5732;0;0.10517883;5.040802;8.326294 +5732;1;-0.42141894;4.693258;8.604176 +5732;3;-0.013031006;0.0663147;0.13931274 +5733;5;999.6124 +5734;0;0.124298096;5.050308;8.35968 +5734;12;0.24181612;-0.051879946;-0.28665444;0.92556083 +5734;3;-0.014846802;0.0687561;0.13809204 +5736;0;0.124298096;5.097824;8.364441 +5736;1;-0.42038748;4.6934843;8.604103 +5737;3;-0.018508911;0.06997681;0.13504028 +5738;4;-11.357117;-5.8410645;-64.19678 +5738;6;0.34992275;-0.5473001;-0.014859206 +5738;7;0.93664473;0.29274964;-0.19233915;0.0;-0.35005102;0.8021836;-0.48370007;0.0;0.012688293 +5739;0;0.1290741;5.0835724;8.35968 +5739;3;-0.02279663;0.069366455;0.13504028 +5739;12;0.24183337;-0.05184256;-0.2862986;0.9256684 +5741;0;0.16729736;5.1263123;8.38829 +5741;1;-0.41949725;4.6934505;8.604165 +5742;2;-0.57144946;-0.36398077;0.23461342; +5742;3;-0.029510498;0.07058716;0.13198853 +5744;9;52ADB5BC186F;-77;-2147483648 +5745;0;0.1338501;5.1453247;8.402588 +5745;12;0.24183854;-0.05179544;-0.28595;0.9257775 +5745;3;-0.035614014;0.07241821;0.13198853 +5746;0;0.124298096;5.1595764;8.407364 +5746;1;-0.4187776;4.6929464;8.604475 +5746;3;-0.041732788;0.07424927;0.13076782 +5748;4;-11.357117;-5.5404663;-63.746643 +5748;6;0.3480436;-0.5503815;-0.0147833545 +5748;7;0.9373022;0.29069346;-0.19225526;0.0;-0.34829012;0.80122125;-0.486558;0.0;0.012599764 +5749;0;0.1290741;5.164322;8.46936 +5749;3;-0.04966736;0.076690674;0.12832642 +5749;12;0.24181964;-0.05173175;-0.2856048;0.92589253 +5751;0;0.1529541;5.1928253;8.450302 +5751;1;-0.41826466;4.6918797;8.6050825 +5751;3;-0.055160522;0.07791138;0.12832642 +5753;0;0.18640137;5.1833344;8.483673 +5754;12;0.2417737;-0.05165182;-0.28526568;0.9260136 +5754;3;-0.060668945;0.08035278;0.12893677 +5756;0;0.1529541;5.1833344;8.488449 +5756;1;-0.41788736;4.690309;8.605956 +5758;3;-0.06738281;0.0821991;0.13015747 +5758;4;-11.207581;-5.39093;-64.34631 +5758;6;0.3331829;-0.5481297;-0.018017137 +5758;7;0.94178236;0.27913958;-0.18742213;0.0;-0.3358713;0.80656344;-0.4864628;0.0;0.015376807 +5758;0;0.1481781;5.1690826;8.564758 +5758;3;-0.072891235;0.0846405;0.13137817 +5759;12;0.24170166;-0.05155377;-0.28493056;0.926141 +5760;0;0.1625061;5.173828;8.555222 +5760;1;-0.41766006;4.688187;8.607122 +5761;2;-0.61375695;-0.48278952;0.12670898; +5761;3;-0.08143616;0.08708191;0.13259888 +5763;0;0.1481781;5.15007;8.588608 +5763;12;0.2416031;-0.051438764;-0.2845898;0.92627794 +5764;3;-0.08753967;0.089523315;0.13381958 +5765;0;0.1625061;5.1595764;8.612442 +5765;1;-0.41758156;4.685443;8.608621 +5765;3;-0.09182739;0.09196472;0.13504028 +5767;4;-11.657715;-5.090332;-62.997437 +5767;6;0.35643923;-0.53966725;-0.018866522 +5767;7;0.93359584;0.29934812;-0.19695047;0.0;-0.3579621;0.8039579;-0.47488403;0.0;0.016184246 +5768;0;0.1386261;5.15007;8.602905 +5768;3;-0.09609985;0.093185425;0.13749695 +5768;12;0.24147464;-0.051303174;-0.28424007;0.92642623 +5770;0;0.119506836;5.1833344;8.6362915 +5770;1;-0.41764587;4.6823173;8.610318 +5770;3;-0.09915161;0.09623718;0.14115906 +5771;5;999.6124 +5772;0;0.119506836;5.173828;8.664902 +5772;12;0.24132818;-0.051152293;-0.28388527;0.9265815 +5773;3;-0.10159302;0.09867859;0.14297485 +5775;1;-0.41780522;4.6789036;8.612166 +5775;0;0.10517883;5.121567;8.650604 +5775;3;-0.10159302;0.09867859;0.14543152 +5777;4;-11.207581;-5.9906006;-64.64691 +5777;6;0.3581083;-0.534519;-0.012157954 +5777;7;0.9343215;0.30161282;-0.18992904;0.0;-0.35627782;0.8059241;-0.47281337;0.0;0.01046183 +5777;0;0.07652283;5.1358337;8.650604 +5778;3;-0.100982666;0.0993042;0.14848328 +5778;12;0.2411683;-0.05098723;-0.28351617;0.92674536 +5781;1;-0.4179486;4.6754518;8.614034 +5781;2;-0.58883727;-0.47634315;-0.022698402; +5782;0;0.10517883;5.1358337;8.669678 +5782;3;-0.100372314;0.096847534;0.15275574 +5782;0;0.08607483;5.173828;8.6792145 +5782;12;0.24100748;-0.050821446;-0.2831352;0.9269126 +5783;3;-0.09793091;0.09501648;0.15763855 +5785;1;-0.41777262;4.672107;8.615857 +5785;0;0.114746094;5.140564;8.717377 +5785;3;-0.0954895;0.09379578;0.16007996 +5787;4;-11.207581;-4.3411255;-63.597107 +5787;6;0.34744057;-0.5327675;-0.013162156 +5787;7;0.9378895;0.2933018;-0.18530297;0.0;-0.3467486;0.8099334;-0.47304675;0.0;0.0113376165 +5788;12;0.24084666;-0.050666302;-0.2827303;0.9270866 +5794;1;-0.4173443;4.668975;8.617576 +5794;12;0.24069561;-0.050525557;-0.2823186;0.9272589 +5795;0;0.08129883;5.15007;8.750748 +5795;3;-0.09182739;0.09196472;0.16436768 +5795;0;0.07652283;5.173828;8.774612 +5796;1;-0.41649982;4.6660767;8.619186 +5797;3;-0.09060669;0.08708191;0.16680908 +5797;0;0.04786682;5.1690826;8.774612 +5797;3;-0.08631897;0.0834198;0.17047119 +5797;0;0.04786682;5.1785736;8.774612 +5797;3;-0.0796051;0.07852173;0.17230225 +5797;4;-12.70752;-4.1915894;-63.29651 +5797;6;0.4080401;-0.5331588;-0.005455095 +5797;7;0.9167865;0.34173608;-0.20668595;0.0;-0.39935017;0.7905012;-0.46435702;0.0;0.0046979366 +5797;0;0.03831482;5.164322;8.793686 +5797;12;0.24055032;-0.050407767;-0.28189665;0.9274314 +5797;3;-0.076553345;0.07241821;0.17474365 +5799;0;0.10041809;5.1595764;8.812759 +5799;1;-0.4151203;4.663592;8.620597 +5799;2;-0.53975815;-0.5015545;-0.14091969; +5799;3;-0.072265625;0.065704346;0.1765747 +5801;0;0.04307556;5.1833344;8.84137 +5802;12;0.24041933;-0.050322793;-0.2814679;0.9276002 +5802;3;-0.06677246;0.061416626;0.17964172 +5804;1;-0.4131897;4.6614585;8.621843 +5804;0;0.03352356;5.173828;8.865219 +5804;3;-0.059448242;0.05836487;0.18147278 +5806;4;-11.207581;-4.6401978;-63.597107 +5806;6;0.3724727;-0.5282775;-0.0037814518 +5806;7;0.93073;0.3143089;-0.18695328;0.0;-0.36569244;0.80445457;-0.46810463;0.0;0.0032659436 +5811;0;0.028747559;5.2023315;8.884293 +5812;3;-0.052719116;0.054092407;0.18330383 +5812;12;0.24029931;-0.05026876;-0.28103036;0.92776686 +5812;0;0.023986816;5.2070923;8.855682 +5812;1;-0.4108802;4.659903;8.622794 +5812;3;-0.04600525;0.048599243;0.18513489 +5812;5;999.6124 +5812;0;0.028747559;5.2023315;8.874756 +5812;3;-0.039901733;0.046157837;0.18513489 +5812;12;0.24020466;-0.05024378;-0.2805908;0.92792565 +5813;0;0.03831482;5.1928253;8.884293 +5813;3;-0.031951904;0.04248047;0.18574524 +5814;1;-0.40813977;4.658883;8.623476 +5815;4;-11.207581;-4.6401978;-62.69684 +5816;6;0.3765965;-0.52893674;-0.0043126205 +5816;7;0.92911273;0.31750137;-0.18958493;0.0;-0.36977792;0.8028424;-0.4676627;0.0;0.0037232637 +5816;0;0.028747559;5.173828;8.884293 +5816;3;-0.025238037;0.03942871;0.18574524 +5816;12;0.24013132;-0.050248694;-0.28014877;0.928078 +5818;0;0.04307556;5.230835;8.889069 +5818;2;-0.49050322;-0.5395756;-0.24991417; +5818;1;-0.40512216;4.6584554;8.62385 +5818;3;-0.017913818;0.03515625;0.18452454 +5820;0;0.03831482;5.2450867;8.912918 +5821;12;0.24008764;-0.05027875;-0.279707;0.92822087 +5821;3;-0.010574341;0.03149414;0.18391418 +5823;0;0.04307556;5.2736053;8.936752 +5823;1;-0.4018043;4.6586456;8.623902 +5824;3;-0.0063171387;0.029647827;0.18208313 +5825;4;-11.357117;-5.8410645;-63.29651 +5825;6;0.3863934;-0.5331055;-0.004820009 +5825;7;0.9253403;0.32455578;-0.19598156;0.0;-0.37911478;0.7977379;-0.46892026;0.0;0.0041511348 +5825;0;0.057418823;5.2830963;8.951065 +5826;3;0.0046844482;0.025375366;0.18269348 +5826;12;0.24007145;-0.05033476;-0.27926672;0.9283547 +5828;1;-0.3982796;4.6593885;8.623664 +5828;0;0.071746826;5.264099;8.936752 +5828;3;0.009567261;0.022323608;0.18025208 +5830;0;0.028747559;5.2830963;8.917694 +5830;12;0.24008176;-0.05041179;-0.27883655;0.9284771 +5831;3;0.014465332;0.018661499;0.18147278 +5832;0;0.057418823;5.3068542;8.917694 +5832;1;-0.3945289;4.660688;8.623135 +5833;3;0.019958496;0.015609741;0.18147278 +5834;4;-12.857056;-4.3411255;-64.34631 +5834;6;0.40260583;-0.5367942;-0.006438663 +5835;7;0.9187339;0.33670902;-0.20628858;0.0;-0.39483836;0.7906413;-0.4679625;0.0;0.005533043 +5835;0;0.052627563;5.2688446;8.917694 +5835;3;0.027297974;0.008880615;0.17964172 +5836;12;0.24011695;-0.05051243;-0.2784121;0.9285899 +5837;0;0.08129883;5.2593536;8.936752 +5837;1;-0.39041933;4.6624265;8.622382 +5837;2;-0.4974949;-0.6137295;-0.30689907; +5838;3;0.030960083;0.0040130615;0.175354 +5839;0;0.057418823;5.264099;8.946289 +5840;12;0.24017021;-0.050638925;-0.27799168;0.92869514 +5840;3;0.035842896;-8.69751E-4;0.17352295 +5842;0;0.09085083;5.254593;8.965378 +5842;1;-0.3860009;4.664531;8.621442 +5845;12;0.24023776;-0.050792024;-0.2775893;0.9287897 +5846;3;0.035842896;-0.0057678223;0.1716919 +5846;4;-12.857056;-5.39093;-64.34631 +5846;6;0.41171494;-0.5301125;-0.010133173 +5846;7;0.91433847;0.34525666;-0.21161982;0.0;-0.40485635;0.79065514;-0.45929903;0.0;0.008742247 +5846;0;0.066970825;5.2498474;8.941528 +5846;3;0.035232544;-0.010040283;0.16925049 +5847;0;0.09562683;5.2688446;8.931976 +5847;1;-0.38127518;4.6667204;8.620467 +5847;3;0.0370636;-0.016159058;0.16741943 +5848;5;999.60736 +5849;0;0.124298096;5.2355957;8.946289 +5850;12;0.24030398;-0.05096707;-0.277201;0.92887884 +5850;3;0.0370636;-0.021652222;0.16314697 +5851;0;0.1338501;5.2260895;8.936752 +5852;1;-0.37615696;4.6689286;8.619496 +5852;3;0.036453247;-0.026535034;0.16192627 +5854;4;-12.107849;-5.090332;-64.19678 +5854;6;0.3776174;-0.52910894;-0.014976368 +5854;7;0.9266544;0.31828877;-0.20000984;0.0;-0.37569207;0.80243707;-0.46362725;0.0;0.012927975 +5854;0;0.124298096;5.2070923;8.979691 +5858;3;0.03401184;-0.0320282;0.15885925 +5858;12;0.24036424;-0.05116471;-0.2768304;0.92896295 +5859;0;0.1434021;5.2070923;8.994003 +5859;1;-0.3707199;4.670998;8.618611 +5859;2;-0.5300329;-0.5720844;-0.337018; +5859;3;0.03340149;-0.039367676;0.15519714 +5860;0;0.08129883;5.297348;9.027374 +5860;3;0.031570435;-0.046691895;0.15336609 +5860;12;0.24041459;-0.051380105;-0.2764771;0.92904323 +5861;17;1;38dead6d7725;4266;1515;-63; +5862;17;1;38dead6d60ff;597;668;-56; +5863;17;0;1c1bb5efa29a;0;0;0; +5864;17;1;1c1bb5ecd182;10086;1105;-65; +5864;1;-0.36489347;4.6729655;8.617793 +5864;0;0.1290741;5.254593;9.075058 +5864;3;0.023010254;-0.05708313;0.15031433 +5864;4;-11.357117;-4.79126;-64.19678 +5864;6;0.35585958;-0.5248024;-0.014221991 +5864;7;0.93477005;0.3015101;-0.18787399;0.0;-0.3550401;0.81120193;-0.4646482;0.0;0.0123076225 +5864;0;0.1481781;5.1928253;9.079834 +5864;3;0.018127441;-0.063186646;0.14787292 +5865;12;0.24044693;-0.051619682;-0.27614108;0.92912155 +5866;0;0.1816101;5.1785736;9.065521 +5866;1;-0.35841182;4.674332;8.617325 +5867;3;0.014465332;-0.06562805;0.14665222 +5868;0;0.21028137;5.1453247;9.065521 +5869;12;0.24043812;-0.051889766;-0.27583203;0.9292006 +5869;3;0.015075684;-0.06990051;0.14543152 +5870;0;0.24848938;5.164322;9.146606 +5871;1;-0.35161355;4.675402;8.617023 +5871;3;0.015075684;-0.071746826;0.14115906 +5873;4;-11.657715;-4.4906616;-63.746643 +5873;6;0.34550357;-0.51383764;-0.027160706 +5873;7;0.93603724;0.29493618;-0.19195542;0.0;-0.35110524;0.8194009;-0.4531084;0.0;0.02365039 +5874;0;0.21028137;5.1833344;9.179993 +5874;3;0.015686035;-0.07052612;0.13626099 +5874;12;0.2404091;-0.052171987;-0.27553472;0.9292805 +5876;1;-0.34484804;4.676467;8.616718 +5876;0;0.25328064;5.211838;9.232452 +5876;2;-0.5840411;-0.5314727;-0.49238014; +5876;3;0.01751709;-0.06562805;0.13076782 +5878;0;0.27716064;5.2070923;9.246765 +5878;12;0.24037924;-0.052459273;-0.27525517;0.9293549 +5878;3;0.023010254;-0.060134888;0.12464905 +5880;0;0.26283264;5.1928253;9.251541 +5881;1;-0.33863273;4.6776896;8.616302 +5881;3;0.026062012;-0.055252075;0.11671448 +5883;4;-12.5564575;-4.940796;-64.64691 +5883;6;0.37173864;-0.51129997;-0.028401967 +5883;7;0.9262742;0.31678137;-0.20412225;0.0;-0.37603584;0.8125418;-0.445391;0.0;0.024766287 +5884;0;0.26283264;5.1690826;9.275375 +5884;3;0.035232544;-0.0491333;0.11122131 +5884;12;0.24036512;-0.05272359;-0.27499372;0.929421 +5885;0;0.25805664;5.173828;9.242004 +5885;1;-0.33318385;4.6792827;8.615649 +5885;3;0.043777466;-0.043640137;0.103881836 +5887;5;999.60736 +5887;0;0.26283264;5.2165833;9.294464 +5888;12;0.24038337;-0.052963037;-0.27475673;0.92947274 +5888;3;0.052947998;-0.039367676;0.09716797 +5890;0;0.24848938;5.230835;9.304001 +5890;1;-0.32849073;4.6816063;8.614567 +5890;3;0.06271362;-0.0332489;0.09288025 +5892;4;-11.956787;-4.3411255;-63.146973 +5892;6;0.35971576;-0.5120196;-0.02670145 +5892;7;0.9310589;0.3068656;-0.19739053;0.0;-0.36412615;0.81596184;-0.44901976;0.0;0.023274409 +5892;0;0.23416138;5.264099;9.346909 +5892;3;0.07371521;-0.027145386;0.08618164 +5893;12;0.24045105;-0.053181373;-0.27454153;0.9295063 +5894;0;0.22460938;5.278351;9.323074 +5895;1;-0.32452574;4.6847677;8.612999 +5895;2;-0.6365436;-0.5365391;-0.67234325; +5895;3;0.08166504;-0.01675415;0.08128357 +5897;0;0.20550537;5.3733673;9.299225 +5898;12;0.240577;-0.053381708;-0.27434057;0.92952156 +5898;3;0.09265137;-0.006378174;0.0745697 +5900;0;0.1720581;5.378128;9.280151 +5900;1;-0.32166207;4.6887836;8.610921 +5900;3;0.10121155;0.005844116;0.070892334 +5902;4;-12.5564575;-4.6401978;-64.34631 +5902;6;0.38108397;-0.52515763;-0.018538317 +5902;7;0.92464596;0.32180786;-0.20364071;0.0;-0.38048992;0.803174;-0.45840913;0.0;0.016039265 +5902;0;0.1625061;5.4351196;9.280151 +5903;3;0.111587524;0.015609741;0.067230225 +5903;12;0.2407634;-0.053543296;-0.2741522;0.9295196 +5904;0;0.114746094;5.4921417;9.256302 +5905;1;-0.31997734;4.69366;8.608326 +5905;3;0.11769104;0.025375366;0.063568115 +5908;0;0.066970825;5.5158997;9.275375 +5908;3;0.12319946;0.0357666;0.06112671 +5908;12;0.24101429;-0.053660154;-0.2739705;0.9295014 +5909;0;0.04307556;5.577652;9.284912 +5910;1;-0.31935957;4.6991625;8.605347 +5910;3;0.12747192;0.044311523;0.05807495 +5913;4;-12.107849;-6.440735;-63.746643 +5913;6;0.40790457;-0.54094553;-0.004639274 +5913;7;0.9169965;0.34004858;-0.20852894;0.0;-0.39887536;0.7868905;-0.47085202;0.0;0.003976874 +5913;0;0.014419556;5.6299133;9.261063 +5913;3;0.12930298;0.05104065;0.056243896 +5914;12;0.24131545;-0.053735845;-0.27379096;0.9294718 +5915;0;-0.033355713;5.6821747;9.294464 +5915;2;-0.47223267;-0.81116915;-0.67613506; +5915;1;-0.31963658;4.705071;8.602108 +5915;3;0.13052368;0.060195923;0.05256653 +5917;0;-0.047683716;5.691696;9.256302 +5917;12;0.24165066;-0.053772826;-0.27361265;0.9294351 +5917;3;0.12991333;0.06814575;0.051971436 +5920;0;-0.100234985;5.7486877;9.227692 +5921;1;-0.32077447;4.71111;8.598759 +5921;3;0.13052368;0.07424927;0.04890442 +5923;4;-12.857056;-4.6401978;-64.34631 +5923;6;0.42427835;-0.55712056;0.010861984 +5923;7;0.9136465;0.34941202;-0.20775308;0.0;-0.40640515;0.77352494;-0.48630682;0.0;-0.009219267 +5923;0;-0.17666626;5.7962036;9.222916 +5923;3;0.12686157;0.077301025;0.047683716 +5924;12;0.24200793;-0.053767238;-0.27343503;0.9293947 +5925;1;-0.32260874;4.7171535;8.595376 +5925;0;-0.20054626;5.80571;9.208603 +5925;3;0.12257385;0.07974243;0.04585266 +5926;5;999.60736 +5927;0;-0.26742554;5.834198;9.208603 +5927;3;0.115875244;0.08157349;0.044631958 +5927;12;0.24237353;-0.053728335;-0.273262;0.92935264 +5929;1;-0.32481825;4.722819;8.592181 +5929;0;-0.30085754;5.829468;9.21814 +5929;3;0.10914612;0.0834198;0.044021606 +5932;4;-12.107849;-4.79126;-63.29651 +5932;6;0.44717446;-0.56365603;0.032625973 +5932;7;0.908729;0.36552745;-0.20149754;0.0;-0.4164748;0.76219046;-0.49559504;0.0;-0.027574085 +5932;0;-0.3152008;5.8674774;9.213379 +5932;3;0.099990845;0.0834198;0.0415802 +5932;12;0.24272336;-0.053666867;-0.27309498;0.9293139 +5934;0;-0.40119934;5.872223;9.256302 +5934;2;-0.16069663;-1.0851398;-0.6356411; +5934;1;-0.327276;4.72789;8.589299 +5934;3;0.09082031;0.0834198;0.039749146 +5936;12;0.24304463;-0.05358329;-0.2729349;0.92928183 +5936;0;-0.41073608;5.9292297;9.280151 +5936;3;0.08288574;0.08157349;0.03791809 +5939;1;-0.32986134;4.732232;8.586809 +5939;0;-0.44895935;5.881729;9.246765 +5939;3;0.07371521;0.07852173;0.038528442 +5941;4;-11.357117;-6.1401367;-62.997437 +5941;6;0.47115588;-0.5659979;0.048515026 +5941;7;0.90180045;0.38313;-0.19991803;0.0;-0.4302096;0.7520893;-0.49928078;0.0;-0.040933236 +5942;0;-0.5158386;5.8769684;9.280151 +5942;3;0.06210327;0.07424927;0.03730774 +5943;12;0.24332641;-0.05348295;-0.27278554;0.9292577 +5944;0;-0.5253906;5.848465;9.323074 +5944;3;0.05050659;0.07180786;0.03730774 +5946;1;-0.33231452;4.7357287;8.584785 +5946;12;0.24355909;-0.05337957;-0.2726473;0.92924327 +5947;0;-0.5636139;5.829468;9.323074 +5947;3;0.042556763;0.06814575;0.038528442 +5951;1;-0.33456966;4.738312;8.583273 +5951;12;0.24373922;-0.053272422;-0.27251655;0.9292406 +5951;0;-0.59706116;5.834198;9.294464 +5951;3;0.031570435;0.06324768;0.039749146 +5951;4;-11.056519;-5.090332;-63.746643 +5951;6;0.4794723;-0.5596167;0.06415022 +5951;7;0.9011126;0.39094204;-0.18751095;0.0;-0.43016806;0.75189793;-0.49960476;0.0;-0.05432738 +5951;0;-0.6257019;5.7772064;9.356461 +5951;3;0.02178955;0.05958557;0.039138794 +5952;0;-0.62094116;5.758194;9.346909 +5953;3;0.010787964;0.05470276;0.04096985 +5953;1;-0.33648375;4.7400002;8.582266 +5953;2;0.14298928;-1.110774;-0.721756; +5955;0;-0.62094116;5.7059326;9.385086 +5955;12;0.24386479;-0.0531705;-0.27239043;0.9292505 +5955;3;0.0046844482;0.048599243;0.042800903 +5961;0;-0.62094116;5.644165;9.418457 +5961;1;-0.3379359;4.740806;8.581763 +5961;3;-0.002029419;0.041870117;0.044021606 +5961;4;-10.757446;-4.79126;-62.547302 +5961;6;0.49426255;-0.5389242;0.065832846 +5961;7;0.89442796;0.4071442;-0.18501988;0.0;-0.44363374;0.7555435;-0.48201978;0.0;-0.056460977 +5961;0;-0.6113739;5.5966644;9.4375305 +5961;3;-0.009353638;0.03515625;0.047073364 +5961;12;0.24393485;-0.053075533;-0.27225924;0.929276 +5963;17;1;38dead6d7725;2681;4580;-62; +5964;17;1;38dead6d60ff;180;2201;-61; +5964;17;0;1c1bb5efa29a;0;0;0; +5965;17;1;1c1bb5ecd182;9510;2048;-64; +5965;1;-0.3387586;4.740948;8.581653 +5965;0;-0.6161499;5.5539093;9.4852295 +5966;3;-0.014846802;0.027832031;0.048294067 +5966;0;-0.59706116;5.5063934;9.499542 +5966;3;-0.017913818;0.021102905;0.051971436 +5966;5;999.60736 +5966;12;0.24395937;-0.053003836;-0.27213714;0.92930937 +5967;1;-0.3388732;4.74055;8.581868 +5967;0;-0.5874939;5.4351196;9.513855 +5967;3;-0.019134521;0.013763428;0.05319214 +5969;4;-12.257385;-7.0404053;-63.146973 +5969;6;0.5778568;-0.5182184;0.061673094 +5969;7;0.85271883;0.47451168;-0.21842466;0.0;-0.51961905;0.72765636;-0.44778615;0.0;-0.05354165 +5970;0;-0.5301666;5.4161377;9.552002 +5970;3;-0.019729614;0.006439209;0.05441284 +5970;12;0.24394375;-0.05296058;-0.27201584;0.92935145 +5971;0;-0.5445099;5.3496094;9.566299 +5971;1;-0.33824492;4.739922;8.58224 +5972;2;0.19450092;-0.79548216;-0.8973236; +5972;3;-0.018508911;-0.002090454;0.05807495 +5974;0;-0.5253906;5.2498474;9.561539 +5974;12;0.24390396;-0.05294845;-0.27189392;0.92939824 +5974;3;-0.016693115;-0.0082092285;0.060516357 +5976;0;-0.47283936;5.2498474;9.561539 +5976;1;-0.3368309;4.7392645;8.582659 +5978;3;-0.011199951;-0.0149383545;0.062347412 +5980;4;-12.70752;-6.1401367;-64.19678 +5980;6;0.5628017;-0.5016053;0.04941197 +5980;7;0.85740286;0.46782985;-0.21446565;0.0;-0.5128204;0.7415755;-0.43252864;0.0;-0.04330737 +5980;0;-0.45851135;5.1833344;9.556763 +5980;3;-0.0056915283;-0.022262573;0.062347412 +5980;12;0.24385306;-0.052977085;-0.2717681;0.9294467 +5981;1;-0.3347464;4.738897;8.582943 +5984;12;0.24380645;-0.053043243;-0.27164295;0.9294919 +5985;0;-0.44895935;5.1263123;9.599686 +5985;3;-1.9836426E-4;-0.027145386;0.06539917 +5985;0;-0.4202881;5.0883026;9.618759 +5985;3;0.006515503;-0.0320282;0.06661987 +5986;0;-0.41073608;5.040802;9.561539 +5986;1;-0.33208722;4.7389245;8.583031 +5986;3;0.0138549805;-0.038146973;0.067230225 +5988;4;-11.657715;-4.4906616;-64.19678 +5988;6;0.5110708;-0.48478654;0.04293072 +5988;7;0.8812;0.43275335;-0.19029191;0.0;-0.47121608;0.77171916;-0.42708904;0.0;-0.03797234 +5988;0;-0.37252808;4.98378;9.590164 +5988;3;0.0211792;-0.043640137;0.06539917 +5989;12;0.24377362;-0.053144507;-0.27151433;0.9295322 +5990;0;-0.3104248;4.950531;9.571075 +5990;1;-0.32887563;4.739459;8.582859 +5991;2;0.040530056;-0.37853098;-0.99227047; +5991;3;0.027893066;-0.0491333;0.067855835 +5993;0;-0.3295288;4.8982697;9.585388 +5993;12;0.24375993;-0.053282928;-0.27138928;0.9295644 +5993;3;0.035842896;-0.05218506;0.06907654 +5995;0;-0.27697754;4.86026;9.566299 +5995;1;-0.32517508;4.740506;8.582422 +5995;3;0.044387817;-0.05708313;0.07029724 +5997;4;-10.757446;-5.090332;-64.19678 +5998;6;0.47741762;-0.46990615;0.028945383 +5998;7;0.8938339;0.40968364;-0.18226454;0.0;-0.4476552;0.7919149;-0.41530195;0.0;-0.025804412 +5998;0;-0.30085754;4.827011;9.54245 +5998;3;0.05050659;-0.058914185;0.071517944 +5999;12;0.24376836;-0.05345109;-0.2712518;0.92959267 +6000;0;-0.26264954;4.803253;9.523392 +6000;1;-0.3210734;4.7421694;8.581657 +6000;3;0.0541687;-0.063186646;0.070892334 +6004;0;-0.24354553;4.7794952;9.499542 +6004;12;0.243804;-0.053652633;-0.2711215;0.9296097 +6004;3;0.05783081;-0.06440735;0.071517944 +6005;5;999.60736 +6005;0;-0.21966553;4.7082367;9.499542 +6005;1;-0.31669924;4.744117;8.580745 +6005;3;0.06515503;-0.06990051;0.070892334 +6007;4;-11.956787;-4.6401978;-63.89618 +6007;6;0.5087657;-0.46003732;0.023119682 +6007;7;0.87811255;0.43645877;-0.19601578;0.0;-0.4780056;0.78254974;-0.39890668;0.0;-0.02071422 +6008;0;-0.18621826;4.6987305;9.4804535 +6008;3;0.068222046;-0.07357788;0.07029724 +6008;12;0.24384972;-0.053872876;-0.27099332;0.92962235 +6010;0;-0.18621826;4.622711;9.504303 +6010;1;-0.31196418;4.746424;8.579641 +6010;2;-0.11953139;-0.03601122;-0.9435892; +6010;3;0.06944275;-0.07601929;0.06845093 +6012;0;-0.15278625;4.5799713;9.4804535 +6013;12;0.24390833;-0.05411741;-0.27086982;0.92962873 +6013;3;0.07249451;-0.07846069;0.06907654 +6015;0;-0.12411499;4.5419617;9.499542 +6015;1;-0.30699506;4.748807;8.578502 +6015;3;0.07249451;-0.07601929;0.06539917 +6017;4;-11.357117;-6.1401367;-62.097168 +6017;6;0.5214774;-0.44596115;0.013064622 +6017;7;0.8698172;0.44943973;-0.20352355;0.0;-0.4932332;0.7822802;-0.38047144;0.0;-0.011786521 +6017;0;-0.13366699;4.5181885;9.494766 +6017;3;0.076156616;-0.07601929;0.06661987 +6018;12;0.24396876;-0.054376297;-0.27075115;0.9296324 +6019;0;-0.147995;4.4897003;9.451843 +6019;1;-0.3021483;4.7512712;8.57731 +6020;3;0.07737732;-0.07723999;0.067230225 +6022;0;-0.12890625;4.44693;9.46138 +6022;12;0.24403553;-0.054631885;-0.27063954;0.92963237 +6023;3;0.07676697;-0.074798584;0.06539917 +6024;0;-0.138443;4.4089203;9.423233 +6025;1;-0.29729235;4.7537847;8.576086 +6025;3;0.079208374;-0.07052612;0.06478882 +6026;4;-11.056519;-4.79126;-62.097168 +6026;6;0.50008345;-0.43757972;0.01469061 +6027;7;0.8804328;0.43432036;-0.19027378;0.0;-0.47398442;0.7948605;-0.3788611;0.0;-0.01330598 +6027;0;-0.12890625;4.356659;9.418457 +6027;3;0.080444336;-0.06806946;0.06478882 +6028;12;0.24410462;-0.05488827;-0.27052718;0.9296318 +6029;0;-0.16711426;4.375656;9.427994 +6029;1;-0.29277143;4.756353;8.574818 +6029;2;-0.21125439;0.2858143;-0.8813791; +6030;3;0.08226013;-0.063797;0.06600952 +6031;0;-0.16233826;4.3281555;9.370773 +6032;12;0.24418375;-0.05512812;-0.2704146;0.9296297 +6032;3;0.08592224;-0.05647278;0.067230225 +6034;0;-0.171875;4.2711487;9.342148 +6034;1;-0.28859037;4.7590804;8.573446 +6034;3;0.08532715;-0.050354004;0.06661987 +6036;4;-11.657715;-5.090332;-62.097168 +6036;6;0.5453606;-0.42875412;0.01839573 +6036;7;0.8587625;0.47177362;-0.19989145;0.0;-0.5121007;0.7775549;-0.36491287;0.0;-0.016729686 +6037;0;-0.18144226;4.199875;9.337372 +6037;3;0.0871582;-0.04425049;0.06967163 +6037;12;0.24427442;-0.055349655;-0.27028924;0.929629 +6039;0;-0.19577026;4.1571198;9.337372 +6039;1;-0.28495938;4.7617593;8.57208 +6039;3;0.0871582;-0.038757324;0.070892334 +6041;0;-0.22921753;4.1048584;9.313538 +6042;3;0.0871582;-0.03263855;0.07211304 +6042;12;0.24437225;-0.055540167;-0.2701572;0.92963046 +6043;5;999.61456 +6044;0;-0.25787354;4.090622;9.242004 +6044;1;-0.28180233;4.7644205;8.570705 +6047;3;0.0871582;-0.025924683;0.07395935 +6047;4;-12.70752;-5.5404663;-62.997437 +6047;6;0.61965084;-0.41654912;0.0278951 +6047;7;0.8203184;0.5310913;-0.21217857;0.0;-0.571338;0.7444697;-0.3454529;0.0;-0.0255065 +6047;0;-0.27697754;4.0716095;9.160919 +6047;3;0.08532715;-0.023483276;0.07395935 +6047;12;0.24448022;-0.05570377;-0.27001157;0.9296346 +6048;1;-0.27909374;4.7670817;8.569314 +6048;0;-0.2817688;4.0811005;9.117996 +6049;2;-0.11828631;0.60071564;-0.7087345; +6049;3;0.08532715;-0.020431519;0.07640076 +6051;0;-0.28652954;4.0383606;9.089371 +6051;12;0.24459432;-0.055842675;-0.26985437;0.92964184 +6051;3;0.08288574;-0.01675415;0.07701111 +6053;0;-0.29130554;4.0336;9.0607605 +6053;1;-0.2765901;4.769643;8.56797 +6054;3;0.08166504;-0.015533447;0.079452515 +6057;4;-12.406921;-6.1401367;-63.746643 +6057;6;0.6225873;-0.41864008;0.03213916 +6057;7;0.8195704;0.5327806;-0.21082978;0.0;-0.5722258;0.742218;-0.34881213;0.0;-0.02935865 +6057;0;-0.3295288;3.962326;9.041687 +6057;3;0.079818726;-0.013092041;0.080062866 +6057;12;0.2447055;-0.055965386;-0.2696874;0.9296536 +6063;0;-0.3152008;3.952835;9.003525 +6063;1;-0.27424145;4.772009;8.566729 +6063;3;0.07798767;-0.011871338;0.07701111 +6064;12;0.2448099;-0.056075417;-0.2695134;0.92967004 +6064;0;-0.37252808;3.9100647;8.970154 +6064;3;0.07798767;-0.011260986;0.07762146 +6064;1;-0.27213308;4.7741957;8.5655775 +6067;17;1;38dead6d7725;2392;848;-61; +6067;17;1;38dead6d60ff;4354;405;-60; +6068;17;1;1c1bb5efa29a;10980;814;-79; +6068;17;1;1c1bb5ecd182;7674;4135;-66; +6068;12;0.24490649;-0.056173213;-0.2693443;0.9296877 +6071;0;-0.37252808;3.8388062;8.946289 +6071;3;0.075546265;-0.013092041;0.07701111 +6071;4;-12.406921;-5.8410645;-62.547302 +6071;6;0.66689074;-0.4050201;0.041616473 +6071;7;0.79520863;0.5685021;-0.21082842;0.0;-0.605129;0.7221773;-0.33508042;0.0;-0.038238432 +6071;0;-0.35820007;3.8245544;8.898605 +6071;3;0.075546265;-0.013092041;0.075790405 +6071;0;-0.4298401;3.8150635;8.860458 +6071;1;-0.2700177;4.7762547;8.564496 +6071;2;0.015919358;0.8537903;-0.42111874; +6071;3;0.076156616;-0.013702393;0.07518005 +6071;0;-0.40119934;3.7817993;8.846146 +6072;12;0.24499738;-0.056268737;-0.26917934;0.9297057 +6072;3;0.07371521;-0.0149383545;0.07333374 +6072;0;-0.44895935;3.772293;8.807983 +6072;1;-0.26794735;4.7782607;8.563442 +6073;3;0.071884155;-0.0149383545;0.07333374 +6076;4;-11.506653;-5.6915283;-62.69684 +6076;6;0.6538603;-0.40417716;0.050927788 +6076;7;0.8048895;0.55924565;-0.19848761;0.0;-0.59157616;0.729787;-0.34270772;0.0;-0.046804108 +6076;0;-0.42507935;3.7437897;8.822296 +6076;3;0.07310486;-0.01737976;0.07211304 +6076;12;0.24508551;-0.05636249;-0.26901746;0.9297236 +6077;1;-0.2658485;4.7801323;8.562463 +6077;0;-0.43463135;3.729538;8.774612 +6077;3;0.0712738;-0.017974854;0.07211304 +6080;0;-0.47283936;3.6915283;8.741211 +6080;12;0.24516596;-0.05645683;-0.2688639;0.9297411 +6080;3;0.071884155;-0.02104187;0.070892334 +6080;5;999.61456 +6083;0;-0.47763062;3.6440125;8.722153 +6083;1;-0.26370797;4.7819157;8.561533 +6083;3;0.07432556;-0.022262573;0.06967163 +6085;4;-12.406921;-4.79126;-63.29651 +6085;6;0.6787424;-0.3952141;0.054705992 +6085;7;0.7904149;0.579419;-0.19879079;0.0;-0.6104896;0.7183621;-0.333554;0.0;-0.050463755 +6086;12;0.2452388;-0.056553487;-0.26871616;0.9297588 +6086;0;-0.5015106;3.606018;8.731674 +6086;3;0.076156616;-0.024093628;0.07029724 +6088;1;-0.26149744;4.7837753;8.560562 +6088;2;0.13929194;1.0931149;-0.2079401; +6088;0;-0.5062866;3.5774994;8.674438 +6089;3;0.07859802;-0.027755737;0.070892334 +6090;12;0.24531513;-0.056656655;-0.2685742;0.9297733 +6090;0;-0.5301666;3.5347595;8.688751 +6090;3;0.08470154;-0.02897644;0.070892334 +6092;0;-0.49671936;3.548996;8.65538 +6092;1;-0.2590726;4.7858534;8.559475 +6092;3;0.09082031;-0.030197144;0.06967163 +6094;4;-13.456726;-5.8410645;-65.69672 +6094;6;0.73175794;-0.38854918;0.05732563 +6094;7;0.7572821;0.6183723;-0.21009408;0.0;-0.65093184;0.68854284;-0.31968167;0.0;-0.053023506 +6094;0;-0.5015106;3.5347595;8.602905 +6095;3;0.09509277;-0.02897644;0.07029724 +6095;12;0.24540235;-0.05677681;-0.26843148;0.9297842 +6096;0;-0.49195862;3.5347595;8.612442 +6096;1;-0.2566023;4.7884116;8.558118 +6096;3;0.10243225;-0.02897644;0.07273865 +6099;0;-0.48718262;3.4919891;8.621979 +6100;12;0.24551234;-0.056906544;-0.26829067;0.9297879 +6100;3;0.11097717;-0.030807495;0.07518005 +6101;1;-0.25401402;4.7914624;8.556487 +6102;0;-0.47763062;3.4444885;8.583832 +6102;3;0.12013245;-0.027145386;0.07701111 +6104;4;-12.257385;-5.9906006;-62.69684 +6104;6;0.7328367;-0.38107228;0.05558573 +6104;7;0.7559545;0.6209924;-0.20712596;0.0;-0.6525896;0.68996155;-0.31317732;0.0;-0.051571805 +6105;0;-0.48718262;3.4112244;8.536133 +6105;3;0.12869263;-0.026535034;0.079452515 +6105;12;0.24564825;-0.057047;-0.2681396;0.9297869 +6106;0;-0.47283936;3.449234;8.450302 +6106;1;-0.2514604;4.7952447;8.554444 +6111;2;0.18494731;1.3076553;-0.04484749; +6112;3;0.13786316;-0.023483276;0.08128357 +6112;12;0.24582905;-0.057196897;-0.26797414;0.9297776 +6112;0;-0.44418335;3.4682465;8.44075 +6112;3;0.14945984;-0.021652222;0.08189392 +6112;0;-0.4202881;3.4777374;8.421677 +6112;1;-0.24892446;4.7999244;8.551892 +6112;3;0.15985107;-0.018600464;0.08618164 +6113;4;-12.5564575;-6.2911987;-63.146973 +6113;6;0.7170988;-0.39118212;0.049864143 +6113;7;0.7652685;0.60755515;-0.21269922;0.0;-0.64206;0.6967792;-0.3197778;0.0;-0.046078254 +6114;0;-0.42507935;3.5062408;8.364441 +6114;3;0.16900635;-0.016159058;0.08799744 +6114;12;0.24605927;-0.057355553;-0.2677932;0.92975914 +6115;0;-0.44895935;3.5014954;8.35968 +6116;1;-0.24650401;4.805482;8.548841 +6116;3;0.17817688;-0.010650635;0.09350586 +6118;0;-0.41552734;3.5014954;8.335815 +6118;12;0.24633795;-0.0575177;-0.26759622;0.929732 +6118;3;0.1879425;-0.004547119;0.09655762 +6118;5;999.61456 +6120;0;-0.41073608;3.4824982;8.302444 +6120;1;-0.24427125;4.811807;8.545347 +6120;3;0.19406128;0.0015716553;0.10328674 +6123;4;-12.5564575;-4.6401978;-64.34631 +6123;6;0.6586156;-0.3967285;0.049431402 +6124;7;0.80155945;0.56448686;-0.19712205;0.0;-0.5961758;0.72941583;-0.3354506;0.0;-0.045573507 +6124;0;-0.41552734;3.5394897;8.249985 +6124;3;0.19772339;0.005844116;0.10694885 +6124;12;0.24666496;-0.057676192;-0.26737273;0.9296998 +6125;0;-0.4298401;3.5205078;8.235672 +6125;3;0.20077515;0.009506226;0.11366272 +6125;1;-0.24228539;4.818735;8.541498 +6125;2;0.12807044;1.3284769;0.19558334; +6128;0;-0.4202881;3.591751;8.1689 +6128;12;0.24703085;-0.0578238;-0.26711816;0.92966664 +6129;3;0.20443726;0.011947632;0.119766235 +6130;0;-0.42507935;3.5870209;8.102127 +6130;1;-0.24032219;4.826059;8.537418 +6130;3;0.20565796;0.01499939;0.12527466 +6134;4;-13.006592;-5.5404663;-61.346436 +6134;6;0.6950994;-0.41627976;0.052417096 +6135;7;0.7805039;0.58576614;-0.21838452;0.0;-0.6233118;0.7024034;-0.3436743;0.0;-0.047918707 +6135;1;-0.23836644;4.833645;8.533181 +6135;12;0.24742047;-0.057967696;-0.26683182;0.9296363 +6135;0;-0.43463135;3.6250305;8.068741 +6136;3;0.20748901;0.016830444;0.12832642 +6136;0;-0.44895935;3.6677704;8.049683 +6136;3;0.20443726;0.018661499;0.13381958 +6137;12;0.24782579;-0.05810763;-0.26652002;0.92960906 +6137;0;-0.47283936;3.663025;8.030594 +6138;3;0.2038269;0.01927185;0.14053345 +6139;0;-0.48239136;3.70578;8.030594 +6139;1;-0.2363452;4.841185;8.528961 +6140;3;0.19772339;0.02293396;0.14482117 +6142;4;-12.70752;-5.8410645;-64.19678 +6142;6;0.66268724;-0.4316565;0.05999711 +6142;7;0.8023574;0.55880415;-0.20966758;0.0;-0.59435385;0.71603024;-0.3661201;0.0;-0.05446112 +6142;0;-0.5015106;3.7580414;7.9638214 +6142;3;0.19345093;0.02720642;0.15092468 +6143;12;0.24823152;-0.058244437;-0.26618376;0.9295886 +6144;0;-0.5445099;3.8293152;7.892288 +6144;1;-0.2343912;4.848552;8.524829 +6144;2;0.17702407;1.1820278;0.47799397; +6145;3;0.1879425;0.027832031;0.15519714 +6146;0;-0.55882263;3.8578186;7.8731995 +6147;12;0.24863146;-0.058366876;-0.26582146;0.9295777 +6147;3;0.18000793;0.029052734;0.16070557 +6148;0;-0.5779419;3.933838;7.8684235 +6149;1;-0.23240344;4.855589;8.520878 +6149;3;0.17390442;0.030273438;0.16558838 +6151;4;-12.107849;-6.1401367;-62.997437 +6151;6;0.6458628;-0.46253443;0.07331913 +6151;7;0.8161092;0.538644;-0.20935255;0.0;-0.57416743;0.71466947;-0.39947385;0.0;-0.06555631 +6151;0;-0.6113739;3.9860992;7.8684235 +6153;12;0.24901418;-0.058479037;-0.26543468;0.9295787 +6153;3;0.16595459;0.030273438;0.17108154 +6153;0;-0.6257019;4.0336;7.858902 +6153;1;-0.23031409;4.8621826;8.517174 +6154;3;0.15679932;0.033935547;0.1765747 +6156;0;-0.6687012;4.090622;7.8302765 +6156;12;0.24937266;-0.058583084;-0.26502773;0.92959225 +6157;3;0.14579773;0.038208008;0.18452454 +6157;5;999.61456 +6158;0;-0.69737244;4.1476135;7.7921295 +6158;3;0.13542175;0.040039062;0.19062805 +6158;1;-0.2282658;4.868169;8.513809 +6160;4;-12.70752;-4.4906616;-61.047363 +6160;6;0.64646983;-0.48748618;0.08925922 +6160;7;0.8201891;0.5322039;-0.20987831;0.0;-0.5666456;0.7052337;-0.42609662;0.0;-0.078757025 +6161;0;-0.71170044;4.180893;7.7539673 +6161;3;0.12135315;0.03881836;0.19796753 +6162;12;0.24970064;-0.05866781;-0.26459303;0.9296227 +6163;0;-0.7594757;4.256897;7.7492065 +6164;1;-0.22610702;4.873368;8.510891 +6164;2;0.37217656;0.8256345;0.67743397; +6164;3;0.10670471;0.040039062;0.20285034 +6165;0;-0.7499237;4.3329163;7.7205963 +6166;12;0.24998729;-0.058737803;-0.264129;0.9296732 +6166;3;0.09326172;0.036987305;0.2083435 +6168;0;-0.7881317;4.375656;7.7253723 +6168;1;-0.22368845;4.8775787;8.508543 +6168;3;0.07737732;0.033935547;0.21507263 +6170;4;-12.406921;-4.79126;-62.997437 +6170;6;0.6249204;-0.51313055;0.10166687 +6170;7;0.83597004;0.50968754;-0.20340288;0.0;-0.5416049;0.7065613;-0.45545056;0.0;-0.08842088 +6170;0;-0.840683;4.4184265;7.7492065 +6171;3;0.06333923;0.027832031;0.21995544 +6171;12;0.25021532;-0.05879562;-0.26364225;0.9297463 +6173;0;-0.845459;4.4897003;7.7444305 +6173;1;-0.22075213;4.8806973;8.506831 +6173;3;0.044387817;0.023544312;0.22361755 +6175;0;-0.850235;4.5657043;7.7635193 +6175;12;0.25037894;-0.0588602;-0.26313686;0.92984134 +6175;3;0.026062012;0.018661499;0.22911072 +6183;0;-0.888443;4.6084595;7.8207397 +6183;1;-0.21725959;4.88248;8.505898 +6183;3;0.007751465;0.014389038;0.23399353 +6183;4;-13.607788;-5.39093;-61.94763 +6183;6;0.674169;-0.5296861;0.11311596 +6183;7;0.8118351;0.53870493;-0.22521281;0.0;-0.57570446;0.67417127;-0.46266356;0.0;-0.097407155 +6183;0;-0.90756226;4.660721;7.811203 +6183;3;-0.011795044;0.0113220215;0.23706055 +6183;12;0.2504605;-0.058927275;-0.26262623;0.9299595 +6183;0;-0.87890625;4.7557526;7.849365 +6183;1;-0.21324123;4.8828535;8.505785 +6183;2;0.57976544;0.37017202;0.72369957; +6183;3;-0.032562256;0.008285522;0.23950195 +6186;17;1;38dead6d7725;2014;563;-60; +6187;17;1;38dead6d60ff;3250;358;-57; +6188;17;1;1c1bb5efa29a;12909;985;-75; +6188;17;1;1c1bb5ecd182;10609;1358;-66; +6188;0;-0.91233826;4.827011;7.849365 +6189;12;0.25046012;-0.05899751;-0.26210448;0.9301023 +6189;3;-0.052108765;0.006439209;0.24072266 +6189;0;-0.94099426;4.874527;7.897049 +6189;3;-0.072891235;0.005844116;0.24194336 +6190;4;-12.5564575;-5.9906006;-62.69684 +6190;6;0.6410788;-0.5498678;0.118598506 +6190;7;0.8328;0.5099025;-0.2155075;0.0;-0.5443045;0.683312;-0.48663875;0.0;-0.10087946 +6190;1;-0.20892936;4.8817034;8.506552 +6190;0;-0.95054626;4.9315186;7.9542847 +6190;3;-0.096710205;0.005844116;0.24377441 +6191;12;0.25037017;-0.059055407;-0.26158085;0.9302703 +6192;0;-0.95054626;4.950531;8.011505 +6192;1;-0.20451266;4.8788476;8.508298 +6192;3;-0.11991882;0.006439209;0.24255371 +6194;0;-0.98399353;5.0217896;8.03537 +6195;12;0.25018573;-0.05909156;-0.261059;0.9304641 +6195;3;-0.1437378;0.0070648193;0.24377441 +6195;5;999.6083 +6196;0;-1.0030975;5.0027924;8.111679 +6197;1;-0.20017812;4.8740883;8.511127 +6197;3;-0.16818237;0.008285522;0.24316406 +6199;4;-13.157654;-7.3410034;-62.39624 +6199;6;0.68759006;-0.5492525;0.12303628 +6199;7;0.80759925;0.5413253;-0.23398817;0.0;-0.5803677;0.65911376;-0.47827023;0.0;-0.10467493 +6199;0;-0.9983368;5.0550537;8.14505 +6200;3;-0.1938324;0.009506226;0.24377441 +6200;12;0.24989653;-0.059094537;-0.26054302;0.9306863 +6201;1;-0.19593933;4.86733;8.515093 +6202;2;0.725822;-0.08967352;0.48262787; +6203;0;-1.0174255;5.0930634;8.187988 +6203;3;-0.22193909;0.0113220215;0.24072266 +6206;0;-0.9983368;5.097824;8.254761 +6207;12;0.24949975;-0.059062485;-0.2600318;0.93093765 +6207;3;-0.24758911;0.014389038;0.24072266 +6207;1;-0.19193135;4.8583417;8.520316 +6207;0;-1.0269775;5.1263123;8.326294 +6207;3;-0.27140808;0.016830444;0.2401123 +6210;4;-12.857056;-5.39093;-63.89618 +6210;6;0.6399854;-0.5485028;0.12272167 +6210;7;0.83418894;0.5095805;-0.21084712;0.0;-0.5414957;0.6844407;-0.48818362;0.0;-0.10445649 +6210;0;-1.0269775;5.0883026;8.378754 +6210;3;-0.29768372;0.018051147;0.2388916 +6211;12;0.24898311;-0.058984596;-0.25953093;0.93122065 +6212;1;-0.18815157;4.8472157;8.526734 +6213;0;-1.0126648;5.074051;8.464584 +6213;3;-0.3215027;0.019882202;0.2376709 +6215;0;-1.0317688;5.074051;8.550446 +6215;12;0.24835216;-0.058864266;-0.25903836;0.9315339 +6215;3;-0.34472656;0.020492554;0.2376709 +6216;0;-1.0078735;5.031311;8.650604 +6216;1;-0.1845276;4.8339777;8.534327 +6216;3;-0.36793518;0.022323608;0.23583984 +6220;4;-12.857056;-5.39093;-63.89618 +6220;6;0.6534684;-0.5238656;0.11598611 +6220;7;0.8238391;0.52641374;-0.21018478;0.0;-0.5578958;0.6875009;-0.4648599;0.0;-0.10020641 +6220;0;-1.0126648;5.0455627;8.698288 +6220;3;-0.39053345;0.024765015;0.23399353 +6220;12;0.24760821;-0.058706112;-0.258555;0.9318761 +6222;2;0.79062843;-0.23237324;0.027488708; +6222;1;-0.18110962;4.818744;8.54301 +6222;0;-1.0174255;4.969528;8.73645 +6223;3;-0.41252136;0.02720642;0.23155212 +6225;0;-1.0317688;4.950531;8.836609 +6225;3;-0.43147278;0.029052734;0.22911072 +6225;12;0.24675739;-0.058507722;-0.2580826;0.93224514 +6226;1;-0.17799641;4.8015723;8.552738 +6226;0;-0.9983368;4.8650208;8.936752 +6226;3;-0.4510193;0.03149414;0.22666931 +6229;4;-12.70752;-5.5404663;-62.997437 +6229;6;0.68037945;-0.49592128;0.11125012 +6229;7;0.80576235;0.5533022;-0.2111958;0.0;-0.58413374;0.6836892;-0.43744355;0.0;-0.097646184 +6229;0;-1.0126648;4.8460083;9.027374 +6229;3;-0.4699402;0.03086853;0.22361755 +6229;12;0.24580403;-0.058268562;-0.25762296;0.93263906 +6231;0;-0.9601135;4.784256;9.08461 +6231;1;-0.17510468;4.7826424;8.563398 +6231;3;-0.4870453;0.03149414;0.2205658 +6233;0;-0.97442627;4.727234;9.175232 +6233;3;-0.5004883;0.0345459;0.21690369 +6234;12;0.2447583;-0.057996225;-0.25717875;0.93305355 +6234;5;999.6083 +6235;0;-0.95054626;4.6654816;9.246765 +6236;1;-0.17242183;4.762148;8.574865 +6236;3;-0.5145416;0.03515625;0.21322632 +6238;4;-12.70752;-5.5404663;-62.997437 +6238;6;0.7017361;-0.46517274;0.10243788 +6238;7;0.7893308;0.5769516;-0.20996119;0.0;-0.6071278;0.6825726;-0.40680525;0.0;-0.09139322 +6240;0;-0.94099426;4.5894623;9.308762 +6240;3;-0.52615356;0.0357666;0.20773315 +6240;12;0.24363022;-0.057694368;-0.25675222;0.93348485 +6240;0;-0.9219055;4.546707;9.337372 +6240;1;-0.17001234;4.740374;8.586969 +6241;2;0.76132244;0.006875038;-0.5405426; +6241;3;-0.53652954;0.032714844;0.20223999 +6243;0;-0.855011;4.5181885;9.394608 +6243;12;0.24243832;-0.05736756;-0.25634545;0.93392706 +6244;3;-0.543869;0.03086853;0.19735718 +6245;1;-0.16761059;4.717519;8.599595 +6245;0;-0.86935425;4.480179;9.4423065 +6245;3;-0.5505829;0.02720642;0.19062805 +6248;4;-13.157654;-2.6901245;-62.39624 +6248;6;0.6733537;-0.44139096;0.09181127 +6248;7;0.80286694;0.5638432;-0.19361189;0.0;-0.59036684;0.7068119;-0.38972273;0.0;-0.082895346 +6248;0;-0.7976837;4.4089203;9.4756775 +6248;3;-0.55363464;0.018661499;0.18452454 +6248;12;0.2411869;-0.057030067;-0.25596276;0.9343766 +6249;1;-0.16504586;4.6941314;8.6124325 +6250;0;-0.73080444;4.3329163;9.54245 +6250;3;-0.55363464;0.009506226;0.1765747 +6255;0;-0.69737244;4.2854004;9.637848 +6256;3;-0.55363464;0.0027923584;0.16986084 +6256;12;0.23990175;-0.056704707;-0.25561613;0.934822 +6256;0;-0.6495819;4.2616425;9.699844 +6256;3;-0.5493622;-0.0014953613;0.16192627 +6256;1;-0.16201816;4.6705;8.625328 +6262;12;0.23859842;-0.056411304;-0.25531006;0.9352569 +6262;2;0.523485;0.32032108;-0.9614191; +6262;1;-0.15886505;4.6470666;8.638036 +6263;4;-13.157654;-2.6901245;-62.39624 +6263;6;0.66237617;-0.4131402;0.06686844 +6263;7;0.80326915;0.56324965;-0.1936711;0.0;-0.59246397;0.7221896;-0.35697144;0.0;-0.061196808 +6263;0;-0.6113739;4.233139;9.742767 +6263;3;-0.54325867;-0.0039367676;0.1558075 +6263;12;0.23730421;-0.05613706;-0.2550388;0.9356766 +6263;0;-0.57315063;4.2188873;9.785706 +6263;3;-0.53286743;-0.0082092285;0.14726257 +6263;0;-0.5540619;4.185623;9.795227 +6266;3;-0.52064514;-0.011260986;0.13626099 +6266;0;-0.46806335;4.142868;9.828613 +6266;3;-0.5029297;-0.011871338;0.12832642 +6267;1;-0.15572451;4.624343;8.650279 +6267;4;-13.157654;-5.9906006;-64.34631 +6267;6;0.7015616;-0.39850643;0.04758657 +6267;7;0.774884;0.5948379;-0.21382876;0.0;-0.6305814;0.70398235;-0.32676613;0.0;-0.043841213 +6267;0;-0.4202881;4.095352;9.876312 +6267;12;0.23604546;-0.055886164;-0.2548052;0.93607354 +6267;3;-0.48033142;-0.015533447;0.120391846 +6268;0;-0.37252808;4.043091;9.923996 +6269;1;-0.15268323;4.6029296;8.661745 +6269;3;-0.4571228;-0.01675415;0.11244202 +6271;0;-0.3295288;4.0621033;9.919235 +6271;12;0.23486008;-0.05565995;-0.25460687;0.9364391 +6271;3;-0.4265747;-0.01675415;0.103881836 +6272;5;999.6083 +6273;0;-0.26742554;4.0621033;9.919235 +6273;1;-0.14976913;4.583555;8.672065 +6274;3;-0.3935852;-0.0149383545;0.095336914 +6276;4;-13.157654;-5.9906006;-64.34631 +6276;6;0.6726031;-0.38855693;0.02695377 +6276;7;0.7882797;0.57658195;-0.2148683;0.0;-0.61481136;0.7238946;-0.31302324;0.0;-0.024941526 +6276;0;-0.24354553;4.052597;9.9096985 +6277;3;-0.3605957;-0.012481689;0.08433533 +6277;12;0.23378666;-0.05546748;-0.2544381;0.93676484 +6279;0;-0.19577026;4.085861;9.9096985 +6279;2;0.169079;0.49421883;-1.2149057; +6279;1;-0.14730117;4.5668697;8.680905 +6279;3;-0.3239441;-0.0082092285;0.0745697 +6283;0;-0.143219;4.085861;9.895386 +6284;12;0.23286425;-0.055302896;-0.2542985;0.93704224 +6284;1;-0.14550929;4.5531783;8.688125 +6284;3;-0.28302002;-0.0014953613;0.067230225 +6284;0;-0.12411499;4.085861;9.89061 +6284;3;-0.2414856;0.0070648193;0.055633545 +6285;4;-12.257385;-4.3411255;-61.647034 +6285;6;0.58994454;-0.3917248;0.012548112 +6285;7;0.8335712;0.51417524;-0.2019481;0.0;-0.55229044;0.7680271;-0.32420647;0.0;-0.011597313 +6286;0;-0.10499573;4.090622;9.842926 +6286;3;-0.1974945;0.017440796;0.047683716 +6286;12;0.23211144;-0.055155158;-0.2541843;0.9372687 +6288;0;-0.07156372;4.123871;9.842926 +6288;1;-0.14481084;4.5430956;8.693413 +6288;3;-0.15596008;0.029052734;0.036697388 +6290;0;-0.042907715;4.133362;9.828613 +6291;12;0.23156708;-0.05501462;-0.25409284;0.9374364 +6291;3;-0.111968994;0.041259766;0.027526855 +6292;0;-0.038131714;4.180893;9.761841 +6293;1;-0.1454362;4.536633;8.696776 +6293;3;-0.07350159;0.05531311;0.017150879 +6295;4;-11.506653;-4.0405273;-61.94763 +6295;6;0.51712936;-0.40465075;0.0039061813 +6295;7;0.86999565;0.4544602;-0.19124211;0.0;-0.4930464;0.799042;-0.34414715;0.0;-0.0035907088 +6295;0;-0.038131714;4.199875;9.680771 +6295;3;-0.035614014;0.0675354;0.007369995 +6296;12;0.23123719;-0.054866664;-0.2540205;0.937546 +6297;0;-0.028564453;4.280655;9.59491 +6297;1;-0.14757715;4.533618;8.698313 +6298;2;-0.11378774;0.4068923;-1.1056337; +6298;3;-1.9836426E-4;0.08157349;-0.0030212402 +6300;0;-0.042907715;4.313904;9.528137 +6300;12;0.23111376;-0.054699875;-0.253967;0.93760073 +6301;3;0.030960083;0.09440613;-0.011566162 +6302;0;-0.08111572;4.3851776;9.375534 +6302;1;-0.15128136;4.5336947;8.698209 +6303;3;0.058441162;0.105407715;-0.01828003 +6305;4;-12.257385;-4.0405273;-62.39624 +6305;6;0.51278234;-0.437482;0.008651635 +6305;7;0.8731485;0.44439918;-0.20030254;0.0;-0.48739132;0.78931713;-0.3734007;0.0;-0.007836737 +6305;0;-0.09068298;4.4421844;9.261063 +6306;3;0.083480835;0.11395264;-0.02684021 +6306;12;0.2311791;-0.05450546;-0.2539326;0.93760526 +6307;0;-0.11456299;4.480179;9.13707 +6307;1;-0.1562664;4.536303;8.696761 +6307;3;0.103027344;0.12188721;-0.03353882 +6309;0;-0.138443;4.556198;9.046463 +6310;12;0.23139635;-0.054288726;-0.25391358;0.9375694 +6310;3;0.12013245;0.12861633;-0.037826538 +6310;5;999.6083 +6312;0;-0.138443;4.5989685;8.903381 +6312;1;-0.16226375;4.540843;8.694281 +6312;3;0.13357544;0.13166809;-0.042099 +6314;4;-12.406921;-3.741455;-61.047363 +6314;6;0.49738917;-0.476744;0.015548231 +6314;7;0.8821293;0.42392948;-0.20526065;0.0;-0.47080496;0.7808362;-0.4106553;0.0;-0.01381395 +6314;0;-0.18144226;4.670227;8.84137 +6315;12;0.23173055;-0.054054387;-0.25390968;0.93750143 +6315;3;0.14213562;0.1365509;-0.04576111 +6317;0;-0.18621826;4.703491;8.73645 +6317;1;-0.16882169;4.5466404;8.691126 +6317;2;-0.08729318;0.04919672;-0.42463684; +6317;3;0.14762878;0.13717651;-0.048828125 +6319;0;-0.18621826;4.73674;8.6410675 +6319;12;0.23213795;-0.053814285;-0.25391555;0.937413 +6320;3;0.15190125;0.13899231;-0.050048828 +6321;0;-0.19577026;4.7890015;8.593384 +6322;1;-0.17566776;4.553087;8.687614 +6322;3;0.15312195;0.14143372;-0.052490234 +6323;4;-11.956787;-4.940796;-62.39624 +6324;6;0.4764948;-0.5083121;0.022777572 +6324;7;0.893462;0.4006767;-0.20293847;0.0;-0.44869807;0.77625895;-0.44282293;0.0;-0.01989602 +6324;0;-0.21009827;4.784256;8.507523 +6324;3;0.15130615;0.14205933;-0.05493164 +6325;12;0.23258264;-0.053570494;-0.253929;0.9373131 +6326;0;-0.21009827;4.817505;8.41214 +6326;1;-0.18277754;4.5597477;8.683974 +6326;3;0.14518738;0.14389038;-0.056762695 +6329;0;-0.22442627;4.8555145;8.354904 +6329;12;0.23304309;-0.053319074;-0.25394973;0.9372073 +6329;3;0.14213562;0.14328003;-0.0579834 +6331;0;-0.24832153;4.8555145;8.273819 +6331;1;-0.19007164;4.566176;8.680439 +6331;3;0.13479614;0.14328003;-0.0592041 +6333;4;-12.257385;-3.590393;-63.146973 +6333;6;0.45860496;-0.53049994;0.030003922 +6333;7;0.902987;0.38185075;-0.19698891;0.0;-0.42888814;0.77342737;-0.4667603;0.0;-0.025876127 +6333;0;-0.22442627;4.907776;8.2165985 +6334;3;0.12625122;0.14511108;-0.061035156 +6334;12;0.23349254;-0.053057097;-0.2539784;0.93710256 +6336;0;-0.27697754;4.917267;8.173676 +6336;1;-0.19746283;4.572173;8.677116 +6336;2;-0.015370071;-0.24064922;0.2688427; +6336;3;0.115875244;0.14083862;-0.06286621 +6338;0;-0.25309753;4.9125214;8.130753 +6338;12;0.233918;-0.052783903;-0.25401452;0.93700206 +6338;3;0.11036682;0.13595581;-0.064697266 +6340;0;-0.26264954;4.917267;8.083054 +6340;1;-0.20469539;4.5774884;8.674146 +6341;3;0.10243225;0.1335144;-0.06530762 +6344;4;-13.456726;-4.1915894;-62.997437 +6344;6;0.4921268;-0.546297;0.03248242 +6344;7;0.8888373;0.40373072;-0.21672489;0.0;-0.45738178;0.753056;-0.47297823;0.0;-0.027749859 +6344;0;-0.3199768;4.9220276;8.044907 +6344;3;0.092041016;0.13105774;-0.06530762 +6345;12;0.23430447;-0.052510425;-0.2540643;0.93690735 +6345;0;-0.37728882;4.974289;8.021057 +6345;3;0.08166504;0.12678528;-0.06652832 +6346;1;-0.21182373;4.582212;8.671481 +6348;0;-0.3438568;4.94104;7.987671 +6348;12;0.2346566;-0.052236997;-0.2541236;0.93681854 +6348;3;0.07066345;0.12310791;-0.06652832 +6349;5;999.6057 +6350;0;-0.36297607;4.9647827;7.973358 +6350;1;-0.21867374;4.5860877;8.669261 +6351;3;0.06088257;0.11885071;-0.06593323 +6353;4;-11.657715;-3.1402588;-62.997437 +6353;6;0.4467098;-0.5564588;0.045492206 +6353;7;0.9113168;0.36682498;-0.18692502;0.0;-0.40989068;0.76580846;-0.4955068;0.0;-0.038615514 +6353;0;-0.36775208;4.94104;7.935196 +6354;12;0.23495822;-0.05196681;-0.2541922;0.93673927 +6354;3;0.04989624;0.11151123;-0.064697266 +6356;1;-0.22512585;4.589119;8.667492 +6356;0;-0.39640808;4.9315186;7.892288 +6356;2;0.07096067;-0.33081007;0.648221; +6357;3;0.040115356;0.105407715;-0.06286621 +6358;0;-0.37252808;4.917267;7.901825 +6358;12;0.23520754;-0.051705576;-0.25426638;0.936671 +6358;3;0.030349731;0.09623718;-0.0592041 +6361;0;-0.40119934;4.9362793;7.906601 +6361;1;-0.23088741;4.5913095;8.666181 +6361;3;0.019958496;0.088912964;-0.0579834 +6362;4;-11.657715;-3.1402588;-63.746643 +6363;6;0.45105076;-0.5575355;0.050698847 +6363;7;0.9105212;0.3698977;-0.18473399;0.0;-0.41121978;0.76369655;-0.49766022;0.0;-0.04300267 +6363;0;-0.40119934;4.9362793;7.9113617 +6364;3;0.010192871;0.08279419;-0.056762695 +6365;12;0.23540273;-0.05146541;-0.25433925;0.93661547 +6365;0;-0.40596008;4.917267;7.906601 +6365;1;-0.23596294;4.59266;8.665328 +6366;3;-8.087158E-4;0.07608032;-0.055541992 +6368;12;0.23554076;-0.051247574;-0.25441757;0.9365714 +6368;0;-0.43463135;4.879257;7.9256744 +6370;3;-0.012420654;0.06692505;-0.052490234 +6370;1;-0.24040917;4.593049;8.665 +6370;0;-0.43940735;4.874527;7.9304504 +6370;3;-0.024017334;0.057144165;-0.05064392 +6372;4;-13.757324;-5.5404663;-62.547302 +6372;6;0.5580827;-0.55044544;0.05535102 +6372;7;0.862297;0.4513402;-0.22964275;0.0;-0.5042029;0.72297513;-0.47232026;0.0;-0.04715113 +6372;0;-0.4202881;4.8555145;7.9113617 +6372;3;-0.032562256;0.048599243;-0.04698181 +6374;12;0.23561904;-0.051049683;-0.25449935;0.9365403 +6375;1;-0.24394044;4.5925136;8.665185 +6375;0;-0.4202881;4.8460083;7.9495087 +6375;2;0.12930694;-0.2866087;0.7374859; +6375;3;-0.04295349;0.038208008;-0.04576111 +6377;0;-0.41552734;4.850769;7.987671 +6377;12;0.23563386;-0.050883736;-0.25458255;0.936523 +6378;3;-0.051498413;0.030273438;-0.04270935 +6379;0;-0.41073608;4.8222656;7.98291 +6379;3;-0.060668945;0.020492554;-0.043319702 +6380;1;-0.24658118;4.59115;8.6658325 +6381;4;-12.107849;-4.1915894;-63.746643 +6381;6;0.48764837;-0.5428246;0.051406592 +6381;7;0.8947067;0.40119708;-0.19631822;0.0;-0.4444819;0.75644577;-0.47981843;0.0;-0.043997668 +6382;0;-0.40119934;4.8222656;8.006744 +6382;3;-0.067993164;0.011947632;-0.042099 +6383;12;0.2355918;-0.050750803;-0.2546675;0.9365177 +6384;0;-0.41073608;4.8079987;8.030594 +6384;3;-0.07533264;0.0027923584;-0.040267944 +6384;1;-0.24843724;4.5890203;8.666907 +6387;0;-0.4202881;4.803253;8.044907 +6387;12;0.23549719;-0.05064725;-0.25476286;0.9365212 +6388;3;-0.080825806;-0.0057678223;-0.03843689 +6388;5;999.6057 +6389;1;-0.24949472;4.5862856;8.668324 +6389;0;-0.4298401;4.7985077;8.130753 +6389;3;-0.088150024;-0.013092041;-0.040267944 +6391;4;-12.5564575;-3.590393;-63.146973 +6393;6;0.5068543;-0.53254783;0.052816793 +6393;7;0.8860683;0.41820535;-0.19996843;0.0;-0.46131825;0.75320286;-0.46890402;0.0;-0.045481373 +6393;0;-0.40596008;4.784256;8.111679 +6393;3;-0.0942688;-0.020431519;-0.03843689 +6393;12;0.23535794;-0.05057678;-0.25486198;0.93653303 +6393;1;-0.24989787;4.582947;8.670078 +6393;0;-0.4202881;4.7652435;8.178452 +6394;3;-0.100372314;-0.025314331;-0.040267944 +6394;2;0.12641522;-0.20916843;0.60188866; +6396;0;-0.36297607;4.750992;8.164139 +6396;3;-0.10586548;-0.03263855;-0.040878296 +6396;12;0.23517613;-0.05053348;-0.2549711;0.9365513 +6398;0;-0.38685608;4.7700043;8.197525 +6398;1;-0.24976675;4.5790806;8.672125 +6399;3;-0.108306885;-0.039978027;-0.040267944 +6400;4;-13.006592;-3.440857;-64.497375 +6401;6;0.50368315;-0.5265086;0.04715683 +6401;7;0.8862705;0.4172871;-0.20098777;0.0;-0.46137148;0.75719696;-0.46237335;0.0;-0.04075512 +6401;0;-0.40596008;4.784256;8.2642975 +6401;3;-0.1113739;-0.04425049;-0.040878296 +6402;12;0.23495983;-0.050509192;-0.25509086;0.93657434 +6405;1;-0.24912341;4.5748997;8.67435 +6405;0;-0.40119934;4.7652435;8.278595 +6405;3;-0.116256714;-0.0491333;-0.042099 +6418;12;0.23471731;-0.05050968;-0.25521952;0.9366001 +6418;0;-0.39163208;4.7557526;8.33107 +6418;3;-0.11747742;-0.055862427;-0.041488647 +6418;0;-0.38208008;4.7700043;8.378754 +6418;1;-0.24804899;4.5703692;8.676768 +6418;3;-0.11930847;-0.06135559;-0.043930054 +6418;4;-12.107849;-3.440857;-63.29651 +6418;6;0.4912951;-0.5170918;0.045569498 +6418;7;0.8914314;0.41008952;-0.19281277;0.0;-0.45142242;0.76644677;-0.45692164;0.0;-0.03959806 +6418;0;-0.39163208;4.7890015;8.38829 +6418;3;-0.12236023;-0.066848755;-0.043930054 +6418;12;0.2344515;-0.050528947;-0.2553575;0.936628 +6418;0;-0.38208008;4.784256;8.41214 +6418;2;0.104040265;-0.19185448;0.369092; +6418;3;-0.12297058;-0.07296753;-0.047607422 +6418;1;-0.2465372;4.5656753;8.679282 +6418;0;-0.37252808;4.750992;8.435989 +6418;3;-0.12297058;-0.07846069;-0.048828125 +6418;12;0.23416816;-0.050570756;-0.25550717;0.9366557 +6418;0;-0.39163208;4.7652435;8.459839 +6418;3;-0.12236023;-0.08456421;-0.053100586 +6418;1;-0.24462865;4.560835;8.681881 +6420;17;1;38dead6d7725;1790;758;-60; +6421;17;1;38dead6d60ff;3428;3106;-59; +6421;17;1;1c1bb5efa29a;10908;1155;-70; +6422;17;1;1c1bb5ecd182;4572;3469;-68; +6422;0;-0.37728882;4.7652435;8.483673 +6422;12;0.23387234;-0.0506341;-0.2556735;0.9366809 +6422;3;-0.12174988;-0.08944702;-0.056762695 +6422;4;-12.406921;-3.440857;-61.79657 +6422;6;0.51199913;-0.5113566;0.044443056 +6422;7;0.88155764;0.42725098;-0.20078017;0.0;-0.47048366;0.76025164;-0.44795367;0.0;-0.038745206 +6422;0;-0.39163208;4.7557526;8.550446 +6422;1;-0.2423978;4.5559936;8.6844845 +6423;3;-0.120529175;-0.09373474;-0.060424805 +6425;0;-0.32476807;4.7652435;8.579071 +6425;12;0.23356923;-0.050720412;-0.25586036;0.9367009 +6426;3;-0.11869812;-0.09861755;-0.06286621 +6426;5;999.6057 +6427;0;-0.35820007;4.7414856;8.602905 +6427;1;-0.23987326;4.551203;8.687067 +6427;3;-0.116256714;-0.10166931;-0.068374634 +6429;4;-12.406921;-5.090332;-63.746643 +6429;6;0.5244161;-0.50335914;0.04161307 +6429;7;0.8749149;0.4386035;-0.2053071;0.0;-0.48290378;0.7582516;-0.4380166;0.0;-0.036441162 +6429;0;-0.3343048;4.717743;8.621979 +6430;3;-0.116867065;-0.10411072;-0.07081604 +6431;12;0.23326376;-0.05082505;-0.25606763;0.9367146 +6432;0;-0.36297607;4.7414856;8.6458435 +6432;1;-0.2372518;4.5464873;8.689608 +6432;2;0.08988944;-0.19098234;0.13427067; +6432;3;-0.11381531;-0.10777283;-0.072647095 +6434;0;-0.3390808;4.7414856;8.669678 +6434;12;0.2329617;-0.050941717;-0.25629622;0.9367209 +6435;3;-0.1101532;-0.11143494;-0.076919556 +6436;0;-0.32476807;4.727234;8.698288 +6436;1;-0.23444018;4.5419397;8.692061 +6437;3;-0.108306885;-0.11450195;-0.08119202 +6439;4;-11.506653;-5.39093;-64.34631 +6439;6;0.49503893;-0.49752155;0.037319675 +6439;7;0.8877969;0.41747278;-0.19373506;0.0;-0.45906615;0.7732722;-0.43738818;0.0;-0.032787725 +6439;0;-0.3152008;4.7224884;8.6792145 +6439;3;-0.10281372;-0.115722656;-0.084854126 +6440;12;0.23266447;-0.051074516;-0.25653833;0.9367213 +6441;0;-0.3438568;4.712982;8.712601 +6441;1;-0.2315762;4.5376325;8.694387 +6441;3;-0.09793091;-0.11816406;-0.08670044 +6446;12;0.23237832;-0.051217113;-0.25680262;0.93671215 +6446;0;-0.34864807;4.703491;8.712601 +6446;3;-0.09060669;-0.12121582;-0.0897522 +6446;0;-0.32476807;4.684494;8.750748 +6451;1;-0.22864456;4.533751;8.696489 +6451;2;0.071905285;-0.16540289;-0.01881504; +6451;12;0.23211287;-0.051373832;-0.25707975;0.9366933 +6451;1;-0.2257309;4.5303826;8.698321 +6452;3;-0.084487915;-0.123062134;-0.09524536 +6452;4;-11.956787;-3.2913208;-63.146973 +6452;6;0.49213558;-0.4912204;0.037096154 +6452;7;0.88898563;0.41663864;-0.190044;0.0;-0.4567659;0.777116;-0.43296164;0.0;-0.032702327 +6452;0;-0.34864807;4.670227;8.73645 +6452;3;-0.07899475;-0.12487793;-0.09890747 +6452;0;-0.3295288;4.703491;8.717377 +6452;3;-0.07165527;-0.12609863;-0.10319519 +6453;0;-0.3343048;4.693985;8.73645 +6454;12;0.23187582;-0.051543575;-0.25737742;0.93666095 +6454;3;-0.0625;-0.12854004;-0.1056366 +6456;0;-0.34864807;4.717743;8.76506 +6456;1;-0.22282088;4.5276093;8.69984 +6456;3;-0.055786133;-0.12976074;-0.10990906 +6458;4;-10.606384;-3.2913208;-62.69684 +6458;6;0.45767912;-0.493443;0.039756075 +6458;7;0.90469015;0.3891557;-0.17347491;0.0;-0.4246297;0.79006517;-0.44213852;0.0;-0.035004236 +6458;0;-0.3104248;4.73674;8.731674 +6458;3;-0.04600525;-0.13038635;-0.112960815 +6459;12;0.2316706;-0.051725462;-0.25768614;0.93661684 +6460;0;-0.35820007;4.703491;8.722153 +6460;1;-0.21996072;4.5255537;8.700982 +6461;3;-0.040512085;-0.12854004;-0.11601257 +6464;0;-0.36775208;4.7224884;8.722153 +6465;12;0.23150255;-0.051917993;-0.25801596;0.93655694 +6465;3;-0.032562256;-0.12854004;-0.11784363 +6465;5;999.6057 +6466;0;-0.3343048;4.73674;8.669678 +6466;3;-0.02279663;-0.13160706;-0.11907959 +6466;1;-0.21730827;4.52412;8.701795 +6467;4;-13.157654;-2.9907227;-61.1969 +6467;6;0.5304817;-0.49972954;0.038541142 +6468;7;0.8712647;0.44407752;-0.20902875;0.0;-0.4896469;0.75708246;-0.4325183;0.0;-0.033819653 +6469;0;-0.3199768;4.693985;8.65538 +6469;3;-0.016067505;-0.13160706;-0.120895386 +6469;12;0.23136978;-0.05211538;-0.25835478;0.93648535 +6470;0;-0.37252808;4.73674;8.6792145 +6470;1;-0.21459195;4.5234;8.702236 +6470;2;0.09241748;-0.18245935;-0.015141487; +6470;3;-0.007537842;-0.13160706;-0.120895386 +6472;0;-0.40596008;4.7319946;8.612442 +6473;12;0.23127653;-0.052324902;-0.25870088;0.93640125 +6473;3;0.0016326904;-0.1322174;-0.12333679 +6475;0;-0.40596008;4.727234;8.598129 +6475;1;-0.21199256;4.523415;8.702292 +6475;3;0.010192871;-0.13404846;-0.12333679 +6477;4;-10.606384;-4.3411255;-63.89618 +6477;6;0.47168878;-0.5022182;0.04717989 +6477;7;0.90012676;0.3982817;-0.17647505;0.0;-0.4336622;0.78080326;-0.44975933;0.0;-0.041338637 +6477;0;-0.41552734;4.760498;8.602905 +6478;3;0.016906738;-0.13710022;-0.12701416 +6478;12;0.23122297;-0.052541383;-0.25904328;0.9363076 +6479;0;-0.4298401;4.784256;8.579071 +6480;1;-0.20933253;4.524167;8.701965 +6480;3;0.023620605;-0.13710022;-0.12945557 +6482;0;-0.41552734;4.7747498;8.593384 +6482;12;0.23120669;-0.052776013;-0.25939924;0.9361999 +6483;3;0.028518677;-0.13832092;-0.12945557 +6484;0;-0.41552734;4.793747;8.559982 +6485;1;-0.2066716;4.525458;8.701358 +6485;3;0.032180786;-0.13894653;-0.13372803 +6487;4;-12.257385;-3.2913208;-61.1969 +6487;6;0.51818556;-0.51000077;0.048504937 +6487;7;0.87942135;0.43227434;-0.1993918;0.0;-0.47415987;0.7581698;-0.44760612;0.0;-0.042315803 +6487;0;-0.38685608;4.850769;8.526611 +6488;12;0.2312209;-0.05302295;-0.25976378;0.93608135 +6488;3;0.038894653;-0.14076233;-0.13433838 +6489;0;-0.39163208;4.869766;8.507523 +6489;1;-0.20399153;4.52725;8.700489 +6490;2;0.16878168;-0.24845791;0.12137604; +6490;3;0.043167114;-0.14198303;-0.1374054 +6491;0;-0.4202881;4.86026;8.507523 +6492;12;0.23125896;-0.05327847;-0.26013836;0.9359534 +6492;3;0.048675537;-0.14320374;-0.1398468 +6494;0;-0.37728882;4.8650208;8.455063 +6494;1;-0.20131671;4.529492;8.699384 +6494;3;0.05355835;-0.14749146;-0.1416626 +6496;4;-12.406921;-4.79126;-63.746643 +6496;6;0.50892895;-0.521703;0.044593245 +6496;7;0.8832233;0.4224252;-0.20365041;0.0;-0.4673573;0.75709766;-0.45648682;0.0;-0.03864827 +6497;0;-0.36297607;4.879257;8.459839 +6497;3;0.06088257;-0.14871216;-0.14472961 +6498;12;0.23132046;-0.053546347;-0.26052213;0.9358161 +6499;0;-0.3534088;4.893524;8.445526 +6499;1;-0.19846503;4.532239;8.698019 +6499;3;0.068222046;-0.15237427;-0.14656067 +6501;0;-0.37728882;4.884018;8.44075 +6502;12;0.23140548;-0.05383168;-0.2609183;0.93566847 +6502;3;0.075546265;-0.15359497;-0.15022278 +6502;5;999.60156 +6504;0;-0.40119934;4.8887787;8.41214 +6504;1;-0.19557212;4.5356045;8.69633 +6504;3;0.079208374;-0.15420532;-0.14900208 +6506;4;-13.006592;-2.8411865;-62.547302 +6506;6;0.50934255;-0.52595615;0.04765679 +6506;7;0.88373584;0.42170095;-0.20292678;0.0;-0.46616897;0.7550655;-0.461045;0.0;-0.0412001 +6506;0;-0.4202881;4.917267;8.431213 +6506;3;0.08532715;-0.15481567;-0.14900208 +6507;12;0.23152295;-0.05413149;-0.26132745;0.9355079 +6510;0;-0.39163208;4.893524;8.378754 +6510;1;-0.19265933;4.5394306;8.694398 +6510;2;0.16044997;-0.3362298;0.24720097; +6510;3;0.088378906;-0.15664673;-0.14778137 +6511;0;-0.40596008;4.917267;8.35968 +6511;12;0.23166415;-0.054441746;-0.26173717;0.93534034 +6511;3;0.091430664;-0.15664673;-0.14717102 +6523;0;-0.41073608;4.907776;8.350128 +6523;3;0.095077515;-0.15603638;-0.14657593 +6523;4;-12.406921;-3.1402588;-64.19678 +6523;6;0.4857837;-0.5308346;0.04914958 +6524;7;0.89485425;0.40264878;-0.19263908;0.0;-0.44434303;0.7626149;-0.47008267;0.0;-0.04236879 +6524;0;-0.40596008;4.9362793;8.393066 +6524;3;0.09629822;-0.15359497;-0.14474487 +6524;0;-0.44418335;4.974289;8.38829 +6524;1;-0.18963808;4.543609;8.692283 +6524;1;-0.18668143;4.5480466;8.690025 +6524;12;0.23182173;-0.054761168;-0.26214123;0.93516946 +6524;12;0.23199515;-0.0550798;-0.2625423;0.9349952 +6524;1;-0.18362159;4.552592;8.687709 +6527;12;0.23217349;-0.055404272;-0.2629317;0.9348224 +6527;3;0.09875488;-0.15420532;-0.14045715 +6527;0;-0.44418335;4.9552917;8.38353 +6527;3;0.09629822;-0.15359497;-0.13923645 +6527;0;-0.40119934;4.950531;8.369217 +6527;3;0.09385681;-0.15115356;-0.13496399 +6527;4;-12.257385;-3.590393;-61.94763 +6527;6;0.49632177;-0.5336555;0.047900833 +6527;7;0.8899302;0.40998107;-0.1998496;0.0;-0.45422995;0.75707066;-0.46959454;0.0;-0.041224606 +6527;0;-0.43940735;4.9885406;8.369217 +6527;3;0.09080505;-0.15237427;-0.13191223 +6528;0;-0.47283936;4.98378;8.373978 +6528;2;0.213337;-0.38685417;0.3071699; +6528;1;-0.18060559;4.5569096;8.685509 +6528;3;0.08590698;-0.15176392;-0.12886047 +6533;12;0.23234208;-0.05571711;-0.263302;0.9346576 +6533;1;-0.17739722;4.5609937;8.683431 +6533;0;-0.47763062;5.050308;8.364441 +6533;3;0.08164978;-0.15298462;-0.124572754 +6533;0;-0.45851135;5.040802;8.326294 +6533;3;0.07736206;-0.15359497;-0.11968994 +6536;17;1;38dead6d7725;2292;473;-60; +6537;17;1;38dead6d60ff;6661;680;-59; +6537;17;1;1c1bb5efa29a;11269;3617;-77; +6538;17;1;1c1bb5ecd182;8819;620;-68; +6538;12;0.2324942;-0.056032967;-0.26366284;0.93449914 +6538;4;-12.857056;-4.3411255;-62.39624 +6538;6;0.52403885;-0.5437157;0.055012316 +6538;7;0.8787286;0.42822227;-0.21085933;0.0;-0.4749966;0.7409495;-0.47473356;0.0;-0.04705538 +6538;0;-0.5253906;5.06456;8.38353 +6538;3;0.07064819;-0.15727234;-0.11419678 +6538;0;-0.5015106;5.074051;8.38353 +6540;1;-0.17393538;4.564654;8.681578 +6540;3;0.062698364;-0.15908813;-0.10870361 +6540;0;-0.5158386;5.15007;8.421677 +6540;12;0.23262204;-0.05635239;-0.2640033;0.934352 +6540;3;0.055374146;-0.15908813;-0.10258484 +6541;5;999.60156 +6542;0;-0.5301666;5.1690826;8.445526 +6542;1;-0.17008966;4.567757;8.680022 +6542;3;0.046829224;-0.15971375;-0.09831238 +6544;4;-11.056519;-2.8411865;-63.746643 +6544;6;0.4593989;-0.5483574;0.06269259 +6544;7;0.9090398;0.37839755;-0.17453332;0.0;-0.41326505;0.7649026;-0.49410117;0.0;-0.053465683 +6545;0;-0.5206146;5.154831;8.497986 +6545;3;0.038879395;-0.15908813;-0.09220886 +6545;12;0.23271295;-0.056675844;-0.2643227;0.9342195 +6547;0;-0.54927063;5.2070923;8.512299 +6547;1;-0.16602132;4.5701733;8.678828 +6547;2;0.3108611;-0.53755236;0.258008; +6547;3;0.028503418;-0.15908813;-0.08732605 +6549;0;-0.5636139;5.1928253;8.579071 +6549;12;0.23276599;-0.05699351;-0.2646217;0.9341023 +6549;3;0.02116394;-0.15664673;-0.081207275 +6551;0;-0.5779419;5.221344;8.588608 +6552;1;-0.16182418;4.571826;8.678038 +6552;3;0.01322937;-0.15359497;-0.076934814 +6564;1;-0.15757692;4.5727806;8.677613 +6564;12;0.2327757;-0.057301298;-0.26489663;0.9340031 +6564;4;-13.157654;-3.590393;-63.597107 +6565;6;0.5346365;-0.5452339;0.067190394 +6565;7;0.8762541;0.43564978;-0.2058836;0.0;-0.4784177;0.7356933;-0.4794497;0.0;-0.057404976 +6565;0;-0.5397186;5.2070923;8.703064 +6565;3;0.005279541;-0.15176392;-0.0708313 +6565;0;-0.5445099;5.2355957;8.717377 +6565;12;0.23275122;-0.057593815;-0.2651488;0.93391967 +6565;1;-0.15347217;4.5731025;8.677516 +6565;3;-0.0038757324;-0.14749146;-0.06594849 +6565;0;-0.5636139;5.2830963;8.784149 +6565;3;-0.008773804;-0.14138794;-0.060440063 +6565;0;-0.5779419;5.297348;8.84137 +6565;3;-0.016708374;-0.13465881;-0.0549469 +6565;4;-13.157654;-3.2913208;-64.64691 +6565;6;0.5265973;-0.53885823;0.06527505 +6565;7;0.8795042;0.4313745;-0.20096867;0.0;-0.47258645;0.74201524;-0.47547388;0.0;-0.05598548 +6565;0;-0.54927063;5.2926025;8.917694 +6565;3;-0.024032593;-0.12916565;-0.05189514 +6565;12;0.23269358;-0.057862934;-0.26537484;0.9338532 +6566;0;-0.5683899;5.3258667;8.979691 +6566;1;-0.1496282;4.5727854;8.677751 +6566;3;-0.028305054;-0.12243652;-0.049438477 +6566;2;0.379288;-0.67967844;-0.08910179; +6568;0;-0.5779419;5.3401184;9.036911 +6568;12;0.23260848;-0.05810122;-0.26557547;0.9338026 +6568;3;-0.03135681;-0.11633301;-0.046401978 +6570;0;-0.6113739;5.3258667;9.075058 +6570;1;-0.1462532;4.572048;8.678197 +6571;3;-0.032577515;-0.11143494;-0.045166016 +6573;4;-12.5564575;-3.590393;-63.146973 +6573;6;0.5348464;-0.52972037;0.06726695 +6573;7;0.8757129;0.43985257;-0.19914012;0.0;-0.4793356;0.7424351;-0.46800402;0.0;-0.05800415 +6573;0;-0.59706116;5.3068542;9.122772 +6573;3;-0.03440857;-0.10899353;-0.045166016 +6574;12;0.23250741;-0.058303457;-0.26575488;0.93376416 +6575;0;-0.6113739;5.2926025;9.151382 +6575;1;-0.14321059;4.571087;8.678754 +6575;3;-0.033187866;-0.106552124;-0.041503906 +6577;0;-0.6161499;5.2593536;9.21814 +6578;12;0.2323991;-0.058483228;-0.26592666;0.93373096 +6578;3;-0.03074646;-0.10473633;-0.042114258 +6579;5;999.60156 +6580;0;-0.63049316;5.2736053;9.318314 +6580;1;-0.14030394;4.570093;8.679325 +6580;3;-0.030136108;-0.10411072;-0.04272461 +6582;4;-11.657715;-3.741455;-63.746643 +6582;6;0.52317035;-0.5140203;0.06755875 +6583;7;0.8808472;0.43506435;-0.18662062;0.0;-0.46973687;0.75429964;-0.45867142;0.0;-0.05878372 +6583;0;-0.6257019;5.278351;9.375534 +6583;3;-0.026473999;-0.10227966;-0.04272461 +6584;12;0.23229225;-0.05865381;-0.26608863;0.9337006 +6585;0;-0.6687012;5.2736053;9.423233 +6585;1;-0.13754304;4.5691915;8.679843 +6585;2;0.44952747;-0.7211528;-0.5376692; +6585;3;-0.021591187;-0.099227905;-0.041503906 +6587;0;-0.64482117;5.240341;9.4470825 +6587;12;0.2321924;-0.0588182;-0.26625147;0.9336688 +6588;3;-0.014266968;-0.09739685;-0.042114258 +6590;1;-0.13496807;4.5686707;8.680158 +6590;0;-0.65437317;5.2593536;9.46138 +6590;3;-0.0069274902;-0.09617615;-0.04333496 +6592;4;-12.857056;-4.3411255;-62.39624 +6592;6;0.58329093;-0.5063307;0.06905259 +6592;7;0.8510954;0.48166808;-0.20888378;0.0;-0.521532;0.7299304;-0.44182125;0.0;-0.060340576 +6592;0;-0.67349243;5.2355957;9.494766 +6593;3;0.0022277832;-0.095565796;-0.04272461 +6593;12;0.2321173;-0.058977574;-0.2664071;0.933633 +6594;0;-0.67349243;5.2165833;9.528137 +6595;1;-0.13253167;4.5687466;8.680156 +6595;3;0.010177612;-0.095565796;-0.043945312 +6597;0;-0.6782532;5.197586;9.537689 +6597;12;0.23207499;-0.059140515;-0.26656443;0.9335882 +6597;3;0.019943237;-0.09617615;-0.043945312 +6599;0;-0.6639252;5.1928253;9.561539 +6599;1;-0.1301333;4.5694976;8.679797 +6600;3;0.028503418;-0.0980072;-0.043945312 +6602;0;-0.64482117;5.1595764;9.613998 +6602;3;0.040100098;-0.09983826;-0.045166016 +6602;4;-12.857056;-4.3411255;-63.597107 +6602;6;0.5863045;-0.4916195;0.066970766 +6602;7;0.8486022;0.48776048;-0.20485137;0.0;-0.5257318;0.7343395;-0.42936176;0.0;-0.05899526 +6603;12;0.23206878;-0.059313178;-0.26672038;0.9335344 +6604;0;-0.64004517;5.1120605;9.633072 +6604;1;-0.12758845;4.570956;8.679066 +6605;2;0.5028449;-0.627779;-0.8576994; +6605;3;0.047439575;-0.10411072;-0.045166016 +6607;0;-0.6161499;5.1168213;9.690308 +6607;3;0.059646606;-0.10533142;-0.04699707 +6607;12;0.23209818;-0.059504583;-0.2668767;0.9334702 +6609;0;-0.5779419;5.1453247;9.685532 +6609;1;-0.12478397;4.573175;8.6779375 +6609;3;0.071258545;-0.10411072;-0.050064087 +6611;4;-13.456726;-4.1915894;-63.746643 +6611;6;0.58999753;-0.48758885;0.059599973 +6612;7;0.84499234;0.4915237;-0.21069495;0.0;-0.532183;0.73410827;-0.42174208;0.0;-0.052623328 +6612;0;-0.59706116;5.1453247;9.695084 +6612;3;0.08468628;-0.10227966;-0.052505493 +6612;12;0.23216718;-0.059722535;-0.26703522;0.9333938 +6614;0;-0.60661316;5.15007;9.70462 +6614;1;-0.12216617;4.5764117;8.676269 +6614;3;0.09875488;-0.102890015;-0.05555725 +6616;0;-0.6018219;5.1263123;9.699844 +6616;12;0.23229186;-0.05994874;-0.2672024;0.9333004 +6617;3;0.11218262;-0.103500366;-0.061050415 +6617;5;999.60156 +6618;0;-0.62094116;5.0930634;9.699844 +6619;1;-0.11971999;4.580747;8.674015 +6619;3;0.12623596;-0.10533142;-0.069000244 +6621;4;-13.757324;-3.741455;-62.097168 +6621;6;0.6152104;-0.482658;0.06392835 +6621;7;0.83209646;0.5112015;-0.21514764;0.0;-0.5517367;0.72336125;-0.41513252;0.0;-0.05658689 +6621;0;-0.6018219;5.107315;9.709381 +6621;3;0.1378479;-0.107177734;-0.07449341 +6622;12;0.23247689;-0.06018738;-0.2673816;0.93318754 +6624;0;-0.59706116;5.06456;9.718933 +6624;2;0.457685;-0.52950335;-1.0312243; +6625;1;-0.117433146;4.5861425;8.671194 +6625;3;0.15188599;-0.10899353;-0.08181763 +6626;0;-0.59706116;5.131073;9.742767 +6626;12;0.23271993;-0.06044281;-0.2675887;0.93305117 +6626;3;0.16593933;-0.115112305;-0.09037781 +6628;0;-0.6113739;5.1263123;9.718933 +6629;1;-0.11523079;4.5926676;8.667769 +6629;3;0.17938232;-0.118774414;-0.09892273 +6630;4;-13.006592;-4.4906616;-63.29651 +6630;6;0.5945984;-0.48455623;0.06282268 +6631;7;0.84312147;0.4956897;-0.2084177;0.0;-0.53484577;0.7330127;-0.42027682;0.0;-0.055554084 +6631;12;0.23302327;-0.060720883;-0.26782525;0.9328895 +6633;1;-0.113034286;4.600331;8.6637335 +6634;0;-0.5683899;5.173828;9.75708 +6636;3;0.19099426;-0.11999512;-0.10626221 +6636;0;-0.5397186;5.240341;9.723679 +6636;3;0.20198059;-0.12243652;-0.11175537 +6636;12;0.23338668;-0.061026957;-0.26809964;0.93269986 +6637;17;0;38dead6d7725;0;0;0; +6638;17;0;38dead6d60ff;0;0;0; +6639;17;0;1c1bb5efa29a;0;0;0; +6639;17;0;1c1bb5ecd182;0;0;0; +6639;0;-0.5540619;5.230835;9.690308 +6639;3;0.21603394;-0.12609863;-0.11602783 +6640;0;-0.5253906;5.2498474;9.666458 +6640;3;0.23008728;-0.12854004;-0.12213135 +6640;1;-0.110879295;4.6090236;8.659141 +6640;4;-13.607788;-3.2913208;-63.146973 +6640;6;0.5654498;-0.49691147;0.0542985 +6640;7;0.8569654;0.470996;-0.20921992;0.0;-0.5131609;0.7422315;-0.43099678;0.0;-0.04770814 +6640;0;-0.5206146;5.297348;9.671219 +6641;3;0.24719238;-0.13282776;-0.12519836 +6641;12;0.23380367;-0.061354715;-0.26839796;0.93248814 +6642;0;-0.49671936;5.3353577;9.666458 +6643;1;-0.108646385;4.618996;8.653853 +6643;3;0.26245117;-0.13465881;-0.13008118 +6643;2;0.41697592;-0.60140467;-1.0525904; +6646;0;-0.46328735;5.4066315;9.642624 +6648;3;0.27711487;-0.13771057;-0.13252258 +6648;12;0.2342878;-0.061713975;-0.2687163;0.9322511 +6648;1;-0.10627373;4.630371;8.647802 +6648;0;-0.39640808;5.4921417;9.637848 +6648;3;0.29238892;-0.13710022;-0.13496399 +6651;4;-12.107849;-3.440857;-63.29651 +6651;6;0.48259732;-0.5175929;0.04110718 +6651;7;0.8944807;0.40329263;-0.1930266;0.0;-0.4456779;0.7697649;-0.45698255;0.0;-0.0357126 +6651;0;-0.37252808;5.5871735;9.623535 +6651;3;0.30522156;-0.13587952;-0.13496399 +6652;12;0.23484641;-0.062105116;-0.26903343;0.93199307 +6652;0;-0.3390808;5.6774445;9.580612 +6652;1;-0.10389655;4.643105;8.641001 +6653;3;0.3174286;-0.13404846;-0.13679504 +6655;0;-0.3056488;5.7866974;9.54245 +6655;12;0.23547825;-0.06252353;-0.26936752;0.9317092 +6655;3;0.33087158;-0.1322174;-0.13742065 +6657;5;999.60156 +6657;1;-0.101645805;4.6570597;8.633514 +6657;0;-0.27697754;5.848465;9.523392 +6657;3;0.33821106;-0.1322174;-0.13923645 +6660;4;-14.2074585;-4.6401978;-62.39624 +6660;6;0.51259285;-0.5505455;0.029075723 +6660;7;0.87856656;0.4179709;-0.23113036;0.0;-0.47697693;0.7427058;-0.4699797;0.0;-0.024775976 +6660;0;-0.22921753;5.905472;9.4804535 +6660;12;0.2361754;-0.062955424;-0.26969898;0.9314077 +6660;3;0.34370422;-0.13282776;-0.13864136 +6662;1;-0.0993787;4.671787;8.625581 +6662;0;-0.18144226;5.9244843;9.494766 +6662;3;0.34736633;-0.13160706;-0.13986206 +6663;2;0.19577126;-1.0303984;-0.9412031; +6665;12;0.23691276;-0.06340111;-0.27003005;0.9310943 +6665;0;-0.16233826;6.0195007;9.499542 +6665;3;0.34431458;-0.13160706;-0.13986206 +6667;0;-0.13366699;6.1097717;9.4804535 +6667;1;-0.0971053;4.6869016;8.617403 +6667;3;0.33943176;-0.13160706;-0.13864136 +6670;4;-13.757324;-5.5404663;-62.997437 +6670;6;0.46269202;-0.5724254;0.014098286 +6670;7;0.8981738;0.3752045;-0.22914067;0.0;-0.43948084;0.75220513;-0.49096233;0.0;-0.01185048 +6670;0;-0.10978699;6.128784;9.466141 +6670;3;0.32904053;-0.1309967;-0.13923645 +6673;12;0.23767169;-0.063854426;-0.2703618;0.93077356 +6674;0;-0.095443726;6.1905365;9.456619 +6674;1;-0.09480398;4.7015114;8.609467 +6674;3;0.31498718;-0.13160706;-0.14108276 +6675;12;0.23840302;-0.064299405;-0.27069104;0.93046016 +6675;0;-0.10499573;6.2095337;9.4470825 +6675;3;0.2997284;-0.1322174;-0.14045715 +6676;0;-0.11933899;6.233307;9.4375305 +6677;1;-0.092546955;4.715046;8.602087 +6677;3;0.2826233;-0.13404846;-0.14230347 +6679;4;-14.506531;-5.39093;-61.647034 +6679;6;0.47984037;-0.58367103;0.012644476 +6679;7;0.89021444;0.3852113;-0.24316774;0.0;-0.45541954;0.74021024;-0.49465337;0.0;-0.010550842 +6680;0;-0.100234985;6.242798;9.456619 +6680;3;0.26367188;-0.13404846;-0.14411926 +6680;12;0.23907515;-0.06472681;-0.27102864;0.9301596 +6681;1;-0.090234526;4.7271543;8.595463 +6682;0;-0.057235718;6.2713013;9.494766 +6682;3;0.24230957;-0.13404846;-0.14718628 +6682;2;-0.0052229315;-1.4494324;-0.87169456; +6685;0;-0.07156372;6.238037;9.537689 +6685;12;0.23966706;-0.06513704;-0.27137762;0.9298769 +6685;3;0.2190857;-0.13343811;-0.14840698 +6686;0;-0.019012451;6.238037;9.618759 +6686;1;-0.08801448;4.737423;8.589831 +6686;3;0.19343567;-0.13038635;-0.15023804 +6688;4;-14.0563965;-4.4906616;-62.097168 +6689;6;0.44144928;-0.575339;0.0019765988 +6689;7;0.90459114;0.35846633;-0.23068754;0.0;-0.42627698;0.758575;-0.4927999;0.0;-0.0016583807 +6690;0;-0.028564453;6.1857758;9.637848 +6690;3;0.16532898;-0.12794495;-0.15206909 +6690;12;0.24015875;-0.06551637;-0.2717419;0.92961705 +6691;0;-0.028564453;6.147766;9.680771 +6691;3;0.13356018;-0.12428284;-0.15267944 +6691;1;-0.086051576;4.745459;8.585413 +6694;12;0.2405313;-0.065847486;-0.27212086;0.9293864 +6694;0;-0.033355713;6.0337524;9.733231 +6694;3;0.103012085;-0.119384766;-0.15084839 +6695;5;999.59485 +6695;0;-0.023803711;5.990982;9.771393 +6695;1;-0.08441348;4.7507963;8.582478 +6696;3;0.0718689;-0.115112305;-0.14962769 +6698;4;-13.006592;-4.79126;-62.997437 +6698;6;0.42826125;-0.5500053;0.0024360565 +6698;7;0.9102153;0.35404345;-0.21485181;0.0;-0.4141301;0.77552974;-0.47649735;0.0;-0.0020767888 +6698;0;-0.023803711;5.914978;9.819077 +6698;3;0.039489746;-0.10961914;-0.14718628 +6699;12;0.24076344;-0.06611972;-0.27250722;0.92919374 +6700;1;-0.0830942;4.753384;8.581058 +6700;0;-0.033355713;5.815216;9.871536 +6701;3;0.008956909;-0.10105896;-0.14289856 +6701;2;-0.07583548;-1.3196673;-1.1266403; +6702;0;-0.038131714;5.7059326;9.938309 +6703;12;0.24085;-0.066327654;-0.27289164;0.92904365 +6703;3;-0.022201538;-0.09188843;-0.13986206 +6710;1;-0.08227617;4.7531776;8.58118 +6710;0;-0.028564453;5.5966644;9.962158 +6710;3;-0.05029297;-0.082733154;-0.13496399 +6710;4;-15.107727;-4.1915894;-62.547302 +6711;6;0.51583064;-0.51185;0.002867288 +6711;7;0.87057245;0.4300416;-0.23909788;0.0;-0.49203387;0.75839895;-0.42747355;0.0;-0.0024998125 +6711;0;-0.07156372;5.487381;10.033691 +6711;3;-0.077178955;-0.07296753;-0.13008118 +6711;0;-0.042907715;5.411377;10.057541 +6711;1;-0.08204886;4.750408;8.582715 +6712;12;0.2407948;-0.06645884;-0.27326173;0.9289398 +6712;3;-0.10038757;-0.06440735;-0.12519836 +6713;0;-0.12411499;5.2593536;10.057541 +6713;3;-0.121154785;-0.055862427;-0.11602783 +6713;12;0.24061263;-0.066511355;-0.2736124;0.92888004 +6715;1;-0.08237719;4.7454696;8.5854435 +6715;0;-0.16711426;5.131073;10.119553 +6715;3;-0.13948059;-0.047302246;-0.109313965 +6717;4;-14.356995;-4.4906616;-61.047363 +6717;6;0.57923067;-0.4692131;0.016512495 +6717;7;0.84085685;0.48822182;-0.23366472;0.0;-0.5410572;0.7464373;-0.38741264;0.0;-0.014727228 +6718;0;-0.16711426;5.059799;10.1577 +6718;3;-0.15353394;-0.035705566;-0.101989746 +6719;12;0.24032365;-0.06649204;-0.27393606;0.92886084 +6720;1;-0.08317387;4.738886;8.589071 +6720;2;-0.0029802322;-0.59195566;-1.4700365; +6720;0;-0.20533752;4.9790497;10.152924 +6720;3;-0.16392517;-0.027755737;-0.09587097 +6722;0;-0.24354553;4.827011;10.200623 +6723;3;-0.17185974;-0.018600464;-0.09037781 +6723;12;0.23995605;-0.06641044;-0.27422294;0.92887706 +6724;0;-0.23876953;4.7082367;10.148163 +6725;1;-0.08449987;4.7311964;8.593297 +6725;3;-0.17674255;-0.009429932;-0.08732605 +6727;4;-14.657593;-3.741455;-62.997437 +6727;6;0.61256397;-0.43428808;0.02352401 +6727;7;0.82364064;0.5215928;-0.2226139;0.0;-0.5667104;0.742225;-0.3576888;0.0;-0.021338305 +6727;0;-0.24354553;4.594223;10.124298 +6729;12;0.23954034;-0.06627657;-0.27447435;0.9289196 +6729;3;-0.17736816;-0.0027160645;-0.08242798 +6729;1;-0.08631572;4.7229524;8.597813 +6729;0;-0.19577026;4.494446;10.13385 +6729;3;-0.1749115;0.0052337646;-0.07937622 +6731;0;-0.18144226;4.4279175;10.13385 +6732;3;-0.17063904;0.0113220215;-0.07876587 +6733;5;999.59485 +6734;0;-0.21009827;4.3376617;10.138611 +6734;1;-0.08855857;4.7147374;8.602297 +6734;3;-0.16514587;0.016220093;-0.080596924 +6735;12;0.23910427;-0.06610402;-0.27470052;0.9289775 +6746;4;-13.90686;-5.6915283;-63.146973 +6746;6;0.6629264;-0.4041926;0.020719623 +6746;7;0.79303986;0.5658351;-0.22565074;0.0;-0.60887176;0.72468203;-0.32266238;0.0;-0.019048678 +6746;1;-0.09114815;4.706871;8.606577 +6746;12;0.23867771;-0.06590306;-0.27490547;0.92904073 +6746;0;-0.171875;4.233139;10.138611 +6746;3;-0.15048218;0.019882202;-0.080596924 +6746;0;-0.047683716;4.085861;10.234009 +6747;1;-0.09489549;4.700528;8.6100025 +6747;12;0.238275;-0.06569008;-0.27510667;0.92909974 +6747;3;-0.13337708;0.03086853;-0.08303833 +6747;2;0.07535416;0.24373627;-1.5504684; +6747;0;-0.138443;4.0336;10.172012 +6747;3;-0.105270386;0.056533813;-0.084869385 +6747;0;-0.157547;3.9860992;10.009842 +6747;3;-0.072280884;0.08035278;-0.093429565 +6747;0;-0.20533752;3.9480896;9.885849 +6748;12;0.23797977;-0.06543995;-0.2752945;0.9291373 +6748;3;-0.03807068;0.09440613;-0.10380554 +6748;4;-12.70752;-4.79126;-62.997437 +6748;6;0.6403328;-0.37988696;0.020767868 +6748;7;0.8063248;0.5548672;-0.20484802;0.0;-0.5911585;0.74472696;-0.3096988;0.0;-0.019285867 +6748;0;-0.21009827;3.933838;9.795227 +6748;1;-0.10084342;4.6968565;8.611938 +6748;3;-8.239746E-4;0.1005249;-0.11602783 +6751;12;0.23785959;-0.065123476;-0.27547342;0.9291374 +6751;0;-0.20533752;3.8673248;9.766617 +6751;3;0.038879395;0.101745605;-0.12335205 +6753;0;-0.3199768;3.8103027;9.752304 +6753;1;-0.107893854;4.6961627;8.612231 +6753;3;0.079193115;0.10418701;-0.13313293 +6755;4;-12.5564575;-5.9906006;-63.89618 +6755;6;0.69682723;-0.37228808;0.032798614 +6755;7;0.7741253;0.5978237;-0.20817511;0.0;-0.63229495;0.7143489;-0.29984763;0.0;-0.030546349 +6755;0;-0.4298401;3.8103027;9.685532 +6755;3;0.12011719;0.11151123;-0.14230347 +6756;12;0.23791562;-0.064804584;-0.2756894;0.9290812 +6757;0;-0.44418335;3.862564;9.499542 +6757;1;-0.1158411;4.698842;8.610666 +6758;2;0.12346274;0.7960787;-1.2126217; +6758;3;0.15678406;0.1164093;-0.15330505 +6760;0;-0.41552734;3.9053192;9.394608 +6760;12;0.23816909;-0.064513355;-0.27592924;0.92896533 +6760;3;0.19404602;0.113342285;-0.16184998 +6762;0;-0.35820007;3.9148254;9.289688 +6763;1;-0.12446237;4.7048016;8.607291 +6763;3;0.22702026;0.10418701;-0.16856384 +6765;4;-13.157654;-4.0405273;-62.39624 +6765;6;0.65427417;-0.39856547;0.038539797 +6765;7;0.80200106;0.56088185;-0.20544046;0.0;-0.5962661;0.73129505;-0.33117098;0.0;-0.035510205 +6765;0;-0.26742554;3.8530579;9.270599 +6766;3;0.26123047;0.096847534;-0.17710876 +6766;12;0.2386004;-0.06425235;-0.27619085;0.928795 +6767;0;-0.24354553;3.729538;9.294464 +6768;1;-0.13266353;4.7134666;8.602427 +6769;3;0.29544067;0.10418701;-0.17895508 +6770;0;-0.44895935;3.7390442;9.103683 +6770;12;0.23917037;-0.06405723;-0.2764896;0.92857295 +6770;3;0.3351593;0.13717651;-0.18688965 +6771;5;999.59485 +6772;0;-0.43940735;3.772293;8.912918 +6772;3;0.37547302;0.16282654;-0.2021637 +6772;1;-0.14217696;4.72511;8.595884 +6774;4;-13.456726;-5.090332;-63.29651 +6774;6;0.6997087;-0.3999425;0.049260173 +6774;7;0.7764488;0.59317297;-0.21277487;0.0;-0.6285462;0.70465624;-0.32922527;0.0;-0.04535438 +6774;0;-0.3438568;3.8340607;8.664902 +6775;3;0.40234375;0.17565918;-0.21438599 +6775;12;0.23992741;-0.06385941;-0.2767879;0.92830247 +6777;0;-0.3438568;3.8815765;8.559982 +6777;2;0.17970096;0.9177427;-0.4779091; +6777;3;0.42373657;0.17687988;-0.22537231 +6777;1;-0.15413788;4.740022;8.587464 +6779;0;-0.3390808;3.9765778;8.612442 +6779;12;0.24089448;-0.063594885;-0.27710128;0.9279766 +6780;3;0.44021606;0.17993164;-0.23210144 +6781;0;-0.2960968;3.9955902;8.536133 +6782;1;-0.1668949;4.7567987;8.577944 +6782;3;0.45121765;0.18481445;-0.23942566 +6788;12;0.24196954;-0.06333188;-0.27744603;0.9276118 +6788;1;-0.18030065;4.7744765;8.567845 +6788;4;-14.356995;-5.090332;-62.097168 +6788;6;0.6551692;-0.43755603;0.03467356 +6788;7;0.80141824;0.5518918;-0.23053016;0.0;-0.5972794;0.71824145;-0.35691234;0.0;-0.03140067 +6788;0;-0.28652954;3.9860992;8.483673 +6788;3;0.45550537;0.19152832;-0.24552917 +6788;0;-0.25787354;4.0383606;8.421677 +6788;3;0.45732117;0.1976471;-0.24676514 +6790;0;-0.26264954;4.0811005;8.33107 +6790;12;0.24310601;-0.06305817;-0.27781132;0.9272238 +6790;3;0.45672607;0.20497131;-0.24798584 +6792;17;1;38dead6d7725;2613;381;-61; +6793;17;1;38dead6d60ff;2039;377;-58; +6794;17;1;1c1bb5efa29a;13006;945;-75; +6794;17;1;1c1bb5ecd182;10929;837;-62; +6795;0;-0.30085754;4.1476135;8.1689 +6795;1;-0.19436935;4.7924595;8.557491 +6795;3;0.4542694;0.21109009;-0.25042725 +6795;4;-12.70752;-4.79126;-62.097168 +6795;6;0.5658214;-0.46954075;0.03681299 +6795;7;0.8525046;0.47808966;-0.2113441;0.0;-0.52168846;0.7527917;-0.40143016;0.0;-0.032821536 +6795;0;-0.3152008;4.2188873;8.011505 +6795;3;0.44877625;0.21109009;-0.2559204 +6795;12;0.24427506;-0.06275638;-0.2781783;0.92682695 +6796;0;-0.25787354;4.2378845;7.9256744 +6796;1;-0.20897993;4.8104334;8.547055 +6796;2;0.057235077;0.73284197;0.23074436; +6796;3;0.44206238;0.20680237;-0.26141357 +6799;12;0.24544561;-0.062432878;-0.27855086;0.9264276 +6799;0;-0.23876953;4.2711487;7.9256744 +6800;3;0.43717957;0.20069885;-0.26568604 +6804;1;-0.22343235;4.8279285;8.536819 +6804;0;-0.21009827;4.275894;7.906601 +6804;3;0.42922974;0.19581604;-0.2693634 +6805;4;-13.456726;-5.090332;-61.79657 +6805;6;0.54798126;-0.4956052;0.026566261 +6805;7;0.8598578;0.45828316;-0.22499119;0.0;-0.5099985;0.7508763;-0.41962627;0.0;-0.023367088 +6806;0;-0.21487427;4.256897;7.9113617 +6806;3;0.4188385;0.18786621;-0.27363586 +6806;12;0.24658507;-0.06211445;-0.2789497;0.92602634 +6806;0;-0.18621826;4.3186646;7.882736 +6806;3;0.40663147;0.17932129;-0.27973938 +6807;1;-0.23763114;4.8448534;8.526842 +6809;0;-0.17666626;4.3614197;7.8779755 +6809;12;0.24769296;-0.061809953;-0.27937818;0.92562175 +6809;3;0.39196777;0.17138672;-0.28341675 +6810;5;999.59485 +6811;0;-0.11933899;4.3994293;7.811203 +6811;3;0.37913513;0.16343689;-0.28952026 +6811;1;-0.2512192;4.8607244;8.517415 +6813;4;-14.0563965;-5.8410645;-62.547302 +6813;6;0.5321394;-0.5128867;0.015276739 +6813;7;0.8654263;0.44209462;-0.23577482;0.0;-0.50085956;0.75084704;-0.43054453;0.0;-0.013310589 +6813;0;-0.10978699;4.3851776;7.7921295 +6814;3;0.36386108;0.15609741;-0.29257202 +6814;12;0.24873199;-0.06152807;-0.27983746;0.9252231 +6816;2;-0.11765465;0.5521326;0.63967705; +6816;0;-0.10499573;4.380417;7.8016815 +6816;3;0.3491974;0.14755249;-0.29745483 +6816;1;-0.26432982;4.8754272;8.50861 +6818;12;0.24969754;-0.06125723;-0.28033048;0.9248317 +6818;0;-0.10499573;4.380417;7.815979 +6818;3;0.3376007;0.14021301;-0.30233765 +6820;1;-0.27699608;4.888889;8.50048 +6820;0;-0.10978699;4.356659;7.8350525 +6820;3;0.3241577;0.1341095;-0.30540466 +6823;4;-12.70752;-6.440735;-63.29651 +6823;6;0.49735412;-0.5074324;0.014011368 +6823;7;0.88201004;0.41698468;-0.21950418;0.0;-0.47107148;0.7681088;-0.4337055;0.0;-0.012245465 +6824;0;-0.057235718;4.3946686;7.882736 +6824;3;0.31071472;0.12983704;-0.30723572 +6824;12;0.25058764;-0.060998008;-0.28085336;0.92444927 +6825;1;-0.28922376;4.9012527;8.492949 +6825;0;-0.019012451;4.413666;7.854141 +6825;3;0.2997284;0.12432861;-0.30967712 +6828;12;0.25141218;-0.060750697;-0.28140214;0.9240747 +6828;0;7.6293945E-5;4.4231873;7.892288 +6828;3;0.29055786;0.12251282;-0.31028748 +6830;1;-0.30113512;4.9126544;8.485945 +6830;0;-0.0046844482;4.380417;7.863678 +6830;3;0.27955627;0.120666504;-0.30906677 +6833;4;-13.006592;-5.5404663;-62.547302 +6833;6;0.47133628;-0.50823534;5.95707E-4 +6833;7;0.89109373;0.39668393;-0.22043969;0.0;-0.4538188;0.7783487;-0.43384507;0.0;-5.204123E-4 +6833;0;-0.047683716;4.342407;7.8350525 +6834;12;0.25217855;-0.060503565;-0.28196752;0.9237097 +6834;3;0.2691803;0.11517334;-0.30784607 +6836;1;-0.31288132;4.923122;8.47945 +6836;2;-0.28277874;0.5536947;0.6215172; +6837;0;-0.09068298;4.3281555;7.8398285 +6839;12;0.2528934;-0.060250685;-0.2825368;0.9233568 +6839;3;0.26000977;0.11029053;-0.30723572 +6841;0;-0.100234985;4.3519135;7.887512 +6841;3;0.24719238;0.105407715;-0.306015 +6841;0;-0.11456299;4.3519135;7.906601 +6841;1;-0.32422578;4.9326925;8.47346 +6843;3;0.23374939;0.1005249;-0.30540466 +6843;12;0.25355324;-0.060004085;-0.28311142;0.92301583 +6843;4;-14.0563965;-7.1914673;-62.547302 +6843;6;0.56202954;-0.5031176;0.014488523 +6843;7;0.8498091;0.46686903;-0.24465847;0.0;-0.5269377;0.7413203;-0.41566908;0.0;-0.012692714 +6843;0;-0.16233826;4.313904;7.897049 +6843;3;0.2227478;0.093185425;-0.30418396 +6845;1;-0.33516607;4.941184;8.468086 +6845;0;-0.17666626;4.3851776;7.9495087 +6845;3;0.20809937;0.0834198;-0.30111694 +6847;0;-0.157547;4.3329163;7.9638214 +6847;12;0.2541486;-0.059764285;-0.28369272;0.92268914 +6847;3;0.19770813;0.073028564;-0.29745483 +6849;5;999.59106 +6849;1;-0.3452249;4.9485855;8.463359 +6850;0;-0.19577026;4.3614197;8.006744 +6850;3;0.18243408;0.06263733;-0.29196167 +6852;4;-11.657715;-6.1401367;-61.346436 +6852;6;0.50487846;-0.4986535;0.0244458 +6852;7;0.8806262;0.42479944;-0.20986412;0.0;-0.4733251;0.7686537;-0.4302728;0.0;-0.021466829 +6852;0;-0.24832153;4.356659;8.049683 +6852;3;0.16716003;0.052261353;-0.28341675 +6852;12;0.2546723;-0.059547905;-0.28427768;0.9223786 +6854;0;-0.26264954;4.3329163;8.073517 +6854;1;-0.35433048;4.9548345;8.459325 +6855;3;0.15066528;0.041259766;-0.27485657 +6855;2;-0.20165169;0.6151061;0.48641014; +6860;0;-0.3438568;4.375656;8.097366 +6860;3;0.13722229;0.032714844;-0.26509094 +6860;12;0.2551197;-0.05935863;-0.2848587;0.92208797 +6860;1;-0.3622571;4.9598203;8.456067 +6860;0;-0.35820007;4.404175;8.11644 +6860;3;0.12133789;0.021102905;-0.25531006 +6861;4;-11.956787;-7.0404053;-61.94763 +6861;6;0.5669186;-0.49675488;0.04410404 +6861;7;0.85402375;0.4721258;-0.21849646;0.0;-0.5187881;0.7416019;-0.42530647;0.0;-0.03876078 +6861;0;-0.3534088;4.3946686;8.130753 +6861;3;0.107299805;0.006439209;-0.24552917 +6862;12;0.2554815;-0.05920199;-0.285411;0.921827 +6864;0;-0.36775208;4.2854004;8.192749 +6865;1;-0.36878756;4.9635377;8.453603 +6865;3;0.09385681;-0.006378174;-0.2339325 +6866;0;-0.38685608;4.2378845;8.2070465 +6866;12;0.25574845;-0.05908494;-0.2859431;0.92159545 +6866;3;0.07980347;-0.01675415;-0.2192688 +6868;0;-0.36775208;4.223633;8.2118225 +6868;1;-0.37374616;4.9660277;8.451922 +6868;3;0.06576538;-0.02897644;-0.20765686 +6870;4;-12.70752;-6.1401367;-63.746643 +6870;6;0.5867563;-0.4746429;0.044753347 +6871;7;0.8432276;0.49245873;-0.2155266;0.0;-0.53608197;0.74068654;-0.40496895;0.0;-0.039792847 +6871;0;-0.37252808;4.256897;8.302444 +6871;3;0.05293274;-0.039367676;-0.19421387 +6872;12;0.2559305;-0.059019547;-0.28644204;0.9213943 +6873;0;-0.36775208;4.3043976;8.345367 +6873;2;-0.036905557;0.6668439;0.24356937; +6873;1;-0.37715858;4.9674363;8.450943 +6874;3;0.04071045;-0.0491333;-0.18200684 +6875;0;-0.35820007;4.366165;8.416901 +6876;12;0.256034;-0.059002507;-0.2869015;0.9212235 +6878;1;-0.3791646;4.9679847;8.450531 +6880;3;0.031555176;-0.055862427;-0.16734314 +6880;0;-0.3199768;4.380417;8.483673 +6880;3;0.022994995;-0.058303833;-0.15512085 +6881;4;-12.406921;-6.1401367;-62.547302 +6881;6;0.570637;-0.4763403;0.03769891 +6881;7;0.85029435;0.48003608;-0.21578905;0.0;-0.5252406;0.747874;-0.4059639;0.0;-0.03349429 +6881;0;-0.29130554;4.3329163;8.526611 +6881;3;0.01689148;-0.059524536;-0.14352417 +6882;0;-0.2722168;4.3376617;8.521835 +6882;1;-0.38021362;4.967838;8.45057 +6883;3;0.01322937;-0.05769348;-0.13008118 +6884;12;0.25606692;-0.059028424;-0.28731507;0.9210839 +6885;0;-0.26742554;4.3519135;8.540909 +6885;12;0.25605318;-0.05907582;-0.28767997;0.9209707 +6886;3;0.011398315;-0.050964355;-0.11785889 +6887;5;999.59106 +6887;0;-0.26264954;4.366165;8.607666 +6887;1;-0.38081864;4.967427;8.450785 +6888;3;0.008331299;-0.043029785;-0.10809326 +6889;4;-12.406921;-7.4905396;-63.29651 +6889;6;0.5824628;-0.46923625;0.03050398 +6889;7;0.8423087;0.49062607;-0.22316417;0.0;-0.5383086;0.74484664;-0.39424273;0.0;-0.027202703 +6889;0;-0.23876953;4.3376617;8.631531 +6890;3;0.0046691895;-0.03692627;-0.097091675 +6890;12;0.25601968;-0.05912417;-0.2879871;0.92088103 +6891;0;-0.23399353;4.347168;8.703064 +6892;1;-0.38145337;4.966754;8.451152 +6892;2;-0.12566593;0.625587;-0.11068821; +6892;3;0.0034484863;-0.027755737;-0.08610535 +6894;0;-0.23399353;4.3091583;8.741211 +6894;12;0.2559756;-0.059149876;-0.28823915;0.92081267 +6894;3;0.0028381348;-0.018600464;-0.07632446 +6896;0;-0.21966553;4.3329163;8.76506 +6896;1;-0.38224334;4.965919;8.451606 +6897;3;0.0022277832;-0.006378174;-0.06594849 +6899;4;-12.406921;-7.4905396;-63.29651 +6899;6;0.58368254;-0.4589843;0.025056252 +6899;7;0.84029394;0.4940632;-0.22317597;0.0;-0.54166543;0.7480768;-0.38337892;0.0;-0.022460653 +6899;0;-0.21487427;4.347168;8.774612 +6900;3;0.0028381348;0.006439209;-0.057998657 +6900;12;0.25593194;-0.059149597;-0.28843147;0.9207646 +6901;1;-0.38349083;4.965102;8.45203 +6902;0;-0.20533752;4.3329163;8.78891 +6902;3;0.0034484863;0.019882202;-0.04762268 +6904;0;-0.22921753;4.313904;8.822296 +6905;3;0.0071105957;0.0345459;-0.037231445 +6905;12;0.25589815;-0.059109755;-0.2885699;0.9207332 +6906;0;-0.25309753;4.347168;8.850922 +6906;1;-0.3854115;4.964393;8.452359 +6907;3;0.010177612;0.04675293;-0.027450562 +6908;4;-13.006592;-6.440735;-62.097168 +6908;6;0.6040894;-0.45638433;0.028587822 +6909;7;0.82983863;0.50987774;-0.2266989;0.0;-0.5574131;0.738785;-0.37879702;0.0;-0.025658416 +6909;0;-0.24354553;4.3091583;8.81752 +6909;3;0.013839722;0.05836487;-0.018295288 +6909;12;0.2558865;-0.059021898;-0.28864866;0.9207174 +6911;0;-0.23876953;4.3186646;8.812759 +6911;1;-0.38788983;4.9639864;8.452484 +6911;2;-0.1833179;0.65089893;-0.35319805; +6912;3;0.01689148;0.06692505;-0.009140015 +6913;0;-0.2722168;4.290146;8.798447 +6914;12;0.25590405;-0.058894277;-0.28866795;0.9207147 +6914;3;0.019943237;0.073638916;0.0012512207 +6916;0;-0.26264954;4.290146;8.784149 +6916;1;-0.39066797;4.963862;8.45243 +6916;3;0.02116394;0.07913208;0.009796143 +6918;4;-13.006592;-6.440735;-62.097168 +6918;6;0.609681;-0.45414543;0.02989149 +6918;7;0.8269721;0.5145645;-0.22658458;0.0;-0.56160116;0.7367296;-0.3766081;0.0;-0.026857575 +6919;0;-0.29130554;4.3186646;8.774612 +6919;3;0.024215698;0.080963135;0.020187378 +6919;12;0.25594646;-0.058742188;-0.2886323;0.92072374 +6920;0;-0.3152008;4.3186646;8.755524 +6921;1;-0.39343563;4.9639864;8.452229 +6921;3;0.023605347;0.07913208;0.030563354 +6923;0;-0.3295288;4.3329163;8.774612 +6924;12;0.25600463;-0.05858137;-0.28855047;0.9207435 +6924;3;0.020553589;0.07608032;0.039123535 +6925;0;-0.34864807;4.3519135;8.784149 +6926;1;-0.395676;4.9641414;8.452032 +6926;3;0.018722534;0.073638916;0.050109863 +6926;5;999.59106 +6928;4;-10.906982;-7.0404053;-63.146973 +6928;6;0.5576087;-0.4596703;0.039669767 +6928;7;0.8571658;0.47423136;-0.20092608;0.0;-0.5138126;0.7604452;-0.39713934;0.0;-0.035542674 +6928;0;-0.3390808;4.356659;8.7603 +6928;3;0.014450073;0.06997681;0.05744934 +6928;12;0.2560587;-0.05843695;-0.28842658;0.92077637 +6930;0;-0.36775208;4.370926;8.76506 +6930;1;-0.39724815;4.9641395;8.45196 +6931;3;0.0071105957;0.065078735;0.067214966 +6931;2;-0.10686132;0.65065527;-0.33287144; +6933;0;-0.36775208;4.366165;8.745987 +6933;12;0.2560957;-0.058312118;-0.28826553;0.9208245 +6933;3;0.0016174316;0.060195923;0.07699585 +6935;0;-0.35820007;4.370926;8.78891 +6935;1;-0.39802393;4.963681;8.452192 +6935;3;-0.008773804;0.056533813;0.08616638 +6937;4;-10.906982;-7.0404053;-63.146973 +6937;6;0.55811167;-0.46117285;0.040733375 +6937;7;0.8571498;0.4742602;-0.20092651;0.0;-0.5137746;0.7596403;-0.39872584;0.0;-0.03646792 +6938;0;-0.34864807;4.366165;8.78891 +6938;3;-0.01914978;0.053482056;0.09715271 +6938;12;0.25609693;-0.058205336;-0.28805074;0.92089814 +6940;0;-0.37252808;4.366165;8.803207 +6940;1;-0.39802247;4.9625015;8.452885 +6940;3;-0.03074646;0.052261353;0.10630798 +6942;0;-0.36775208;4.356659;8.784149 +6943;12;0.25604826;-0.05811926;-0.2878208;0.920989 +6943;3;-0.041748047;0.051651;0.11730957 +6944;0;-0.41073608;4.3614197;8.755524 +6945;1;-0.39745983;4.9604664;8.454106 +6945;3;-0.053359985;0.05104065;0.12709045 +6947;4;-14.356995;-6.440735;-63.746643 +6947;6;0.6605756;-0.46171474;0.046877284 +6947;7;0.8015803;0.54932433;-0.2360334;0.0;-0.5964134;0.70695597;-0.38013718;0.0;-0.04195339 +6947;0;-0.39640808;4.370926;8.822296 +6948;3;-0.064956665;0.052261353;0.13502502 +6948;12;0.25594667;-0.058034938;-0.2875518;0.9211065 +6950;0;-0.43940735;4.404175;8.798447 +6950;1;-0.39645922;4.9575377;8.455872 +6950;3;-0.077178955;0.054092407;0.1429596 +6950;2;-0.039144605;0.60439396;-0.34137726; +6953;0;-0.43463135;4.370926;8.827072 +6953;12;0.25579226;-0.057944994;-0.28724217;0.9212518 +6953;3;-0.09062195;0.05897522;0.15213013 +6957;1;-0.39532077;4.953608;8.458226 +6958;0;-0.47283936;4.356659;8.86998 +6958;3;-0.10160828;0.060195923;0.16191101 +6958;4;-14.356995;-6.440735;-63.746643 +6958;6;0.680286;-0.45599666;0.053257417 +6958;7;0.79103553;0.56474423;-0.23521647;0.0;-0.60990053;0.6979609;-0.3753292;0.0;-0.047793113 +6958;0;-0.45851135;4.347168;8.903381 +6958;3;-0.113220215;0.065078735;0.16984558 +6959;12;0.25558177;-0.057834826;-0.28689885;0.9214241 +6960;0;-0.44418335;4.342407;8.860458 +6960;1;-0.3939968;4.948729;8.4611435 +6960;3;-0.12483215;0.06997681;0.18023682 +6962;12;0.25532037;-0.057705693;-0.28651518;0.9216239 +6962;0;-0.49671936;4.3091583;8.884293 +6962;3;-0.13276672;0.07546997;0.18756104 +6966;0;-0.47763062;4.313904;8.884293 +6966;3;-0.14193726;0.07974243;0.19734192 +6966;1;-0.3927094;4.9429865;8.46456 +6966;5;999.59106 +6967;4;-13.456726;-7.1914673;-64.19678 +6967;6;0.6729635;-0.4514665;0.05370954 +6967;7;0.795449;0.560856;-0.22956786;0.0;-0.60409224;0.7036302;-0.37413514;0.0;-0.048305053 +6967;0;-0.5062866;4.323395;8.927231 +6967;3;-0.14926147;0.085861206;0.20527649 +6968;12;0.25501567;-0.05754903;-0.28608888;0.92185056 +6970;1;-0.39144465;4.936559;8.468369 +6970;0;-0.49671936;4.2616425;8.927231 +6970;3;-0.1565857;0.09135437;0.21505737 +6970;2;0.05700466;0.6277585;-0.429636; +6973;0;-0.5062866;4.256897;8.931976 +6973;12;0.25467494;-0.057367433;-0.2856207;0.92210114 +6973;3;-0.16207886;0.09562683;0.2236023 +6975;1;-0.3902242;4.92954;8.472512 +6976;0;-0.5397186;4.223633;8.994003 +6976;3;-0.16636658;0.10296631;0.23094177 +6977;12;0.25430632;-0.057159435;-0.2851071;0.9223747 +6978;4;-12.70752;-6.1401367;-62.547302 +6978;6;0.67288774;-0.43834653;0.059936848 +6978;7;0.7964667;0.5643219;-0.21721368;0.0;-0.60224515;0.7080884;-0.36866212;0.0;-0.05423761 +6978;0;-0.5540619;4.1951294;8.941528 +6978;3;-0.17002869;0.109069824;0.23765564 +6980;1;-0.38923746;4.922145;8.476856 +6980;0;-0.5874939;4.166626;8.936752 +6980;3;-0.17124939;0.11273193;0.24497986 +6983;0;-0.5683899;4.142868;8.951065 +6984;3;-0.17124939;0.12007141;0.25108337 +6984;12;0.2539231;-0.056924596;-0.2845565;0.92266476 +6984;0;-0.5683899;4.1476135;8.951065 +6984;1;-0.3883576;4.9146132;8.481266 +6985;3;-0.17124939;0.12373352;0.25964355 +6987;4;-13.157654;-6.590271;-61.94763 +6987;6;0.7156991;-0.4331458;0.06341455 +6987;7;0.77057076;0.59555006;-0.22702625;0.0;-0.6347537;0.68494415;-0.35768607;0.0;-0.05751964 +6988;12;0.25353792;-0.056674585;-0.28396907;0.922967 +6988;0;-0.5349426;4.133362;8.903381 +6988;3;-0.17185974;0.12678528;0.26574707 +6988;2;0.13750619;0.75588703;-0.46617603; +6989;0;-0.5349426;4.11911;8.893829 +6989;3;-0.17124939;0.13044739;0.26940918 +6991;1;-0.38746518;4.9071064;8.485652 +6991;12;0.25315747;-0.056414098;-0.28334352;0.92327964 +6992;0;-0.5636139;4.1618805;8.884293 +6992;3;-0.17002869;0.13227844;0.27552795 +6993;0;-0.5540619;4.133362;8.860458 +6994;3;-0.16819763;0.13166809;0.27981567 +6994;1;-0.3866369;4.899694;8.489971 +6995;4;-12.257385;-5.6915283;-61.94763 +6995;6;0.66306657;-0.43573928;0.06245065 +6996;7;0.8027865;0.55801976;-0.21011375;0.0;-0.59357625;0.71446615;-0.37041256;0.0;-0.056578364 +6996;0;-0.5779419;4.1286316;8.798447 +6996;3;-0.16758728;0.13044739;0.28407288 +6996;12;0.25278378;-0.05614507;-0.2826899;0.92359877 +6998;0;-0.5301666;4.1381226;8.798447 +6998;3;-0.16575623;0.12739563;0.2883606 +6999;1;-0.38558677;4.892437;8.494204 +7000;0;-0.54927063;4.1381226;8.750748 +7001;12;0.25241628;-0.05588713;-0.28201684;0.9239206 +7001;3;-0.16452026;0.12495422;0.29141235 +7003;0;-0.5206146;4.11911;8.726913 +7003;1;-0.38414454;4.885335;8.498355 +7003;3;-0.16207886;0.11885071;0.29385376 +7003;5;999.59015 +7010;12;0.2520517;-0.05564847;-0.28132805;0.92424446 +7010;2;0.1328929;0.7658539;-0.2837267; +7010;1;-0.3820638;4.878451;8.502402 +7011;12;0.25168952;-0.055445787;-0.2806335;0.92456645 +7011;4;-11.657715;-5.5404663;-63.29651 +7011;6;0.6190731;-0.44031316;0.059585594 +7011;7;0.82769984;0.5249323;-0.198391;0.0;-0.5585794;0.7367362;-0.38106278;0.0;-0.053870324 +7011;0;-0.5062866;4.133362;8.6792145 +7011;3;-0.16026306;0.109069824;0.29629517 +7011;0;-0.5062866;4.142868;8.669678 +7011;3;-0.15904236;0.09989929;0.29507446 +7011;0;-0.44418335;4.1571198;8.626755 +7011;3;-0.15536499;0.089523315;0.2944641 +7012;17;1;38dead6d7725;4858;2246;-57; +7012;17;1;38dead6d60ff;2187;1926;-63; +7013;17;1;1c1bb5efa29a;16437;776;-76; +7013;17;1;1c1bb5ecd182;7458;2619;-67; +7014;1;-0.37913334;4.871794;8.50635 +7014;0;-0.43463135;4.176132;8.588608 +7014;3;-0.14985657;0.08157349;0.29203796 +7014;4;-12.257385;-5.9906006;-62.69684 +7014;6;0.61764824;-0.45207712;0.050562434 +7014;7;0.82698655;0.5209421;-0.21145323;0.0;-0.5603804;0.7333447;-0.38494053;0.0;-0.045463637 +7015;0;-0.38685608;4.1618805;8.588608 +7015;3;-0.1437378;0.07485962;0.28837585 +7015;12;0.25132528;-0.055292446;-0.27994722;0.9248827 +7016;1;-0.37554678;4.8655553;8.510079 +7018;0;-0.36775208;4.1951294;8.54567 +7018;3;-0.13763428;0.0675354;0.28593445 +7019;0;-0.3390808;4.180893;8.521835 +7019;12;0.25097343;-0.05518407;-0.27927592;0.92518765 +7019;3;-0.128479;0.064468384;0.28227234 +7021;1;-0.37155563;4.859955;8.5134535 +7021;0;-0.28652954;4.2188873;8.49321 +7021;3;-0.120529175;0.06263733;0.27798462 +7024;4;-13.757324;-6.440735;-61.79657 +7024;6;0.6350148;-0.46080682;0.03372352 +7024;7;0.8134989;0.5313162;-0.2364797;0.0;-0.5807818;0.7210901;-0.37778518;0.0;-0.030200228 +7025;0;-0.27697754;4.2046356;8.445526 +7025;3;-0.1113739;0.062026978;0.27371216 +7026;12;0.25064895;-0.055114247;-0.2786263;0.9254756 +7026;1;-0.3675472;4.85507;8.516415 +7026;0;-0.23876953;4.1713715;8.402588 +7026;2;-0.044120282;0.69803095;-0.026233673; +7027;3;-0.10159302;0.06263733;0.26638794 +7028;0;-0.21009827;4.2046356;8.402588 +7029;12;0.25036076;-0.055062644;-0.27799377;0.9257468 +7029;3;-0.08998108;0.065078735;0.25904846 +7031;0;-0.16233826;4.2378845;8.402588 +7031;1;-0.36381844;4.851033;8.518875 +7031;3;-0.07899475;0.069366455;0.25416565 +7033;4;-12.70752;-5.090332;-63.746643 +7033;6;0.5253542;-0.46705025;0.019317627 +7033;7;0.86934674;0.44780686;-0.20905769;0.0;-0.49390143;0.7724894;-0.3991508;0.0;-0.017247641 +7033;0;-0.10978699;4.2046356;8.364441 +7034;3;-0.067993164;0.07608032;0.24684143 +7034;12;0.25012124;-0.055019014;-0.2773828;0.9259974 +7036;0;-0.100234985;4.2473907;8.340591 +7036;1;-0.36063245;4.8479176;8.520783 +7036;3;-0.05883789;0.08647156;0.23828125 +7038;0;-0.038131714;4.2711487;8.297668 +7039;12;0.24994162;-0.054969236;-0.27679121;0.92622584 +7039;3;-0.047225952;0.09867859;0.23155212 +7041;0;-0.01423645;4.266403;8.273819 +7041;1;-0.35851532;4.845694;8.522137 +7041;3;-0.03929138;0.10784912;0.2242279 +7041;5;999.59015 +7043;4;-13.006592;-4.4906616;-62.997437 +7043;6;0.4852707;-0.4760893;0.001720661 +7043;7;0.88491523;0.41457602;-0.2122539;0.0;-0.46574956;0.78618157;-0.40619674;0.0;-0.0015293123 +7044;0;0.03352356;4.3043976;8.2642975 +7044;3;-0.031951904;0.120666504;0.21751404 +7044;12;0.24982424;-0.054885663;-0.27621788;0.9264335 +7046;0;0.0048675537;4.3091583;8.164139 +7046;3;-0.024627686;0.1328888;0.20956421 +7046;1;-0.35754907;4.8442416;8.523004 +7046;2;-0.3071309;0.6160197;0.1925087; +7048;0;0.019195557;4.3376617;8.149826 +7048;12;0.2497674;-0.054758858;-0.2756598;0.92662257 +7048;3;-0.018508911;0.14389038;0.2034607 +7052;1;-0.35786203;4.8434396;8.523446 +7052;0;0.07652283;4.356659;8.083054 +7052;3;-0.015472412;0.1524353;0.19429016 +7052;4;-13.006592;-5.8410645;-63.746643 +7053;6;0.4579999;-0.49432975;-0.009466786 +7053;7;0.89491254;0.3892233;-0.2182584;0.0;-0.4461637;0.78956336;-0.42134032;0.0;0.008333364 +7053;0;0.10041809;4.323395;8.049683 +7053;3;-0.013626099;0.16099548;0.18696594 +7053;12;0.24976195;-0.054585237;-0.27511466;0.92679626 +7055;1;-0.35920823;4.842931;8.523679 +7055;0;0.10997009;4.3376617;8.016281 +7056;3;-0.014251709;0.1683197;0.18086243 +7057;0;0.10517883;4.389923;7.98291 +7058;12;0.24978934;-0.05436874;-0.27459297;0.9269564 +7058;3;-0.014846802;0.17749023;0.1741333 +7060;1;-0.36150002;4.842536;8.523806 +7060;0;0.1290741;4.432678;7.9304504 +7060;3;-0.017913818;0.1829834;0.16741943 +7063;4;-13.456726;-6.1401367;-63.746643 +7063;6;0.44794455;-0.5096277;-0.016274322 +7063;7;0.8977813;0.37807637;-0.22593562;0.0;-0.44021228;0.78680265;-0.43261385;0.0;0.014205654 +7063;0;0.1577301;4.44693;7.9161377 +7063;3;-0.02218628;0.18664551;0.16070557 +7063;12;0.24983527;-0.05411306;-0.27408928;0.92710805 +7065;0;0.1386261;4.4611816;7.901825 +7065;1;-0.36454132;4.8419743;8.523996 +7065;2;-0.49458063;0.48412037;0.5031786; +7066;3;-0.029510498;0.1854248;0.15397644 +7067;0;0.16729736;4.470688;7.8684235 +7067;12;0.2498811;-0.053820968;-0.27360842;0.92725474 +7068;3;-0.037460327;0.18359375;0.14787292 +7069;0;0.19593811;4.456436;7.854141 +7070;3;-0.048446655;0.1817627;0.14175415 +7070;1;-0.36782205;4.840884;8.524474 +7072;4;-12.406921;-6.440735;-62.097168 +7072;6;0.40702695;-0.5159701;-0.024941934 +7072;7;0.9131451;0.34434298;-0.21816039;0.0;-0.4070571;0.7987523;-0.44305682;0.0;0.021692608 +7072;0;0.19117737;4.4849396;7.8350525 +7072;3;-0.05883789;0.17871094;0.13565063 +7073;12;0.24989936;-0.053516235;-0.27315706;0.92740047 +7074;0;0.21028137;4.52771;7.8350525 +7075;1;-0.37118068;4.839018;8.525388 +7075;3;-0.07411194;0.17504883;0.12954712 +7077;12;0.24987674;-0.05320407;-0.27273753;0.927548 +7077;0;0.22460938;4.5894623;7.8302765 +7077;3;-0.08692932;0.17138672;0.12283325 +7079;0;0.25805664;4.5847015;7.773056 +7080;1;-0.37448335;4.8361483;8.526873 +7080;3;-0.09976196;0.1658783;0.11427307 +7080;5;999.59015 +7081;4;-12.406921;-6.1401367;-62.997437 +7081;6;0.36607426;-0.5326594;-0.033186678 +7081;7;0.9271942;0.3083617;-0.21265958;0.0;-0.373489;0.80437917;-0.46203926;0.0;0.028583737 +7083;0;0.28671265;4.646469;7.815979 +7083;3;-0.111968994;0.16099548;0.10694885 +7083;12;0.24979511;-0.052887805;-0.27235183;0.92770135 +7085;0;0.27716064;4.6417236;7.854141 +7085;1;-0.37771654;4.832237;8.528947 +7085;2;-0.63138443;0.30961704;0.6787052; +7086;3;-0.1278534;0.15487671;0.09716797 +7086;12;0.24965118;-0.052567095;-0.2720072;0.9278595 +7087;0;0.32492065;4.646469;7.849365 +7087;3;-0.13885498;0.1506195;0.08618164 +7088;0;0.31536865;4.65123;7.8684235 +7089;1;-0.38087112;4.827192;8.531663 +7089;3;-0.15168762;0.14633179;0.07701111 +7091;4;-12.406921;-5.090332;-63.746643 +7091;6;0.33515936;-0.5335175;-0.040058844 +7091;7;0.93690115;0.2832076;-0.20496264;0.0;-0.34788963;0.8131144;-0.46670958;0.0;0.034482382 +7091;0;0.2962799;4.6654816;7.887512 +7091;3;-0.164505;0.14266968;0.067855835 +7092;12;0.24944262;-0.052243352;-0.2717149;0.92801946 +7093;0;0.3201599;4.6417236;7.9113617 +7093;1;-0.38415185;4.821087;8.534966 +7094;3;-0.1767273;0.14083862;0.05807495 +7096;0;0.34883118;4.6559753;7.944748 +7096;12;0.24917354;-0.051912293;-0.2714745;0.9281806 +7096;3;-0.18650818;0.13961792;0.04890442 +7098;0;0.32492065;4.6654816;7.992447 +7098;1;-0.38765785;4.8139577;8.538832 +7098;3;-0.19812012;0.14021301;0.040359497 +7101;4;-11.657715;-5.8410645;-63.29651 +7101;6;0.3236811;-0.5280157;-0.04063109 +7101;7;0.94077945;0.27474177;-0.19862272;0.0;-0.33719856;0.81895185;-0.46434364;0.0;0.035087828 +7101;0;0.36314392;4.6749725;8.03537 +7101;3;-0.20666504;0.14021301;0.031799316 +7101;12;0.24885035;-0.05156447;-0.27128166;0.9283431 +7103;0;0.3297119;4.6654816;8.073517 +7104;1;-0.3915543;4.8059115;8.543184 +7104;2;-0.7489463;0.17475033;0.5810814; +7104;3;-0.21644592;0.14266968;0.024475098 +7110;12;0.24848005;-0.051192246;-0.27113023;0.92850715 +7110;1;-0.39599013;4.797046;8.547962 +7110;0;0.36314392;4.646469;8.111679 +7110;3;-0.2243805;0.14633179;0.015930176 +7110;0;0.33448792;4.6797333;8.1689 +7110;3;-0.23109436;0.1499939;0.0110321045 +7113;12;0.24807261;-0.050787255;-0.2710113;0.9286731 +7113;4;-11.956787;-4.3411255;-63.89618 +7113;6;0.3196997;-0.5198723;-0.040923648 +7113;7;0.94214755;0.27275944;-0.19483387;0.0;-0.33331245;0.82390684;-0.45834512;0.0;0.03550701 +7113;0;0.33448792;4.646469;8.2070465 +7113;3;-0.23721313;0.15487671;0.0037078857 +7114;1;-0.401074;4.787532;8.553057 +7114;0;0.32492065;4.65123;8.249985 +7118;3;-0.2427063;0.15855408;-0.0023956299 +7118;0;0.29148865;4.684494;8.288132 +7118;3;-0.24880981;0.16526794;-0.0066833496 +7118;12;0.24763978;-0.050346784;-0.27092117;0.92883885 +7120;1;-0.40687442;4.777498;8.558393 +7120;0;0.28671265;4.6559753;8.340591 +7120;3;-0.25248718;0.17198181;-0.009735107 +7120;5;999.59015 +7121;4;-12.257385;-5.6915283;-64.34631 +7121;6;0.36131388;-0.50888926;-0.034362048 +7121;7;0.928964;0.30870983;-0.20426501;0.0;-0.36895236;0.81690097;-0.44333637;0.0;0.030001998 +7121;0;0.2962799;4.6892242;8.416901 +7121;3;-0.2549286;0.17382812;-0.014007568 +7121;12;0.24718635;-0.049869005;-0.27085367;0.92900497 +7123;1;-0.41329613;4.767089;8.563887 +7124;2;-0.75859135;0.12752724;0.27333832; +7124;0;0.27716064;4.6797333;8.407364 +7124;3;-0.25798035;0.17626953;-0.0152282715 +7125;0;0.26760864;4.684494;8.455063 +7125;12;0.24672304;-0.04935622;-0.2707972;0.92917204 +7126;3;-0.2610321;0.17810059;-0.01828003 +7128;0;0.23893738;4.6559753;8.497986 +7128;3;-0.26286316;0.17749023;-0.021347046 +7128;1;-0.42004704;4.756387;8.569508 +7130;4;-12.406921;-6.890869;-63.746643 +7130;6;0.40525883;-0.50105655;-0.028109536 +7130;7;0.91331464;0.34579283;-0.2151366;0.0;-0.406508;0.8060327;-0.4301888;0.0;0.024650937 +7130;0;0.19593811;4.6987305;8.536133 +7131;3;-0.2646942;0.17810059;-0.022567749 +7131;12;0.24624878;-0.04882338;-0.2707504;0.92933965 +7132;1;-0.42700887;4.745496;8.575199 +7132;0;0.20550537;4.703491;8.564758 +7133;3;-0.2646942;0.17871094;-0.025009155 +7134;0;0.1720581;4.6749725;8.598129 +7135;12;0.24576569;-0.048281755;-0.27071583;0.92950577 +7135;3;-0.26408386;0.17504883;-0.02684021 +7137;1;-0.43406367;4.734521;8.58091 +7137;0;0.1625061;4.693985;8.6362915 +7137;3;-0.2646942;0.17260742;-0.029876709 +7139;4;-13.157654;-5.39093;-63.597107 +7139;6;0.4348982;-0.49777922;-0.018814433 +7139;7;0.9029679;0.3701891;-0.21819548;0.0;-0.42939028;0.7968547;-0.42502567;0.0;0.016530234 +7141;0;0.1816101;4.6987305;8.6410675 +7141;3;-0.2634735;0.17138672;-0.031723022 +7141;12;0.24528065;-0.04773861;-0.2706909;0.9296693 +7141;1;-0.4410625;4.723481;8.586636 +7142;0;0.16729736;4.684494;8.6410675 +7142;2;-0.6735886;0.06385994;-0.0015106201; +7142;3;-0.2646942;0.16648865;-0.03353882 +7145;12;0.2447906;-0.04719838;-0.2706799;0.92982924 +7145;0;0.114746094;4.693985;8.6839905 +7146;3;-0.2646942;0.15916443;-0.03538513 +7147;0;0.10517883;4.717743;8.712601 +7147;1;-0.44779837;4.7124643;8.592338 +7147;3;-0.26530457;0.15184021;-0.03904724 +7149;4;-12.257385;-4.6401978;-63.89618 +7149;6;0.41019803;-0.4962518;-0.012071449 +7149;7;0.9146829;0.3506861;-0.20093337;0.0;-0.40403253;0.8064221;-0.431788;0.0;0.010615054 +7150;0;0.07652283;4.7082367;8.755524 +7150;3;-0.26713562;0.14389038;-0.042099 +7150;12;0.24429733;-0.046676658;-0.2706823;0.92998457 +7151;1;-0.4541167;4.7013373;8.5981 +7152;0;0.04307556;4.703491;8.784149 +7152;3;-0.26774597;0.1353302;-0.045150757 +7159;12;0.24379082;-0.04618138;-0.27070856;0.93013453 +7159;0;0.057418823;4.7082367;8.793686 +7159;3;-0.26896667;0.12556458;-0.04698181 +7160;0;0.014419556;4.703491;8.836609 +7160;3;-0.2732544;0.117004395;-0.049423218 +7160;5;999.589 +7160;4;-11.657715;-5.8410645;-62.997437 +7160;6;0.44144052;-0.48913112;-0.001631796 +7160;7;0.9038084;0.37714452;-0.2022188;0.0;-0.42793494;0.7981193;-0.42411932;0.0;0.0014404532 +7160;0;-0.019012451;4.7082367;8.86998 +7160;1;-0.4599078;4.690021;8.60397 +7160;3;-0.27508545;0.11029053;-0.05064392 +7160;12;0.24326523;-0.04571398;-0.27075857;0.9302807 +7162;17;1;38dead6d7725;3283;477;-56; +7163;17;1;38dead6d60ff;2734;2473;-65; +7164;17;0;1c1bb5efa29a;0;0;0; +7164;17;0;1c1bb5ecd182;0;0;0; +7164;1;-0.46508917;4.6784897;8.609967 +7165;2;-0.55284345;0.0012655258;-0.19947815; +7165;0;0.028747559;4.693985;8.903381 +7165;3;-0.2781372;0.1023407;-0.05064392 +7165;0;7.6293945E-5;4.693985;8.908142 +7165;3;-0.2805786;0.09562683;-0.05064392 +7165;12;0.2427176;-0.045282044;-0.27082717;0.93042487 +7167;0;-0.057235718;4.684494;8.951065 +7167;1;-0.4697168;4.666713;8.616105 +7168;3;-0.28302002;0.08769226;-0.047607422 +7168;4;-12.857056;-5.6915283;-63.597107 +7168;6;0.4977827;-0.48214018;0.0063942038 +7168;7;0.8800411;0.42304814;-0.21577284;0.0;-0.4748637;0.7784821;-0.41045102;0.0;-0.0056652552 +7168;0;-0.06201172;4.6892242;8.989227 +7168;3;-0.2866974;0.07913208;-0.045150757 +7169;12;0.24214862;-0.04487439;-0.2709073;0.9305695 +7170;1;-0.473666;4.654695;8.622388 +7170;0;-0.095443726;4.693985;8.984451 +7170;3;-0.2879181;0.07119751;-0.044540405 +7172;0;-0.095443726;4.660721;9.017838 +7173;12;0.24155667;-0.044498224;-0.27098802;0.93071795 +7173;3;-0.28729248;0.05958557;-0.040267944 +7175;0;-0.11456299;4.670227;9.017838 +7175;1;-0.47681108;4.642537;8.628766 +7175;3;-0.2879181;0.049819946;-0.036605835 +7178;4;-12.70752;-5.5404663;-63.29651 +7178;6;0.510768;-0.47782218;0.012703359 +7178;7;0.87515455;0.4340957;-0.21369483;0.0;-0.48371202;0.7746627;-0.40733334;0.0;-0.01128026 +7178;0;-0.13366699;4.6797333;9.089371 +7178;3;-0.2866974;0.03942871;-0.03416443 +7178;12;0.240946;-0.044161;-0.27107084;0.9308681 +7183;0;-0.16711426;4.660721;9.089371 +7183;1;-0.47899544;4.6303806;8.635176 +7184;2;-0.42460364;-0.020861626;-0.38785553; +7184;12;0.24032101;-0.043871015;-0.27115074;0.9310202 +7184;3;-0.28424072;0.03086853;-0.029281616 +7184;0;-0.18144226;4.6559753;9.122772 +7184;3;-0.2793579;0.01927185;-0.0262146 +7185;1;-0.48024106;4.618439;8.641499 +7185;0;-0.18621826;4.660721;9.151382 +7185;3;-0.2738495;0.010726929;-0.023788452 +7186;4;-10.606384;-4.0405273;-64.34631 +7186;6;0.4371663;-0.47096938;0.020345839 +7186;7;0.90967584;0.37728077;-0.17363518;0.0;-0.4149232;0.8073227;-0.41960564;0.0;-0.018129513 +7187;0;-0.19099426;4.684494;9.103683 +7187;3;-0.27018738;0.0015716553;-0.019500732 +7187;12;0.23969612;-0.04363099;-0.27121985;0.93117243 +7189;0;-0.21009827;4.684494;9.122772 +7189;1;-0.4805872;4.606961;8.647604 +7189;3;-0.26408386;-0.00881958;-0.01461792 +7191;0;-0.22921753;4.6749725;9.132294 +7192;12;0.23908149;-0.04344265;-0.2712898;0.9313188 +7192;3;-0.25920105;-0.02104187;-0.012176514 +7194;0;-0.21487427;4.6749725;9.117996 +7194;1;-0.47990572;4.595923;8.653514 +7194;3;-0.25308228;-0.033859253;-0.009124756 +7195;5;999.589 +7196;4;-12.107849;-6.1401367;-63.746643 +7196;6;0.52528405;-0.4736585;0.023561591 +7196;7;0.87033033;0.44625092;-0.2082913;0.0;-0.49202195;0.7699298;-0.40635282;0.0;-0.020965649 +7196;0;-0.22921753;4.703491;9.108459 +7197;3;-0.24697876;-0.046691895;-0.003616333 +7197;12;0.23847711;-0.043313093;-0.27135214;0.93146163 +7199;0;-0.24354553;4.717743;9.156143 +7199;1;-0.4780377;4.5854206;8.659186 +7199;2;-0.3044539;-0.06834984;-0.48495293; +7199;3;-0.23965454;-0.06074524;-5.79834E-4 +7201;0;-0.24832153;4.6797333;9.151382 +7201;12;0.23788191;-0.04325017;-0.2714123;0.9315992 +7202;3;-0.23353577;-0.07418823;0.004928589 +7204;0;-0.26264954;4.6797333;9.184769 +7205;1;-0.4748796;4.5754523;8.664632 +7205;3;-0.22621155;-0.08639526;0.007980347 +7206;4;-12.5564575;-4.6401978;-63.597107 +7206;6;0.5294917;-0.47106144;0.028588414 +7206;7;0.8692636;0.4500834;-0.20446445;0.0;-0.49369222;0.7690651;-0.40596417;0.0;-0.025471296 +7206;0;-0.24354553;4.6559753;9.203827 +7206;3;-0.21949768;-0.0967865;0.00920105 +7207;12;0.23729616;-0.043260287;-0.2714676;0.931732 +7208;0;-0.25309753;4.6749725;9.203827 +7208;1;-0.47057354;4.566043;8.669827 +7208;3;-0.2109375;-0.10473633;0.011642456 +7211;0;-0.22921753;4.670227;9.227692 +7211;12;0.23672484;-0.04333745;-0.27152085;0.9318582 +7211;3;-0.20178223;-0.11021423;0.015304565 +7213;0;-0.22921753;4.6654816;9.227692 +7213;1;-0.46548107;4.557327;8.674688 +7214;3;-0.19322205;-0.1138916;0.01776123 +7216;4;-10.757446;-3.741455;-63.29651 +7216;6;0.4567306;-0.46799;0.024835074 +7216;7;0.90216255;0.3935967;-0.17659095;0.0;-0.4308266;0.80099714;-0.41568258;0.0;-0.022162449 +7216;0;-0.25787354;4.703491;9.213379 +7216;3;-0.18101501;-0.11816406;0.02142334 +7216;12;0.23618072;-0.043463424;-0.27157044;0.931976 +7218;0;-0.20533752;4.6892242;9.227692 +7218;1;-0.45990795;4.549462;8.679112 +7218;3;-0.17245483;-0.11816406;0.023864746 +7218;2;-0.2566144;-0.099123955;-0.5431528; +7220;0;-0.20533752;4.670227;9.227692 +7221;12;0.23567282;-0.043626446;-0.27160856;0.93208575 +7221;3;-0.15840149;-0.11633301;0.029968262 +7223;0;-0.20533752;4.6654816;9.222916 +7223;1;-0.45409772;4.54249;8.683069 +7223;3;-0.1431427;-0.1138916;0.034866333 +7225;4;-12.857056;-4.6401978;-63.89618 +7225;6;0.52654827;-0.4682229;0.022260163 +7225;7;0.86938095;0.44846335;-0.20750284;0.0;-0.49374312;0.77149725;-0.40126035;0.0;-0.0198627 +7225;0;-0.22921753;4.6559753;9.227692 +7226;3;-0.13214111;-0.11265564;0.039138794 +7226;12;0.23521163;-0.04380917;-0.27162895;0.9321878 +7228;1;-0.44823456;4.536651;8.686426 +7228;0;-0.22921753;4.6654816;9.237228 +7228;3;-0.11808777;-0.106552124;0.044631958 +7230;0;-0.19577026;4.670227;9.213379 +7230;12;0.2348123;-0.04400814;-0.27162158;0.93228126 +7230;3;-0.104034424;-0.09983826;0.051345825 +7232;0;-0.22442627;4.6749725;9.213379 +7232;1;-0.44257066;4.532004;8.689142 +7232;3;-0.08753967;-0.091293335;0.058685303 +7233;5;999.589 +7234;4;-12.5564575;-4.3411255;-63.597107 +7234;6;0.51784664;-0.46943942;0.02435392 +7234;7;0.8740826;0.4414611;-0.20271079;0.0;-0.4852916;0.7748927;-0.40501043;0.0;-0.021717217 +7235;0;-0.21009827;4.6654816;9.189545 +7235;3;-0.07533264;-0.0821228;0.06539917 +7235;12;0.23448145;-0.044206508;-0.27158123;0.9323668 +7237;1;-0.43730816;4.5286136;8.691175 +7238;0;-0.22921753;4.6322327;9.175232 +7238;2;-0.25982144;-0.1047616;-0.53947544; +7238;3;-0.060058594;-0.071121216;0.07333374 +7239;0;-0.21966553;4.646469;9.146606 +7240;12;0.23422593;-0.044394314;-0.2714973;0.93244654 +7240;3;-0.043563843;-0.059524536;0.08250427 +7242;1;-0.43257514;4.5265117;8.692507 +7242;0;-0.18144226;4.636963;9.11322 +7242;3;-0.028289795;-0.047912598;0.092285156 +7244;4;-11.207581;-4.0405273;-63.89618 +7244;6;0.45874435;-0.4705963;0.019907156 +7244;7;0.9004283;0.3946869;-0.18289615;0.0;-0.43464234;0.799146;-0.41527283;0.0;-0.017742036 +7245;0;-0.18621826;4.6654816;9.117996 +7245;3;-0.013031006;-0.03692627;0.09899902 +7246;12;0.2340503;-0.044564746;-0.27136016;0.9325224 +7246;0;-0.20533752;4.6749725;9.075058 +7247;1;-0.4284119;4.525789;8.6930895 +7248;3;4.119873E-4;-0.027145386;0.10632324 +7252;0;-0.22921753;4.660721;9.089371 +7252;12;0.23395972;-0.04471287;-0.2711695;0.9325935 +7252;3;0.014465332;-0.01675415;0.11488342 +7252;1;-0.424822;4.5262604;8.693021 +7252;0;-0.22442627;4.6559753;9.070297 +7252;3;0.026062012;-0.007598877;0.12464905 +7257;4;-13.006592;-4.4906616;-62.997437 +7258;6;0.5342501;-0.47412336;0.024737941 +7258;7;0.8661378;0.45302808;-0.21111806;0.0;-0.49932054;0.76571524;-0.4054125;0.0;-0.022006938 +7258;0;-0.26264954;4.684494;8.979691 +7258;3;0.036453247;0.002166748;0.13320923 +7258;12;0.23394586;-0.044840492;-0.27093124;0.9326602 +7258;1;-0.42166907;4.5278187;8.692363 +7258;2;-0.24296257;-0.10422373;-0.4000063; +7258;0;-0.23399353;4.6654816;9.008301 +7259;3;0.04499817;0.0113220215;0.13931274 +7268;12;0.23399624;-0.044951078;-0.27063853;0.9327272 +7268;12;0.23410042;-0.045044217;-0.27030122;0.93279433 +7269;0;-0.24354553;4.6797333;9.003525 +7269;3;0.0541687;0.016830444;0.14787292 +7269;0;-0.25309753;4.684494;8.936752 +7269;3;0.06149292;0.02293396;0.15704346 +7269;4;-13.006592;-3.741455;-64.19678 +7269;6;0.5131421;-0.48264155;0.028313406 +7269;7;0.87730736;0.43484062;-0.20308988;0.0;-0.4792735;0.7716902;-0.41808042;0.0;-0.025075873 +7269;0;-0.24354553;4.7082367;8.922455 +7269;3;0.06700134;0.029647827;0.16253662 +7269;0;-0.28652954;4.7557526;8.917694 +7269;1;-0.41890085;4.5301847;8.691264 +7269;1;-0.4163127;4.5332646;8.689782 +7269;3;0.07249451;0.033935547;0.16925049 +7269;0;-0.27697754;4.7700043;8.908142 +7270;12;0.23424797;-0.045127604;-0.26991975;0.9328638 +7270;3;0.075546265;0.036376953;0.175354 +7272;1;-0.4138674;4.5368447;8.688029 +7272;0;-0.3199768;4.784256;8.81752 +7272;3;0.07859802;0.038208008;0.18025208 +7272;5;999.589 +7274;4;-12.107849;-4.79126;-64.497375 +7274;6;0.5020452;-0.49685687;0.036272835 +7274;7;0.8843421;0.4230328;-0.19743967;0.0;-0.46574974;0.7706062;-0.43502098;0.0;-0.031879917 +7274;0;-0.2960968;4.784256;8.803207 +7275;3;0.079208374;0.037597656;0.18452454 +7275;12;0.23442614;-0.045203667;-0.26950434;0.9329354 +7276;1;-0.41132268;4.540708;8.6861315 +7276;2;-0.17258504;-0.17767859;-0.21417141; +7276;0;-0.3056488;4.8127594;8.755524 +7277;3;0.079818726;0.0357666;0.18818665 +7278;0;-0.3152008;4.8222656;8.769836 +7278;12;0.23461893;-0.04528287;-0.26906407;0.93301016 +7279;3;0.08166504;0.03149414;0.1924591 +7281;1;-0.40843943;4.5446978;8.684182 +7281;0;-0.3056488;4.8460083;8.769836 +7281;3;0.080444336;0.025985718;0.19735718 +7283;4;-12.406921;-4.4906616;-63.29651 +7283;6;0.5046354;-0.5045625;0.03483818 +7283;7;0.88296074;0.4232389;-0.20309882;0.0;-0.46845555;0.76626986;-0.43974972;0.0;-0.030490687 +7285;0;-0.29130554;4.8317566;8.726913 +7285;12;0.23481336;-0.04537811;-0.26860765;0.9330881 +7285;3;0.08226013;0.021102905;0.19918823 +7285;1;-0.4049349;4.548772;8.682212 +7286;0;-0.2817688;4.874527;8.693527 +7286;3;0.08226013;0.015609741;0.20040894 +7289;0;-0.3152008;4.869766;8.750748 +7289;3;0.08226013;0.012542725;0.20223999 +7289;12;0.23500413;-0.045501243;-0.26813912;0.9331689 +7290;1;-0.40100688;4.55287;8.680246 +7290;0;-0.3152008;4.86026;8.745987 +7290;3;0.08288574;0.0070648193;0.2046814 +7293;4;-13.006592;-4.4906616;-62.547302 +7293;6;0.52724624;-0.5069434;0.036023885 +7293;7;0.8724335;0.43987495;-0.21300226;0.0;-0.4877177;0.7555083;-0.43742296;0.0;-0.031486444 +7293;0;-0.32476807;4.8982697;8.712601 +7293;3;0.08166504;0.0052337646;0.20651245 +7296;1;-0.39662865;4.557026;8.678267 +7296;12;0.23519072;-0.04564619;-0.26766932;0.9332497 +7296;2;-0.12997317;-0.2736745;-0.0756464; +7296;0;-0.30085754;4.869766;8.726913 +7296;3;0.08103943;0.0015716553;0.2071228 +7298;12;0.23537277;-0.04581339;-0.26719108;0.9333327 +7298;0;-0.2960968;4.893524;8.703064 +7298;3;0.079818726;-8.69751E-4;0.20956421 +7301;1;-0.39196023;4.5610847;8.676346 +7302;0;-0.30085754;4.8650208;8.688751 +7302;3;0.07859802;-0.0027160645;0.21017456 +7302;4;-13.456726;-3.741455;-62.997437 +7302;6;0.52068824;-0.5101734;0.03461227 +7302;7;0.8753642;0.43412846;-0.21276754;0.0;-0.48252004;0.75701237;-0.44057548;0.0;-0.030198706 +7302;0;-0.25787354;4.884018;8.674438 +7302;3;0.07737732;-0.0051574707;0.21322632 +7303;12;0.23554568;-0.045993857;-0.26671284;0.93341696 +7310;1;-0.38700253;4.5650487;8.674484 +7310;0;-0.27697754;4.874527;8.6792145 +7310;3;0.07676697;-0.006378174;0.21629333 +7310;0;-0.29130554;4.8887787;8.6792145 +7310;12;0.23571028;-0.046183676;-0.26622987;0.9335038 +7310;3;0.07737732;-0.0069885254;0.21873474 +7311;1;-0.381828;4.569;8.672633 +7311;0;-0.27697754;4.917267;8.664902 +7311;3;0.07371521;-0.0082092285;0.2217865 +7311;5;999.589 +7311;4;-13.006592;-3.440857;-62.997437 +7311;6;0.49414688;-0.51595473;0.031954575 +7312;7;0.8874001;0.41253987;-0.20574713;0.0;-0.46016163;0.7657684;-0.44927713;0.0;-0.027790066 +7312;0;-0.2722168;4.9030304;8.674438 +7312;3;0.07371521;-0.00881958;0.22361755 +7312;12;0.2358719;-0.046383042;-0.2657353;0.9335941 +7314;0;-0.26264954;4.8982697;8.6362915 +7314;1;-0.37644625;4.5728183;8.6708555 +7314;2;-0.13683152;-0.29008627;-0.020634651; +7314;3;0.07249451;-0.006378174;0.22605896 +7316;0;-0.26264954;4.907776;8.65538 +7317;12;0.23602414;-0.046587676;-0.26523033;0.933689 +7317;3;0.07249451;-0.004547119;0.22789001 +7318;0;-0.22921753;4.9030304;8.664902 +7319;1;-0.37107164;4.5765843;8.6691 +7319;3;0.07310486;-0.0014953613;0.23155212 +7321;4;-12.5564575;-4.3411255;-63.597107 +7321;6;0.47973022;-0.51478034;0.026447395 +7321;7;0.89281833;0.4017247;-0.20369752;0.0;-0.44982845;0.77214956;-0.44882;0.0;-0.023017153 +7321;0;-0.21966553;4.874527;8.65538 +7321;3;0.07310486;0.0033874512;0.23399353 +7322;12;0.236173;-0.04678869;-0.26471344;0.933788 +7323;0;-0.23876953;4.9030304;8.65538 +7323;1;-0.3658179;4.580362;8.667328 +7324;3;0.07249451;0.0046081543;0.23950195 +7327;12;0.23632766;-0.04697902;-0.26418012;0.93389034 +7327;0;-0.21009827;4.8887787;8.607666 +7327;3;0.07310486;0.0070648193;0.24255371 +7333;2;-0.16567478;-0.28453588;0.00898838; +7333;12;0.23648421;-0.047162496;-0.26362562;0.93399817 +7334;1;-0.36056083;4.5841484;8.665546 +7334;1;-0.3554856;4.5880413;8.663695 +7334;0;-0.20533752;4.884018;8.626755 +7334;3;0.07371521;0.0113220215;0.24743652 +7334;4;-12.5564575;-3.590393;-62.69684 +7334;6;0.4706933;-0.51503474;0.023797914 +7334;7;0.8963172;0.39467368;-0.2021091;0.0;-0.44292948;0.7756366;-0.44966775;0.0;-0.020708788 +7334;0;-0.24832153;4.9220276;8.621979 +7334;3;0.075546265;0.016220093;0.25172424 +7334;0;-0.22442627;4.9125214;8.621979 +7334;3;0.076156616;0.018051147;0.25660706 +7335;0;-0.24832153;4.893524;8.617218 +7336;12;0.23664892;-0.047333192;-0.26304737;0.93411076 +7336;3;0.07676697;0.02293396;0.2596588 +7338;0;-0.23399353;4.893524;8.588608 +7338;1;-0.35051003;4.5919995;8.6618 +7338;3;0.079208374;0.02720642;0.26332092 +7340;4;-11.657715;-3.440857;-63.29651 +7340;6;0.4433797;-0.5177347;0.027237901 +7340;7;0.90875417;0.3727718;-0.1876352;0.0;-0.4166602;0.78492177;-0.458576;0.0;-0.023665244 +7340;0;-0.19577026;4.8982697;8.569519 +7340;3;0.079208374;0.032104492;0.26516724 +7341;12;0.23682132;-0.047495577;-0.26244396;0.93422854 +7342;0;-0.23399353;4.917267;8.574295 +7343;1;-0.3457469;4.5961027;8.659816 +7343;3;0.08103943;0.036376953;0.26882935 +7345;0;-0.19577026;4.9267883;8.559982 +7345;12;0.23700638;-0.047643166;-0.26182285;0.93434846 +7346;3;0.08288574;0.03942871;0.2743225 +7347;0;-0.20054626;4.9267883;8.536133 +7347;1;-0.34114325;4.600355;8.657741 +7347;3;0.084106445;0.04309082;0.27676392 +7348;5;999.58856 +7350;4;-12.107849;-4.79126;-63.29651 +7350;6;0.46143436;-0.5233431;0.023489486 +7350;7;0.90039414;0.38563994;-0.2014256;0.0;-0.4345993;0.77556646;-0.457843;0.0;-0.020343624 +7350;0;-0.18621826;4.9315186;8.521835 +7350;3;0.084106445;0.045532227;0.27983093 +7350;12;0.23720281;-0.047779553;-0.26117983;0.9344715 +7352;0;-0.20054626;4.9552917;8.502762 +7352;1;-0.33665097;4.604731;8.655589 +7352;2;-0.1649648;-0.2870741;0.08121586; +7352;3;0.084106445;0.046157837;0.28286743 +7354;0;-0.19099426;4.98378;8.483673 +7355;12;0.23741035;-0.047907114;-0.26051763;0.93459713 +7355;3;0.08532715;0.04737854;0.28652954 +7357;0;-0.18621826;5.007553;8.464584 +7357;1;-0.33211383;4.6092057;8.653382 +7357;3;0.08470154;0.04675293;0.28775024 +7359;4;-11.657715;-3.741455;-62.997437 +7359;6;0.4263323;-0.5341058;0.021996146 +7359;7;0.9148985;0.35593888;-0.19044197;0.0;-0.40323967;0.78367954;-0.47248715;0.0;-0.018931087 +7360;0;-0.16711426;5.0122986;8.421677 +7361;3;0.084106445;0.04675293;0.28715515 +7362;12;0.23762327;-0.048034687;-0.2598377;0.93472576 +7363;0;-0.143219;5.031311;8.464584 +7363;1;-0.32747012;4.613706;8.651161 +7364;3;0.083480835;0.046157837;0.2889862 +7365;0;-0.12411499;5.0265503;8.450302 +7366;12;0.23783459;-0.04816654;-0.25915217;0.9348555 +7367;3;0.08288574;0.046157837;0.28775024 +7367;0;-0.12890625;5.0693054;8.426437 +7368;1;-0.3227419;4.618172;8.648955 +7368;3;0.08226013;0.044311523;0.2902069 +7369;4;-13.006592;-5.8410645;-63.29651 +7369;6;0.46990225;-0.5415401;0.015296643 +7369;7;0.89507824;0.38801077;-0.21973273;0.0;-0.44571635;0.76403695;-0.46645957;0.0;-0.0131074255 +7369;0;-0.12411499;5.0550537;8.459839 +7370;3;0.08103943;0.044921875;0.28959656 +7371;12;0.23804449;-0.048300155;-0.25846472;0.9349855 +7372;0;-0.08590698;5.0693054;8.407364 +7372;1;-0.3178583;4.6226068;8.646768 +7372;2;-0.21459913;-0.38440132;0.18451881; +7372;3;0.080444336;0.045532227;0.28775024 +7374;0;-0.08590698;5.0883026;8.421677 +7374;12;0.23825172;-0.048440535;-0.25776976;0.9351173 +7375;3;0.07676697;0.046157837;0.2889862 +7376;0;-0.057235718;5.121567;8.445526 +7376;1;-0.31304416;4.626919;8.644636 +7377;3;0.076156616;0.04737854;0.28959656 +7379;4;-13.607788;-2.9907227;-63.146973 +7379;6;0.43584815;-0.54511917;0.006776942 +7379;7;0.907975;0.36099103;-0.21276008;0.0;-0.41898423;0.77512735;-0.47289503;0.0;-0.0057946844 +7379;0;-0.042907715;5.1120605;8.435989 +7379;3;0.07493591;0.049209595;0.28959656 +7380;12;0.23845221;-0.04857684;-0.2570814;0.9352486 +7381;0;-0.057235718;5.1263123;8.450302 +7381;1;-0.30827516;4.6311016;8.642568 +7381;3;0.07310486;0.051651;0.28837585 +7383;0;-0.028564453;5.154831;8.46936 +7384;12;0.2386474;-0.04870675;-0.25638917;0.9353821 +7384;3;0.07066345;0.05531311;0.2902069 +7386;0;-0.033355713;5.140564;8.49321 +7387;3;0.0700531;0.05836487;0.29264832 +7387;1;-0.30370176;4.635124;8.640573 +7387;5;999.58856 +7388;4;-11.506653;-2.9907227;-63.597107 +7388;6;0.369583;-0.5442716;0.0039273184 +7388;7;0.9332054;0.30903107;-0.1833778;0.0;-0.3593276;0.7977393;-0.48424748;0.0;-0.0033598307 +7388;0;-0.033355713;5.1785736;8.455063 +7389;3;0.06700134;0.06263733;0.29325867 +7389;12;0.23883761;-0.04882298;-0.25569487;0.9355175 +7390;0;-0.0046844482;5.1453247;8.488449 +7391;2;-0.29760784;-0.47090387;0.16698647; +7391;1;-0.29932132;4.639023;8.638633 +7391;3;0.06271362;0.065704346;0.29570007 +7393;0;0.0048675537;5.1358337;8.521835 +7394;12;0.23902132;-0.04892473;-0.25498837;0.9356582 +7394;3;0.06149292;0.07119751;0.29753113 +7395;0;-0.023803711;5.140564;8.550446 +7396;3;0.056610107;0.07608032;0.30119324 +7396;1;-0.29517564;4.6425858;8.636861 +7398;4;-13.006592;-2.8411865;-64.19678 +7398;6;0.40656728;-0.54130286;0.0027839076 +7398;7;0.9190475;0.33892328;-0.20120355;0.0;-0.3941398;0.78717566;-0.4743506;0.0;-0.002385912 +7398;0;0.0048675537;5.173828;8.579071 +7398;3;0.05355835;0.08279419;0.30241394 +7399;12;0.2391938;-0.049005423;-0.25426936;0.93580544 +7401;0;-0.01423645;5.1833344;8.564758 +7401;1;-0.29136223;4.645874;8.635222 +7401;3;0.04989624;0.08830261;0.3060913 +7408;1;-0.2879121;4.648818;8.633754 +7408;12;0.23935726;-0.04905947;-0.253534;0.9359605 +7408;0;-0.028564453;5.164322;8.574295 +7409;3;0.04560852;0.093185425;0.3085327 +7409;0;-0.009475708;5.1690826;8.660141 +7410;3;0.040725708;0.0993042;0.31036377 +7410;4;-12.107849;-3.1402588;-63.746643 +7410;6;0.3859651;-0.53812355;0.0010941743 +7410;7;0.9266461;0.32325003;-0.19192821;0.0;-0.3759337;0.7955043;-0.47523358;0.0;-9.395367E-4 +7410;0;0.0048675537;5.1785736;8.650604 +7410;3;0.035232544;0.105407715;0.31219482 +7410;12;0.23950715;-0.049087044;-0.25278047;0.93612444 +7410;0;-0.009475708;5.164322;8.698288 +7411;2;-0.31781358;-0.4900217;0.018994331; +7412;3;0.031570435;0.11212158;0.31463623 +7412;1;-0.2848316;4.651325;8.632505 +7412;0;-0.028564453;5.1690826;8.731674 +7413;12;0.23963939;-0.049083013;-0.25201285;0.93629766 +7414;3;0.026062012;0.11578369;0.31707764 +7416;0;-0.019012451;5.197586;8.769836 +7416;1;-0.28215593;4.6534195;8.631465 +7416;3;0.02178955;0.12373352;0.3189087 +7417;4;-12.257385;-3.2913208;-63.146973 +7417;6;0.39957;-0.5350085;0.0021679334 +7418;7;0.92165625;0.33466193;-0.19634475;0.0;-0.38800305;0.79249984;-0.47052908;0.0;-0.0018649941 +7419;17;1;38dead6d7725;4353;757;-59; +7421;17;1;38dead6d60ff;3501;3929;-58; +7422;17;1;1c1bb5efa29a;12862;248;-69; +7423;17;1;1c1bb5ecd182;10592;2308;-69; +7423;0;-0.038131714;5.173828;8.827072 +7424;3;0.018127441;0.13105774;0.32258606 +7424;12;0.2397559;-0.049048632;-0.25122884;0.93648034 +7424;0;-0.028564453;5.2165833;8.822296 +7424;1;-0.27993825;4.6551166;8.630622 +7424;3;0.015075684;0.14021301;0.3244171 +7424;0;-0.07635498;5.211838;8.884293 +7424;12;0.2398599;-0.048980057;-0.25042814;0.93667173 +7424;3;0.010192871;0.14694214;0.32563782 +7426;0;-0.01423645;5.2450867;8.931976 +7426;1;-0.27830145;4.6565022;8.629928 +7426;3;0.0059051514;0.15184021;0.32868958 +7427;5;999.58856 +7427;4;-12.406921;-3.440857;-62.997437 +7427;6;0.40815085;-0.53097314;0.0015938734 +7427;7;0.9181755;0.34226367;-0.19952261;0.0;-0.39617142;0.79148096;-0.46540946;0.0;-0.0013744198 +7427;0;-0.033355713;5.2926025;8.931976 +7427;3;0.0028533936;0.15550232;0.3335724 +7428;12;0.23995692;-0.048874125;-0.24960363;0.93687254 +7430;0;-0.042907715;5.278351;8.974915 +7431;2;-0.28419814;-0.5440359;-0.24299145; +7431;3;0.0010223389;0.15731812;0.33784485 +7431;1;-0.2769433;4.6575727;8.629394 +7431;0;-0.047683716;5.287857;9.03215 +7432;3;-0.002029419;0.15672302;0.34274292 +7432;12;0.24003884;-0.048743133;-0.24876599;0.93708104 +7434;0;-0.028564453;5.321106;9.046463 +7434;3;-0.0014190674;0.15550232;0.34823608 +7434;1;-0.2755192;4.6584215;8.628981 +7437;4;-12.857056;-3.590393;-63.89618 +7437;6;0.41952506;-0.5316937;0.003157517 +7437;7;0.91393;0.35109508;-0.20362747;0.0;-0.40586263;0.7872034;-0.46431252;0.0;-0.0027216156 +7437;0;-0.009475708;5.3496094;9.065521 +7437;3;-0.0014190674;0.15184021;0.35250854 +7438;12;0.24011128;-0.048608642;-0.24790552;0.9372975 +7439;1;-0.27368334;4.659292;8.628569 +7439;0;-0.0046844482;5.4161377;9.108459 +7439;3;0.0016326904;0.14572144;0.356781 +7442;0;0.019195557;5.454132;9.13707 +7442;3;0.0040740967;0.14266968;0.36167908 +7442;12;0.24018121;-0.048488285;-0.24701838;0.9375201 +7443;0;0.028747559;5.501648;9.199066 +7443;1;-0.27123028;4.660388;8.628056 +7444;3;0.006515503;0.1353302;0.3665619 +7448;4;-12.257385;-4.0405273;-64.34631 +7448;6;0.3870358;-0.5389941;-0.0031250417 +7448;7;0.925422;0.32393304;-0.1966253;0.0;-0.37892872;0.79474425;-0.4741253;0.0;0.0026819862 +7448;0;0.066970825;5.549164;9.256302 +7448;3;0.010787964;0.13105774;0.3714447 +7448;12;0.24025434;-0.04840028;-0.24612102;0.9377419 +7449;1;-0.2680488;4.661774;8.627406 +7449;2;-0.32372355;-0.7563286;-0.52703667; +7449;0;0.07652283;5.6299133;9.289688 +7449;3;0.0138549805;0.12800598;0.37451172 +7451;12;0.24033576;-0.048348878;-0.2452064;0.93796325 +7451;0;0.09562683;5.6726837;9.337372 +7451;3;0.015686035;0.12556458;0.3763275 +7453;0;0.119506836;5.7439423;9.38031 +7454;1;-0.26441842;4.663475;8.626597 +7458;3;0.018737793;0.12251282;0.37939453 +7458;4;-11.956787;-3.590393;-61.94763 +7458;6;0.36340803;-0.5494077;-0.012739491 +7458;7;0.9322503;0.30314982;-0.19750789;0.0;-0.3616506;0.797136;-0.483511;0.0;0.010864376 +7458;0;0.09085083;5.7106934;9.385086 +7458;3;0.019348145;0.117004395;0.38061523 +7458;12;0.24042757;-0.048320226;-0.24427935;0.938183 +7458;0;0.10997009;5.7439423;9.4375305 +7458;3;0.019348145;0.11151123;0.38183594 +7459;1;-0.2604056;4.6653376;8.625713 +7460;0;0.10517883;5.734436;9.504303 +7461;12;0.24052195;-0.04831185;-0.24334599;0.93840176 +7461;3;0.016906738;0.109680176;0.38183594 +7462;0;0.09085083;5.7486877;9.571075 +7463;1;-0.25597972;4.6670976;8.624894 +7463;3;0.012634277;0.11090088;0.38061523 +7464;5;999.58856 +7465;4;-12.5564575;-2.6901245;-63.597107 +7465;6;0.3735018;-0.5408637;-0.009491943 +7465;7;0.92923015;0.3127969;-0.19669606;0.0;-0.3694117;0.79816043;-0.47589365;0.0;0.008136981 +7465;0;0.066970825;5.7629547;9.647385 +7466;3;0.0071258545;0.11395264;0.37817383 +7466;12;0.2406057;-0.04832176;-0.24241444;0.938621 +7467;0;-0.0046844482;5.7677;9.685532 +7467;1;-0.25176635;4.6684556;8.624282 +7468;2;-0.3799128;-1.0476503;-0.88129044; +7468;3;4.119873E-4;0.117004395;0.37573242 +7470;0;-0.023803711;5.7629547;9.690308 +7470;12;0.24067144;-0.048315298;-0.24148951;0.9388427 +7470;3;-0.0069122314;0.12251282;0.37573242 +7472;0;-0.038131714;5.7296906;9.723679 +7472;1;-0.24801332;4.6692195;8.623978 +7472;3;-0.014846802;0.12556458;0.3714447 +7474;4;-13.607788;-3.2913208;-63.146973 +7474;6;0.44310853;-0.53247523;0.0039215116 +7474;7;0.9042699;0.3693908;-0.21411788;0.0;-0.426948;0.77834713;-0.4603164;0.0;-0.003378582 +7474;0;-0.07635498;5.701187;9.709381 +7475;3;-0.028289795;0.12739563;0.370224 +7475;12;0.24070953;-0.048279162;-0.24057102;0.9390707 +7477;0;-0.11933899;5.7296906;9.733231 +7477;3;-0.039901733;0.12678528;0.36839294 +7478;1;-0.24472909;4.6691775;8.624094 +7479;0;-0.143219;5.6869354;9.761841 +7480;12;0.24071044;-0.048209786;-0.23966253;0.9393062 +7480;3;-0.052108765;0.12556458;0.3677826 +7481;0;-0.20054626;5.625183;9.78093 +7481;1;-0.24158548;4.6680393;8.624799 +7482;3;-0.06921387;0.12188721;0.36839294 +7485;4;-12.406921;-3.1402588;-62.997437 +7485;6;0.4473314;-0.5218317;0.02050093 +7485;7;0.9058352;0.37499043;-0.19709048;0.0;-0.42325723;0.78160787;-0.4581947;0.0;-0.017771168 +7485;0;-0.23876953;5.644165;9.833389 +7486;3;-0.08631897;0.117004395;0.3677826 +7486;12;0.24065246;-0.048119035;-0.23876469;0.9395544 +7487;2;-0.14024848;-0.99654293;-1.1507711; +7487;1;-0.23828208;4.665494;8.626267 +7487;0;-0.2960968;5.568161;9.89061 +7487;3;-0.108306885;0.11151123;0.36839294 +7489;12;0.24051338;-0.0480176;-0.23787613;0.9398205 +7489;0;-0.34864807;5.5253906;9.933533 +7489;3;-0.1272583;0.10845947;0.37205505 +7491;0;-0.38685608;5.468399;10.000305 +7492;1;-0.23466705;4.661145;8.628717 +7492;3;-0.1455841;0.104782104;0.37695312 +7494;12;0.24027315;-0.047909625;-0.23699363;0.9401104 +7499;1;-0.23067515;4.6551614;8.632054 +7499;4;-11.357117;-4.4906616;-63.29651 +7499;6;0.4850196;-0.5000863;0.03866515 +7499;7;0.89264625;0.40913227;-0.18919152;0.0;-0.44947967;0.7763307;-0.4419035;0.0;-0.033921808 +7499;0;-0.41552734;5.4731293;10.048004 +7500;3;-0.16513062;0.1023407;0.3824463 +7500;0;-0.46806335;5.4066315;10.043243 +7500;3;-0.18101501;0.1005249;0.3897705 +7500;0;-0.5158386;5.3163605;10.100464 +7500;12;0.23993844;-0.047793504;-0.23609985;0.9404266 +7500;3;-0.19444275;0.09623718;0.3995514 +7501;0;-0.5301666;5.2736053;10.114777 +7501;1;-0.22625028;4.6476936;8.636194 +7501;3;-0.20910645;0.09257507;0.40994263 +7502;5;999.58984 +7503;4;-12.5564575;-2.9907227;-64.64691 +7503;6;0.5351583;-0.48003992;0.052367136 +7503;7;0.8713364;0.4523378;-0.1901671;0.0;-0.48848492;0.76296645;-0.42339662;0.0;-0.04642719 +7504;0;-0.54927063;5.211838;10.124298 +7504;3;-0.21827698;0.089523315;0.4203186 +7504;12;0.23952016;-0.047674708;-0.23518;0.9407698 +7506;0;-0.55882263;5.1263123;10.167236 +7506;1;-0.22112752;4.6390395;8.64098 +7506;2;0.20733982;-0.6916957;-1.4371977; +7506;3;-0.2268219;0.0846405;0.42886353 +7508;0;-0.5922699;5.0930634;10.200623 +7508;12;0.2390296;-0.04756532;-0.234222;0.941139 +7508;3;-0.23170471;0.080963135;0.4386444 +7510;0;-0.6161499;5.0550537;10.248322 +7510;1;-0.21529463;4.6295767;8.6462 +7510;3;-0.23475647;0.07913208;0.44659424 +7512;4;-12.70752;-4.1915894;-64.19678 +7512;6;0.599297;-0.45752314;0.06004975 +7513;7;0.83919716;0.50604796;-0.19915734;0.0;-0.5411556;0.74080527;-0.39794257;0.0;-0.053841222 +7513;0;-0.6257019;4.998047;10.272156 +7513;3;-0.23538208;0.076690674;0.45391846 +7514;12;0.23848891;-0.047471855;-0.23322289;0.9415289 +7515;0;-0.6113739;4.974289;10.305542 +7515;1;-0.20897803;4.6198316;8.651566 +7515;3;-0.23292542;0.073638916;0.46124268 +7518;12;0.23792912;-0.047395457;-0.23219611;0.941928 +7518;0;-0.59706116;4.9267883;10.310318 +7518;3;-0.22377014;0.07424927;0.4679718 +7520;0;-0.6018219;4.884018;10.257843 +7520;1;-0.20219249;4.610301;8.65681 +7520;3;-0.21459961;0.073638916;0.47102356 +7522;4;-12.107849;-3.1402588;-64.19678 +7522;6;0.57654905;-0.44369954;0.058602262 +7522;7;0.8506158;0.49234855;-0.1845144;0.0;-0.52312;0.7571713;-0.39119953;0.0;-0.052897498 +7522;0;-0.6018219;4.8460083;10.248322 +7523;3;-0.19995117;0.073028564;0.47407532 +7523;12;0.23737818;-0.047338743;-0.23113832;0.94232994 +7525;0;-0.6018219;4.7700043;10.26738 +7525;1;-0.19524439;4.601564;8.661616 +7525;2;0.3688699;-0.32083035;-1.6144428; +7525;3;-0.18711853;0.073028564;0.47529602 +7527;0;-0.5874939;4.7414856;10.26738 +7527;12;0.23686804;-0.047298092;-0.23006055;0.94272405 +7527;3;-0.16940308;0.07485962;0.47651672 +7529;0;-0.5779419;4.703491;10.257843 +7529;1;-0.18825726;4.593943;8.665815 +7530;3;-0.1486206;0.076690674;0.47468567 +7532;4;-12.107849;-3.1402588;-64.497375 +7532;6;0.5862296;-0.42932168;0.05628196 +7532;7;0.8446673;0.5030181;-0.18305725;0.0;-0.53284246;0.75743335;-0.37732425;0.0;-0.051147263 +7532;0;-0.5636139;4.65123;10.219696 +7532;3;-0.1272583;0.076690674;0.47468567 +7533;12;0.23642008;-0.04727384;-0.22897086;0.9431029 +7534;0;-0.5540619;4.5989685;10.21492 +7534;1;-0.18141368;4.587911;8.669156 +7535;3;-0.10771179;0.07791138;0.47346497 +7537;0;-0.48718262;4.57045;10.205383 +7537;12;0.23606035;-0.04726615;-0.22787745;0.9434582 +7537;3;-0.08570862;0.08157349;0.4716339 +7539;0;-0.44895935;4.5419617;10.124298 +7539;1;-0.17466277;4.5835366;8.671608 +7539;3;-0.064331055;0.08279419;0.4704132 +7541;5;999.58984 +7541;4;-12.5564575;-3.590393;-63.146973 +7541;6;0.6026705;-0.42133895;0.044315703 +7542;7;0.83328635;0.51726955;-0.19510557;0.0;-0.5513617;0.7517749;-0.36171117;0.0;-0.040426712 +7542;0;-0.43463135;4.5181885;10.067078 +7542;3;-0.043563843;0.085250854;0.4691925 +7543;12;0.23579462;-0.04727657;-0.2267812;0.9437882 +7545;1;-0.16814297;4.580904;8.673128 +7545;0;-0.44895935;4.456436;10.048004 +7545;2;0.30396122;0.0062537193;-1.5155964; +7546;3;-0.024627686;0.088912964;0.46614075 +7546;0;-0.5062866;4.4231873;10.019394 +7547;3;-0.0038604736;0.09074402;0.46369934 +7547;12;0.23562545;-0.047295455;-0.22568442;0.94409233 +7549;0;-0.5206146;4.3946686;9.962158 +7549;1;-0.16207533;4.579857;8.673797 +7549;3;0.016906738;0.09013367;0.45880127 +7552;4;-13.757324;-3.741455;-64.497375 +7552;6;0.65532005;-0.41495505;0.052211724 +7552;7;0.80459416;0.55769485;-0.20397192;0.0;-0.59190136;0.725567;-0.35100612;0.0;-0.04775904 +7552;0;-0.47763062;4.342407;9.900162 +7552;3;0.03767395;0.09074402;0.45269775 +7553;12;0.23554859;-0.047317777;-0.22459188;0.94437087 +7556;0;-0.40596008;4.3186646;9.828613 +7556;1;-0.15616365;4.5804935;8.673569 +7556;3;0.058441162;0.09074402;0.44659424 +7559;0;-0.36775208;4.290146;9.776154 +7559;3;0.08103943;0.09074402;0.44169617 +7559;12;0.23556504;-0.047361437;-0.22351263;0.9446207 +7560;1;-0.15041247;4.582864;8.672419 +7560;0;-0.3295288;4.2854004;9.785706 +7560;3;0.099365234;0.09257507;0.43559265 +7563;4;-11.956787;-2.9907227;-64.34631 +7563;6;0.55270153;-0.41255853;0.033661786 +7563;7;0.8577115;0.48094082;-0.18173277;0.0;-0.5132059;0.7796995;-0.35873148;0.0;-0.03083167 +7563;0;-0.3104248;4.2426453;9.761841 +7563;3;0.11647034;0.09501648;0.42886353 +7563;12;0.23567618;-0.047423642;-0.22245353;0.9448397 +7565;0;-0.26742554;4.2854004;9.714157 +7566;1;-0.14497791;4.5867896;8.670435 +7566;2;0.21346028;0.28938627;-1.1873341; +7566;3;0.13235474;0.097457886;0.4239807 +7567;0;-0.26742554;4.2426453;9.680771 +7567;12;0.23587741;-0.047495548;-0.22141437;0.9450301 +7567;3;0.14640808;0.101745605;0.4178772 +7569;1;-0.13999404;4.5920143;8.667751 +7570;0;-0.24832153;4.2378845;9.604462 +7570;3;0.15924072;0.10662842;0.40994263 +7572;4;-12.70752;-2.5405884;-64.19678 +7572;6;0.5496811;-0.41542292;0.025849054 +7572;7;0.85785556;0.47798166;-0.18872553;0.0;-0.51334643;0.7801661;-0.35751393;0.0;-0.023647847 +7573;0;-0.25309753;4.1713715;9.547226 +7573;3;0.17144775;0.109069824;0.4019928 +7573;12;0.23615311;-0.04756484;-0.22039355;0.94519633 +7573;1;-0.13565175;4.5982823;8.664496 +7574;0;-0.21966553;4.176132;9.456619 +7574;3;0.18305969;0.113342285;0.39465332 +7577;0;-0.21009827;4.123871;9.43277 +7577;12;0.23649265;-0.047622316;-0.21939829;0.94534 +7577;3;0.19284058;0.117630005;0.3885498 +7578;0;-0.20533752;4.0811005;9.370773 +7578;1;-0.1318762;4.6054835;8.660729 +7578;3;0.20077515;0.120666504;0.38000488 +7580;5;999.58984 +7581;4;-12.70752;-2.5405884;-64.19678 +7581;6;0.54680437;-0.41065422;0.021909041 +7581;7;0.85853285;0.4767306;-0.18881008;0.0;-0.512365;0.78317297;-0.35230982;0.0;-0.020085914 +7581;0;-0.20533752;4.0811005;9.356461 +7581;3;0.20687866;0.12617493;0.3714447 +7582;12;0.23688921;-0.047666214;-0.21842237;0.94546455 +7583;0;-0.21009827;4.0621033;9.313538 +7583;2;0.05942501;0.4939084;-0.82916737; +7583;1;-0.12879458;4.613259;8.656637 +7584;3;0.21238708;0.13044739;0.36351013 +7586;0;-0.22442627;4.052597;9.270599 +7586;3;0.21665955;0.1365509;0.356781 +7586;12;0.23732466;-0.04768992;-0.21748227;0.9455708 +7588;1;-0.12646022;4.621438;8.6523075 +7589;0;-0.18621826;4.009842;9.265839 +7589;3;0.21788025;0.14328003;0.34884644 +7591;4;-11.506653;-2.6901245;-64.34631 +7591;6;0.50801176;-0.40834764;0.020094585 +7591;7;0.8774182;0.44644502;-0.17556776;0.0;-0.4793716;0.8018752;-0.3566499;0.0;-0.018441133 +7591;0;-0.18621826;3.9908295;9.19429 +7592;3;0.22032166;0.14755249;0.34396362 +7592;12;0.23778842;-0.04768851;-0.21656942;0.94566387 +7593;0;-0.19577026;3.933838;9.132294 +7593;1;-0.124894045;4.629755;8.647883 +7594;3;0.22215271;0.1512146;0.33969116 +7595;0;-0.20533752;3.938568;9.08461 +7596;12;0.23826903;-0.04765326;-0.21568112;0.9457477 +7596;3;0.22398376;0.153656;0.33174133 +7597;1;-0.12387151;4.638223;8.643358 +7598;0;-0.21966553;3.9243164;9.046463 +7598;3;0.22581482;0.15428162;0.32563782 +7600;4;-11.506653;-2.6901245;-64.34631 +7600;6;0.5163286;-0.4091894;0.024277154 +7600;7;0.8741495;0.4529334;-0.17525451;0.0;-0.4851462;0.7978435;-0.35788134;0.0;-0.022270732 +7600;0;-0.23399353;3.8815765;8.965378 +7600;3;0.22644043;0.15428162;0.3164673 +7601;12;0.23876369;-0.0475961;-0.21481282;0.94582343 +7602;13;57.480988 +7603;1;-0.12329425;4.64678;8.63877 +7603;0;-0.2722168;3.862564;8.946289 +7603;3;0.22949219;0.1524353;0.31036377 +7603;2;0.05358085;0.7275963;-0.49135208; +7609;0;-0.26264954;3.862564;8.912918 +7609;3;0.23254395;0.1506195;0.30303955 +7609;12;0.23926727;-0.047524836;-0.21397689;0.9458893 +7609;0;-0.30085754;3.8340607;8.898605 +7609;1;-0.1229478;4.6555114;8.634072 +7611;3;0.2368164;0.14755249;0.29570007 +7611;4;-12.406921;-1.4907837;-63.29651 +7611;6;0.5543226;-0.40661678;0.033796646 +7611;7;0.8568061;0.48344958;-0.1793313;0.0;-0.5147038;0.78093064;-0.35387433;0.0;-0.031035095 +7611;0;-0.3199768;3.8055573;8.865219 +7611;3;0.24047852;0.14450073;0.2889862 +7612;0;-0.3152008;3.7865448;8.860458 +7612;3;0.24720764;0.14328003;0.28105164 +7612;1;-0.122729555;4.664495;8.629226 +7613;12;0.2397806;-0.04745057;-0.21317498;0.94594413 +7613;0;-0.32476807;3.7817993;8.807983 +7614;12;0.24030837;-0.047383297;-0.21240816;0.945986 +7614;3;0.25697327;0.14266968;0.27371216 +7617;1;-0.12274636;4.674045;8.624056 +7617;0;-0.36775208;3.8150635;8.76506 +7617;3;0.26490784;0.14143372;0.26576233 +7617;5;999.58984 +7618;4;-12.406921;-1.4907837;-63.29651 +7618;6;0.5667913;-0.41020542;0.041932 +7618;7;0.8518627;0.49238375;-0.17857274;0.0;-0.5223525;0.77363986;-0.35864913;0.0;-0.03844201 +7618;0;-0.37252808;3.8055573;8.731674 +7618;3;0.27590942;0.14205933;0.26026917 +7619;12;0.24087049;-0.04731835;-0.211676;0.9460105 +7620;0;-0.42507935;3.8055573;8.6458435 +7620;1;-0.12309515;4.6843805;8.618442 +7621;2;0.1754156;0.9048238;-0.21091366; +7621;3;0.286911;0.14083862;0.25354004 +7623;17;1;38dead6d7725;918;3238;-59; +7624;17;1;38dead6d60ff;4405;959;-60; +7624;17;1;1c1bb5efa29a;9421;2228;-71; +7625;17;1;1c1bb5ecd182;12225;2725;-68; +7625;12;0.24147622;-0.047253784;-0.21097569;0.9460157 +7625;0;-0.41073608;3.772293;8.65538 +7625;3;0.3015747;0.14205933;0.24560547 +7626;1;-0.1237553;4.6956635;8.61229 +7626;0;-0.43940735;3.7817993;8.617218 +7626;3;0.31378174;0.14143372;0.24133301 +7628;4;-10.157776;-2.9907227;-63.597107 +7628;6;0.53562534;-0.41307837;0.050947662 +7628;7;0.8692675;0.46745062;-0.1608224;0.0;-0.4921366;0.78761876;-0.3707536;0.0;-0.04664224 +7628;0;-0.42507935;3.7865448;8.612442 +7628;3;0.32539368;0.14328003;0.23583984 +7632;12;0.24213728;-0.047192656;-0.2103018;0.94599986 +7632;0;-0.46806335;3.7485352;8.593384 +7632;1;-0.12471308;4.707966;8.605557 +7632;3;0.3357849;0.14511108;0.23155212 +7632;0;-0.47283936;3.7913055;8.526611 +7633;12;0.24285746;-0.047133457;-0.20965157;0.9459625 +7633;3;0.34677124;0.1487732;0.22911072 +7635;0;-0.48718262;3.772293;8.517059 +7635;1;-0.1260765;4.721189;8.59829 +7635;3;0.36082458;0.15487671;0.22727966 +7637;4;-10.157776;-2.9907227;-63.597107 +7637;6;0.54521155;-0.41633803;0.057138536 +7637;7;0.86559933;0.47429815;-0.16055854;0.0;-0.49800593;0.78197855;-0.3748327;0.0;-0.052229103 +7637;0;-0.5158386;3.8197937;8.41214 +7638;3;0.3705902;0.15855408;0.22605896 +7638;12;0.24363354;-0.047068343;-0.20901512;0.94590694 +7639;0;-0.5349426;3.8388062;8.378754 +7640;1;-0.12797524;4.7355037;8.590386 +7640;2;0.30518377;0.98134565;0.03139019; +7640;3;0.3828125;0.16221619;0.22605896 +7642;0;-0.54927063;3.8768158;8.292908 +7642;12;0.24447717;-0.046989515;-0.20837872;0.9458336 +7642;3;0.39259338;0.1658783;0.22727966 +7645;0;-0.5683899;3.8293152;8.288132 +7645;1;-0.13020493;4.7507744;8.581917 +7645;3;0.4035797;0.16894531;0.22727966 +7647;4;-11.056519;-3.1402588;-62.997437 +7647;6;0.5854068;-0.43191534;0.068471566 +7647;7;0.8473593;0.5017964;-0.1737311;0.0;-0.5273721;0.75694454;-0.38589305;0.0;-0.06213494 +7647;0;-0.5540619;3.862564;8.235672 +7647;3;0.41090393;0.17442322;0.22850037 +7648;12;0.24537463;-0.046903502;-0.2077353;0.945747 +7649;0;-0.57315063;3.8815765;8.2165985 +7649;1;-0.1327169;4.766977;8.572889 +7650;3;0.4182434;0.17871094;0.22973633 +7651;0;-0.55882263;3.8910675;8.14505 +7652;12;0.24632983;-0.04681075;-0.20707832;0.9456475 +7652;3;0.42375183;0.1829834;0.23217773 +7654;0;-0.5827179;3.9148254;8.11644 +7654;1;-0.13551083;4.78369;8.563531 +7654;3;0.429245;0.18725586;0.23706055 +7656;5;999.58356 +7659;4;-11.956787;-2.9907227;-64.64691 +7659;6;0.5869801;-0.44840914;0.07167179 +7659;7;0.8476739;0.4990944;-0.17987107;0.0;-0.5265782;0.75030273;-0.3997012;0.0;-0.06453089 +7659;0;-0.5922699;3.962326;8.083054 +7660;3;0.4329071;0.19276428;0.24133301 +7664;12;0.24731857;-0.046705596;-0.2064115;0.94554025 +7664;0;-0.57315063;3.962326;8.025818 +7664;1;-0.13848196;4.800893;8.55385 +7664;3;0.4341278;0.1988678;0.24621582 +7665;2;0.39624858;0.93966913;0.3572483; +7665;0;-0.54927063;4.009842;7.98291 +7665;12;0.24833773;-0.04659227;-0.2057185;0.9454298 +7665;3;0.4353485;0.2025299;0.25172424 +7665;0;-0.55882263;4.019348;7.944748 +7666;1;-0.14159516;4.818326;8.543992 +7666;3;0.4341278;0.20925903;0.25660706 +7666;4;-12.5564575;-2.6901245;-63.597107 +7666;6;0.5825717;-0.46737322;0.07022297 +7666;7;0.85038483;0.49116987;-0.18867414;0.0;-0.52241933;0.74549544;-0.4139018;0.0;-0.062640384 +7666;0;-0.5206146;4.0716095;7.9208984 +7667;3;0.4316864;0.2135315;0.26148987 +7667;12;0.24937338;-0.04646495;-0.2049958;0.9453204 +7668;0;-0.5397186;4.1143646;7.8779755 +7668;1;-0.14484519;4.835779;8.534071 +7669;3;0.42619324;0.21780396;0.26820374 +7671;12;0.25041586;-0.046320856;-0.204243;0.94521487 +7671;0;-0.5206146;4.180893;7.849365 +7671;3;0.4206848;0.22268677;0.2743225 +7674;1;-0.14809799;4.8529315;8.524273 +7674;0;-0.48239136;4.133362;7.806427 +7674;3;0.40908813;0.22634888;0.28042603 +7676;4;-13.157654;-4.0405273;-64.64691 +7676;6;0.5788406;-0.4861664;0.061715655 +7676;7;0.85126865;0.483667;-0.20348951;0.0;-0.5218891;0.7401035;-0.42412108;0.0;-0.054530066 +7678;0;-0.5110626;4.166626;7.7969055 +7678;3;0.39808655;0.2306366;0.28652954 +7678;12;0.2514399;-0.046161957;-0.20345731;0.9451202 +7678;0;-0.48718262;4.2283936;7.7921295 +7678;1;-0.15136366;4.8693123;8.514869 +7679;2;0.33732325;0.7909436;0.6214247; +7679;3;0.38587952;0.23612976;0.29203796 +7681;0;-0.44895935;4.2473907;7.8016815 +7681;3;0.3705902;0.24040222;0.29936218 +7682;12;0.25242522;-0.045985352;-0.20264001;0.9450418 +7683;0;-0.45851135;4.256897;7.782593 +7683;1;-0.15463693;4.884699;8.505993 +7683;3;0.35289;0.2453003;0.30426025 +7685;4;-11.207581;-3.590393;-63.597107 +7685;6;0.5057251;-0.49979004;0.05884696 +7685;7;0.88696337;0.42518649;-0.18031166;0.0;-0.45894587;0.7678178;-0.44701722;0.0;-0.051619187 +7685;0;-0.43940735;4.275894;7.7969055 +7686;3;0.33454895;0.24835205;0.3085327 +7686;12;0.25335664;-0.045783393;-0.20179094;0.944984 +7687;0;-0.42507935;4.313904;7.777817 +7688;1;-0.15794018;4.898708;8.497871 +7688;3;0.31134033;0.25079346;0.31341553 +7690;0;-0.41073608;4.3329163;7.7587433 +7690;12;0.2542152;-0.045555014;-0.20091534;0.94495106 +7690;3;0.2881317;0.25201416;0.31829834 +7692;0;-0.40119934;4.3519135;7.7539673 +7692;1;-0.16113582;4.910984;8.490723 +7692;3;0.26431274;0.25323486;0.32196045 +7694;5;999.58356 +7694;4;-12.406921;-3.440857;-63.29651 +7694;6;0.51625586;-0.51086897;0.051695067 +7694;7;0.8809828;0.43060103;-0.19609171;0.0;-0.4709963;0.7586335;-0.4501529;0.0;-0.04507456 +7695;0;-0.40119934;4.342407;7.773056 +7695;3;0.23803711;0.25628662;0.32685852 +7695;12;0.25497544;-0.045302395;-0.20001964;0.9449484 +7697;0;-0.40119934;4.3614197;7.7969055 +7697;1;-0.16422783;4.921267;8.484708 +7697;2;0.22791836;0.64852285;0.6819267; +7697;3;0.21177673;0.25567627;0.32868958 +7701;0;-0.38208008;4.4089203;7.782593 +7701;3;0.18122864;0.25506592;0.33113098 +7702;12;0.25562653;-0.045025233;-0.19910724;0.9449784 +7703;0;-0.37728882;4.4231873;7.8016815 +7703;3;0.15252686;0.25323486;0.33296204 +7703;1;-0.16715597;4.9293866;8.479936 +7706;12;0.25615546;-0.04472564;-0.19818695;0.9450429 +7707;4;-10.906982;-4.0405273;-64.34631 +7707;6;0.46521956;-0.5152648;0.04832229 +7707;7;0.903358;0.39037138;-0.17763591;0.0;-0.42682278;0.77768415;-0.4615515;0.0;-0.042031873 +7707;0;-0.37728882;4.4421844;7.76828 +7707;3;0.124420166;0.24835205;0.33296204 +7707;0;-0.37728882;4.465927;7.815979 +7707;3;0.09387207;0.24162292;0.33235168 +7708;1;-0.16980228;4.935186;8.476509 +7709;0;-0.40119934;4.5086975;7.858902 +7710;12;0.25655136;-0.044410523;-0.19726886;0.94514245 +7710;3;0.063934326;0.23368835;0.33174133 +7713;1;-0.17195697;4.9385924;8.474482 +7713;0;-0.39163208;4.4991913;7.8779755 +7713;3;0.034622192;0.22634888;0.32929993 +7716;4;-12.257385;-3.2913208;-63.89618 +7716;6;0.4964077;-0.5183747;0.04967138 +7716;7;0.88993114;0.41370025;-0.1920279;0.0;-0.45405132;0.7637818;-0.4587754;0.0;-0.043128096 +7716;0;-0.40119934;4.480179;7.935196 +7716;3;0.0016326904;0.21963501;0.32563782 +7719;12;0.25680515;-0.044093803;-0.19636147;0.9452772 +7719;0;-0.41552734;4.4897003;7.997223 +7719;1;-0.1736268;4.939431;8.47396 +7719;3;-0.028289795;0.21170044;0.32258606 +7720;2;0.18690893;0.5126252;0.596323; +7720;0;-0.38208008;4.470688;8.016281 +7720;3;-0.057006836;0.2025299;0.31829834 +7720;12;0.25690967;-0.043778226;-0.19548011;0.94544625 +7724;0;-0.39640808;4.470688;8.03537 +7724;1;-0.17477971;4.9377427;8.474919 +7724;3;-0.088760376;0.19459534;0.31219482 +7724;4;-12.5564575;-4.940796;-64.64691 +7724;6;0.53157705;-0.50720906;0.049292937 +7724;7;0.8730936;0.44307733;-0.2034454;0.0;-0.48564652;0.7534849;-0.44317934;0.0;-0.043069683 +7725;0;-0.39640808;4.4991913;8.09259 +7726;3;-0.11869812;0.18725586;0.307312 +7727;12;0.25686723;-0.04346801;-0.19463716;0.94564587 +7727;0;-0.4202881;4.4991913;8.164139 +7727;3;-0.15046692;0.17810059;0.30241394 +7727;1;-0.17555389;4.9335403;8.477351 +7729;0;-0.43463135;4.480179;8.2118225 +7730;3;-0.17857361;0.17382812;0.29508972 +7730;12;0.25667667;-0.043156646;-0.19383436;0.94587684 +7731;0;-0.45373535;4.465927;8.249985 +7731;1;-0.17603526;4.926779;8.481272 +7731;3;-0.20605469;0.1683197;0.28775024 +7733;5;999.58356 +7734;4;-12.5564575;-2.9907227;-63.89618 +7734;6;0.5301462;-0.495527;0.054942973 +7734;7;0.87463504;0.44483787;-0.19269861;0.0;-0.4823688;0.7589621;-0.437375;0.0;-0.048310023 +7734;0;-0.49195862;4.44693;8.321533 +7734;3;-0.23170471;0.16160583;0.28164673 +7735;12;0.25633827;-0.0428404;-0.19307283;0.9461387 +7736;0;-0.5158386;4.4231873;8.402588 +7736;1;-0.17649251;4.917687;8.486537 +7736;3;-0.25737;0.15855408;0.27493286 +7736;2;0.23129088;0.4870348;0.27646542; +7741;0;-0.5397186;4.404175;8.426437 +7741;3;-0.28240967;0.15794373;0.26882935 +7741;12;0.25586745;-0.042510737;-0.19235651;0.9464268 +7742;0;-0.60661316;4.347168;8.49321 +7742;3;-0.306839;0.15916443;0.26087952 +7742;1;-0.17708805;4.906401;8.493054 +7743;4;-12.107849;-5.5404663;-63.746643 +7743;6;0.6138084;-0.47204387;0.07130223 +7743;7;0.8340419;0.51299566;-0.20300187;0.0;-0.5480404;0.72806364;-0.4117952;0.0;-0.06345087 +7743;0;-0.6113739;4.313904;8.54567 +7743;3;-0.33006287;0.15855408;0.25416565 +7744;12;0.25527266;-0.04215865;-0.19168164;0.94674003 +7745;0;-0.6161499;4.266403;8.602905 +7745;1;-0.17811614;4.892981;8.5007715 +7746;3;-0.35205078;0.15916443;0.24743652 +7747;0;-0.67349243;4.2283936;8.674438 +7749;3;-0.372818;0.15977478;0.24316406 +7749;12;0.25456223;-0.04177014;-0.19104314;0.9470776 +7751;1;-0.17954768;4.8776264;8.509561 +7751;0;-0.6687012;4.2188873;8.73645 +7751;3;-0.39726257;0.16038513;0.2388916 +7752;4;-10.006714;-3.440857;-63.746643 +7753;6;0.55121624;-0.4487367;0.07639257 +7753;7;0.8667436;0.4718729;-0.16152854;0.0;-0.49399108;0.7675477;-0.40846446;0.0;-0.06876246 +7753;0;-0.71170044;4.2378845;8.827072 +7753;3;-0.41740417;0.15977478;0.23277283 +7759;12;0.25374952;-0.041349433;-0.19043699;0.94743615 +7759;0;-0.71647644;4.190384;8.889069 +7759;1;-0.18129468;4.8603525;8.5194025 +7759;2;0.4349327;0.6252456;-0.15402508; +7759;3;-0.438797;0.16038513;0.23033142 +7759;0;-0.7833557;4.1381226;8.903381 +7759;3;-0.45773315;0.15916443;0.22544861 +7759;12;0.25283083;-0.0408965;-0.18985726;0.9478177 +7760;0;-0.816803;4.133362;8.927231 +7760;1;-0.18335305;4.8412943;8.530203 +7760;3;-0.47605896;0.15672302;0.21995544 +7764;12;0.25181615;-0.04041592;-0.18930478;0.9482189 +7764;4;-13.607788;-2.9907227;-63.597107 +7764;6;0.6932959;-0.4320298;0.09124163 +7764;7;0.79032606;0.58035594;-0.19639687;0.0;-0.60707355;0.69847316;-0.37894186;0.0;-0.08274321 +7764;0;-0.845459;4.052597;8.960602 +7764;3;-0.49194336;0.14938354;0.21690369 +7765;0;-0.888443;4.052597;8.974915 +7765;1;-0.18547164;4.8206563;8.541838 +7765;3;-0.5029297;0.14143372;0.21566772 +7767;0;-0.90278625;4.0383606;8.994003 +7767;12;0.25071636;-0.03992315;-0.18877819;0.94863605 +7767;3;-0.50904846;0.13105774;0.21444702 +7769;0;-0.90278625;4.052597;9.03215 +7769;1;-0.18705069;4.799088;8.553939 +7769;3;-0.5139313;0.12188721;0.21017456 +7771;5;999.58356 +7772;4;-12.257385;-3.590393;-63.597107 +7772;6;0.6992584;-0.4199071;0.09962165 +7772;7;0.7876228;0.5877344;-0.18498315;0.0;-0.6094282;0.69883406;-0.3744708;0.0;-0.09081681 +7772;0;-0.90278625;4.019348;9.027374 +7772;3;-0.5133209;0.109069824;0.2083435 +7772;12;0.24955867;-0.039456345;-0.18827103;0.94906145 +7774;0;-0.90278625;4.009842;9.089371 +7774;1;-0.18793683;4.7771473;8.566193 +7774;3;-0.5108795;0.09562683;0.2059021 +7774;2;0.65587497;0.75855446;-0.44742012; +7777;12;0.24837252;-0.03903045;-0.18778957;0.94948554 +7777;0;-0.883667;4.019348;9.127518 +7777;3;-0.5035553;0.085861206;0.20285034 +7783;1;-0.18791637;4.7554374;8.578264 +7785;12;0.24719028;-0.038662963;-0.18733314;0.94989926 +7785;1;-0.1870403;4.734517;8.589848 +7786;0;-0.888443;4.0336;9.151382 +7786;3;-0.4925537;0.07180786;0.19735718 +7786;4;-11.657715;-3.1402588;-63.746643 +7786;6;0.6756652;-0.4134184;0.09677964 +7786;7;0.80091834;0.57272696;-0.17468195;0.0;-0.59219915;0.71455383;-0.37244207;0.0;-0.088487945 +7786;0;-0.850235;4.028839;9.199066 +7786;3;-0.48216248;0.05958557;0.1924591 +7786;0;-0.826355;4.0336;9.175232 +7786;3;-0.46505737;0.050430298;0.18696594 +7787;0;-0.7976837;4.0336;9.184769 +7787;12;0.24604326;-0.038359363;-0.18690898;0.9502928 +7787;3;-0.44551086;0.041870117;0.18147278 +7788;0;-0.7833557;4.0336;9.199066 +7788;1;-0.18556286;4.7149053;8.600659 +7788;3;-0.4229126;0.0345459;0.17842102 +7790;4;-11.056519;-3.440857;-63.29651 +7790;6;0.6463375;-0.4119051;0.08495106 +7790;7;0.81587505;0.551893;-0.17251697;0.0;-0.572977;0.7315254;-0.36955118;0.0;-0.077752136 +7791;0;-0.73080444;4.0668488;9.213379 +7791;3;-0.39848328;0.028427124;0.17230225 +7791;12;0.24496213;-0.038112115;-0.18651636;0.95065916 +7793;0;-0.70692444;4.095352;9.203827 +7793;1;-0.18358752;4.6970596;8.61046 +7793;2;0.60267925;0.700171;-0.59718513; +7793;3;-0.37220764;0.025985718;0.16802979 +7795;0;-0.67349243;4.133362;9.21814 +7795;12;0.24397455;-0.037917145;-0.18614432;0.9509937 +7796;3;-0.3434906;0.024765015;0.16375732 +7798;0;-0.6161499;4.142868;9.175232 +7798;1;-0.18150972;4.68156;8.618942 +7798;3;-0.31295776;0.026611328;0.15885925 +7800;4;-11.207581;-2.241516;-63.146973 +7800;6;0.57997036;-0.4232802;0.06705293 +7800;7;0.849681;0.49963635;-0.16854031;0.0;-0.5237465;0.7626568;-0.37953186;0.0;-0.06108948 +7800;0;-0.5683899;4.1951294;9.146606 +7800;3;-0.28424072;0.029052734;0.15275574 +7801;12;0.24311566;-0.03776226;-0.18579347;0.95128834 +7802;0;-0.55882263;4.2378845;9.122772 +7803;1;-0.17966945;4.668613;8.626 +7803;3;-0.2549286;0.0345459;0.15092468 +7805;0;-0.5349426;4.2426453;9.079834 +7806;12;0.24239975;-0.03762607;-0.18545707;0.9515421 +7806;3;-0.2243805;0.041870117;0.14665222 +7807;0;-0.48718262;4.256897;9.11322 +7808;1;-0.17835864;4.6581554;8.63168 +7808;3;-0.1938324;0.05104065;0.14297485 +7810;5;999.58356 +7810;0;-0.4298401;4.252136;9.11322 +7810;3;-0.16818237;0.06324768;0.13993835 +7811;4;-12.406921;-1.7913818;-62.547302 +7811;6;0.5589905;-0.43613848;0.047131725 +7811;7;0.8574047;0.4806862;-0.18384239;0.0;-0.51286805;0.768429;-0.38273144;0.0;-0.042703893 +7811;12;0.24182351;-0.037494168;-0.18512376;0.9517588 +7812;0;-0.39640808;4.266403;9.070297 +7813;1;-0.17787348;4.6501336;8.636013 +7813;2;0.3343969;0.48227406;-0.52041245; +7813;3;-0.1437378;0.076690674;0.13809204 +7814;0;-0.42507935;4.323395;9.027374 +7815;12;0.24139403;-0.037344646;-0.1847898;0.95193857 +7815;3;-0.11991882;0.09135437;0.13749695 +7817;0;-0.40596008;4.3851776;8.984451 +7817;1;-0.17859195;4.6442914;8.639142 +7817;3;-0.09732056;0.10662842;0.13871765 +7819;4;-10.906982;-2.9907227;-63.146973 +7819;6;0.5071025;-0.45366853;0.045154024 +7819;7;0.8828717;0.436521;-0.17316711;0.0;-0.4678582;0.7857304;-0.40464342;0.0;-0.040572695 +7820;0;-0.37252808;4.413666;8.931976 +7820;3;-0.07777405;0.120666504;0.13687134 +7821;12;0.24109758;-0.037156668;-0.18444397;0.9520881 +7822;0;-0.36297607;4.4279175;8.879532 +7822;1;-0.18047826;4.6404085;8.641189 +7822;3;-0.060668945;0.1347351;0.13565063 +7825;0;-0.3390808;4.465927;8.827072 +7826;12;0.24092077;-0.036924098;-0.18407544;0.9522132 +7826;3;-0.044784546;0.14572144;0.13931274 +7828;17;1;38dead6d7725;3513;525;-60; +7829;17;1;38dead6d60ff;3991;801;-59; +7830;17;1;1c1bb5efa29a;11370;475;-70; +7831;17;1;1c1bb5ecd182;9969;2379;-67; +7831;0;-0.3152008;4.494446;8.7603 +7831;3;-0.031341553;0.15550232;0.13871765 +7831;1;-0.18341985;4.6380935;8.64237 +7831;4;-11.207581;-1.940918;-65.097046 +7831;6;0.45369238;-0.47376806;0.03596508 +7831;7;0.90544385;0.3900124;-0.1675163;0.0;-0.42325833;0.7998332;-0.42558116;0.0;-0.031996828 +7831;0;-0.34864807;4.537201;8.717377 +7831;3;-0.021575928;0.16343689;0.14115906 +7832;0;-0.32476807;4.5989685;8.664902 +7833;1;-0.18711558;4.63702;8.642867 +7833;3;-0.014251709;0.1695404;0.14237976 +7833;2;0.15457483;0.22996473;-0.2330656; +7833;12;0.24084237;-0.03664877;-0.18368845;0.95231843 +7834;0;-0.2722168;4.61322;8.6410675 +7834;3;-0.009979248;0.17138672;0.14482117 +7835;12;0.24083959;-0.036346372;-0.18328135;0.95240915 +7836;1;-0.19108585;4.6366744;8.642965 +7836;0;-0.25787354;4.6654816;8.559982 +7836;3;-0.0069122314;0.17198181;0.14604187 +7838;4;-10.906982;-1.6403198;-65.54718 +7838;6;0.4085071;-0.49883193;0.030116366 +7838;7;0.9230212;0.34883285;-0.16231932;0.0;-0.3838394;0.8058839;-0.45079747;0.0;-0.026442444 +7839;0;-0.24832153;4.6749725;8.526611 +7839;3;-0.0063171387;0.17016602;0.14726257 +7839;12;0.24088055;-0.03603181;-0.18285728;0.95249236 +7841;0;-0.26264954;4.7319946;8.483673 +7841;1;-0.19499764;4.6366854;8.642872 +7841;3;-0.009353638;0.1658783;0.14665222 +7844;0;-0.26742554;4.7414856;8.445526 +7844;12;0.24094045;-0.03572055;-0.1824249;0.95257175 +7844;3;-0.009979248;0.15731812;0.14665222 +7846;0;-0.2722168;4.7985077;8.407364 +7847;1;-0.19853301;4.6366878;8.64279 +7847;3;-0.014251709;0.1506195;0.14543152 +7848;5;999.57983 +7850;4;-10.606384;-1.940918;-63.89618 +7850;6;0.40211865;-0.5184093;0.03236707 +7850;7;0.92602754;0.33994633;-0.1640413;0.0;-0.37640792;0.79932296;-0.46840152;0.0;-0.028109401 +7850;0;-0.25309753;4.793747;8.35968 +7850;3;-0.019134521;0.14205933;0.14421082 +7851;12;0.24099524;-0.035431024;-0.18199776;0.9526504 +7851;1;-0.20145252;4.6364913;8.642828 +7851;2;0.039818734;-0.046638966;0.14571285; +7852;0;-0.25309753;4.8317566;8.340591 +7852;3;-0.024627686;0.13044739;0.14175415 +7853;0;-0.23399353;4.8460083;8.311981 +7853;3;-0.030731201;0.11885071;0.13993835 +7854;12;0.24103151;-0.035174415;-0.18158357;0.9527298 +7855;0;-0.22921753;4.8317566;8.335815 +7857;3;-0.03805542;0.104782104;0.13749695 +7857;1;-0.20352975;4.635882;8.643106 +7860;4;-10.906982;-0.29144287;-64.64691 +7860;6;0.37731352;-0.525149;0.027490985 +7860;7;0.93438363;0.31877887;-0.15908279;0.0;-0.35547382;0.8043857;-0.47602737;0.0;-0.023783559 +7860;0;-0.21966553;4.8650208;8.2595215 +7860;3;-0.04600525;0.09074402;0.13442993 +7860;12;0.24103487;-0.034961965;-0.18119153;0.9528114 +7861;0;-0.23399353;4.9030304;8.273819 +7861;1;-0.20460257;4.634749;8.643689 +7861;3;-0.052719116;0.076690674;0.13198853 +7864;0;-0.18621826;4.9220276;8.288132 +7864;12;0.24099785;-0.03480261;-0.18082437;0.9528963 +7864;3;-0.05822754;0.065078735;0.12954712 +7865;0;-0.21966553;4.9030304;8.269058 +7866;3;-0.064331055;0.05104065;0.12893677 +7866;1;-0.20463838;4.6330876;8.644578 +7868;4;-11.657715;-2.090454;-64.19678 +7868;6;0.40963697;-0.5350552;0.026558513 +7868;7;0.92233473;0.34261343;-0.17864656;0.0;-0.38571584;0.7890688;-0.47811455;0.0;-0.02284402 +7868;0;-0.20054626;4.8982697;8.316757 +7868;3;-0.07043457;0.041259766;0.12649536 +7869;12;0.24091838;-0.03469663;-0.18048806;0.95298404 +7870;0;-0.20054626;4.8982697;8.33107 +7871;3;-0.0771637;0.03086853;0.12527466 +7871;2;-0.0075824857;-0.20538616;0.3216009; +7871;1;-0.20371671;4.630892;8.645777 +7872;0;-0.19577026;4.893524;8.350128 +7873;3;-0.08204651;0.024154663;0.12586975 +7873;12;0.2407994;-0.034640696;-0.18017387;0.9530756 +7875;0;-0.15278625;4.879257;8.364441 +7875;3;-0.08509827;0.018051147;0.12527466 +7875;1;-0.20203666;4.628157;8.647281 +7878;4;-12.406921;-1.1901855;-64.497375 +7878;6;0.40888727;-0.52800184;0.018264133 +7878;7;0.921069;0.34344313;-0.18351743;0.0;-0.38907957;0.79260576;-0.4694604;0.0;-0.015775964 +7878;0;-0.18144226;4.907776;8.350128 +7878;3;-0.088760376;0.011947632;0.12649536 +7879;12;0.2406437;-0.03462323;-0.1798779;0.9531715 +7879;0;-0.171875;4.907776;8.369217 +7880;3;-0.093048096;0.010101318;0.12586975 +7880;1;-0.19983956;4.625143;8.648944 +7882;0;-0.171875;4.94104;8.38353 +7883;3;-0.09487915;0.010101318;0.12527466 +7883;12;0.24046731;-0.03463066;-0.17958702;0.9532706 +7888;0;-0.17666626;4.9267883;8.421677 +7888;3;-0.0942688;0.008880615;0.12527466 +7888;1;-0.19744673;4.62184;8.650764 +7888;4;-11.207581;-2.6901245;-64.34631 +7888;6;0.39588493;-0.5292307;0.020974489 +7888;7;0.92653596;0.3328697;-0.17529657;0.0;-0.3757704;0.79643244;-0.47380593;0.0;-0.018103762 +7889;0;-0.15278625;4.9315186;8.38829 +7889;3;-0.093048096;0.011947632;0.12710571 +7890;5;999.57983 +7890;12;0.24027224;-0.034646332;-0.17930016;0.95337313 +7890;0;-0.15278625;4.9220276;8.41214 +7892;1;-0.19503008;4.6185465;8.652577 +7892;3;-0.0942688;0.017440796;0.12649536 +7892;2;-0.04478751;-0.2491107;0.24742126; +7892;0;-0.16711426;4.8982697;8.44075 +7892;12;0.24007635;-0.034661647;-0.17901175;0.95347613 +7893;3;-0.09182739;0.020492554;0.12893677 +7896;0;-0.19577026;4.9125214;8.46936 +7897;1;-0.19297698;4.615227;8.654395 +7897;3;-0.08938599;0.022323608;0.13137817 +7897;4;-12.107849;-2.8411865;-64.497375 +7897;6;0.42867142;-0.5254937;0.023111 +7897;7;0.91409445;0.35958004;-0.18743943;0.0;-0.40500826;0.7868032;-0.46573484;0.0;-0.019991001 +7898;0;-0.18144226;4.893524;8.445526 +7898;3;-0.08570862;0.028427124;0.12893677 +7898;12;0.2398844;-0.034657232;-0.17871886;0.95357955 +7899;1;-0.19115981;4.612104;8.6561 +7900;0;-0.21009827;4.8555145;8.478897 +7900;3;-0.084487915;0.0345459;0.13259888 +7902;0;-0.20533752;4.874527;8.49321 +7902;12;0.23970506;-0.03463915;-0.17841332;0.9536826 +7903;3;-0.080825806;0.040039062;0.13442993 +7909;1;-0.18979508;4.6091557;8.657701 +7909;0;-0.22921753;4.8650208;8.521835 +7909;3;-0.07899475;0.04675293;0.13504028 +7909;4;-11.506653;-1.0406494;-63.146973 +7909;6;0.41170552;-0.5185835;0.026891189 +7909;7;0.92144144;0.34755903;-0.17363295;0.0;-0.38781482;0.79594815;-0.46482927;0.0;-0.023352778 +7909;0;-0.26264954;4.8317566;8.507523 +7912;3;-0.07594299;0.051651;0.13687134 +7912;0;-0.25309753;4.8127594;8.488449 +7912;1;-0.18892983;4.6063843;8.659194 +7912;3;-0.07594299;0.05531311;0.13871765 +7913;2;0.005133927;-0.21643353;0.1538744; +7913;0;-0.2722168;4.8079987;8.507523 +7913;3;-0.07411194;0.057754517;0.14175415 +7913;12;0.23954044;-0.03459496;-0.1780935;0.95378524 +7913;12;0.23939134;-0.034525674;-0.1777612;0.95388716 +7913;1;-0.18830915;4.603693;8.660639 +7913;0;-0.29130554;4.8079987;8.531357 +7913;3;-0.072891235;0.05836487;0.14604187 +7915;4;-11.056519;-1.7913818;-65.69672 +7915;6;0.41127473;-0.51295114;0.034132015 +7915;7;0.9227731;0.34832662;-0.16479735;0.0;-0.3841946;0.79864395;-0.46320853;0.0;-0.029733451 +7915;0;-0.3056488;4.7985077;8.54567 +7915;3;-0.07472229;0.057144165;0.14726257 +7916;12;0.23924947;-0.034440663;-0.1774159;0.9539902 +7917;0;-0.3534088;4.7652435;8.531357 +7918;1;-0.18766508;4.601022;8.662072 +7918;3;-0.07350159;0.056533813;0.15275574 +7920;0;-0.3390808;4.750992;8.521835 +7920;12;0.23910886;-0.03435326;-0.17705545;0.9540955 +7920;3;-0.07472229;0.055923462;0.15641785 +7922;0;-0.3295288;4.7747498;8.569519 +7922;1;-0.18679297;4.598323;8.663524 +7923;3;-0.07777405;0.054092407;0.16007996 +7925;4;-10.906982;-1.0406494;-64.34631 +7925;6;0.41724724;-0.50802356;0.03843466 +7925;7;0.92110765;0.35406598;-0.16185798;0.0;-0.38785774;0.79875046;-0.45996094;0.0;-0.033572387 +7925;0;-0.38208008;4.73674;8.569519 +7926;3;-0.080825806;0.052261353;0.16314697 +7926;12;0.23896503;-0.034272924;-0.17667793;0.9542044 +7926;5;999.57983 +7927;0;-0.40596008;4.717743;8.564758 +7927;1;-0.1857238;4.595368;8.665114 +7927;2;0.13081701;-0.13003969;0.09820843; +7928;3;-0.08326721;0.047973633;0.16497803 +7930;0;-0.43463135;4.712982;8.588608 +7930;12;0.2388059;-0.034196604;-0.17628767;0.95431924 +7930;3;-0.084487915;0.04248047;0.16802979 +7932;0;-0.43940735;4.6987305;8.598129 +7932;1;-0.18426873;4.5921702;8.666841 +7932;3;-0.08631897;0.03881836;0.16680908 +7934;4;-10.906982;-3.590393;-65.097046 +7934;6;0.4737458;-0.49959034;0.051060576 +7934;7;0.89986086;0.4004627;-0.17285861;0.0;-0.43387023;0.7811053;-0.44903365;0.0;-0.044800423 +7935;0;-0.45851135;4.6559753;8.574295 +7935;3;-0.09120178;0.03149414;0.16619873 +7935;12;0.23862933;-0.034136955;-0.17589054;0.9544387 +7937;0;-0.44418335;4.660721;8.574295 +7937;1;-0.18243445;4.5887537;8.668689 +7937;3;-0.09120178;0.025375366;0.16619873 +7939;12;0.23843709;-0.034097336;-0.17550094;0.95456 +7940;0;-0.46806335;4.65123;8.6362915 +7940;3;-0.092437744;0.020492554;0.16436768 +7943;1;-0.18015374;4.5851626;8.670637 +7943;0;-0.48239136;4.6417236;8.6410675 +7943;3;-0.0942688;0.015609741;0.16192627 +7949;12;0.23823099;-0.034081444;-0.17512189;0.9546816 +7949;2;0.26549917;-0.027853012;0.036890984; +7949;1;-0.17752863;4.5813704;8.672695 +7949;12;0.23800997;-0.034086138;-0.17475995;0.9548028 +7950;4;-11.956787;-1.940918;-65.097046 +7950;6;0.49706113;-0.49229142;0.05576755 +7950;7;0.89018357;0.42022014;-0.17603485;0.0;-0.45294645;0.77460986;-0.4413832;0.0;-0.049119804 +7950;0;-0.48239136;4.6179657;8.621979 +7950;3;-0.096710205;0.008285522;0.15948486 +7950;0;-0.47283936;4.5894623;8.660141 +7950;3;-0.09793091;0.0052337646;0.15763855 +7950;0;-0.48718262;4.61322;8.660141 +7950;3;-0.09609985;0.0015716553;0.15641785 +7951;0;-0.47763062;4.61322;8.65538 +7951;3;-0.096710205;-0.0027160645;0.15214539 +7951;1;-0.17464143;4.577514;8.674789 +7953;4;-11.657715;-1.1901855;-62.997437 +7954;6;0.49194127;-0.48905823;0.055127177 +7954;7;0.89230525;0.41696835;-0.17299928;0.0;-0.4488045;0.778094;-0.43948177;0.0;-0.048640285 +7954;0;-0.47763062;4.57045;8.664902 +7954;3;-0.09487915;-0.0069885254;0.14848328 +7955;12;0.23778184;-0.034108013;-0.17441328;0.95492226 +7956;0;-0.5015106;4.546707;8.674438 +7956;1;-0.17157559;4.573642;8.676893 +7956;3;-0.0942688;-0.011871338;0.14604187 +7958;0;-0.5158386;4.560959;8.664902 +7959;3;-0.09182739;-0.016159058;0.14175415 +7959;12;0.23755181;-0.0341423;-0.17408532;0.95503813 +7961;0;-0.45851135;4.546707;8.6792145 +7961;1;-0.16827308;4.5698733;8.678943 +7961;3;-0.08938599;-0.019195557;0.13931274 +7963;4;-11.357117;-0.74157715;-64.94751 +7963;6;0.46921366;-0.4819816;0.052779607 +7963;7;0.9017398;0.40067133;-0.16225863;0.0;-0.42974442;0.7903145;-0.43671823;0.0;-0.046745148 +7963;0;-0.48718262;4.537201;8.6458435 +7964;3;-0.08692932;-0.022262573;0.13565063 +7964;12;0.23732416;-0.034197126;-0.1737765;0.955149 +7965;5;999.57983 +7966;1;-0.1648317;4.566316;8.6808815 +7967;2;0.3038202;0.04261303;-0.0024700165; +7967;0;-0.47283936;4.556198;8.631531 +7967;3;-0.08204651;-0.025924683;0.13137817 +7969;0;-0.44418335;4.5657043;8.664902 +7969;3;-0.0783844;-0.027755737;0.12771606 +7969;12;0.23710708;-0.034266718;-0.1734855;0.95525336 +7971;1;-0.161269;4.5630975;8.68264 +7971;0;-0.44895935;4.5847015;8.674438 +7971;3;-0.072265625;-0.030197144;0.12527466 +7973;4;-10.757446;-1.1901855;-65.24658 +7973;6;0.45158195;-0.4856579;0.051710453 +7973;7;0.9090841;0.38592887;-0.15692392;0.0;-0.4140975;0.79571706;-0.4419927;0.0;-0.04571069 +7973;0;-0.44418335;4.5514526;8.674438 +7973;3;-0.06677246;-0.031417847;0.119766235 +7974;12;0.23690595;-0.034349784;-0.1732157;0.95534915 +7975;0;-0.4202881;4.537201;8.688751 +7975;1;-0.15768202;4.5602803;8.684186 +7976;3;-0.0625;-0.0320282;0.116104126 +7978;0;-0.43940735;4.556198;8.674438 +7978;3;-0.055786133;-0.030197144;0.11122131 +7978;12;0.23672687;-0.03444291;-0.17296278;0.9554361 +7980;0;-0.40119934;4.5989685;8.65538 +7980;1;-0.1542655;4.557934;8.685479 +7981;3;-0.049057007;-0.028366089;0.10572815 +7982;4;-12.107849;-2.090454;-64.497375 +7983;6;0.4926298;-0.48796132;0.04631944 +7983;7;0.8904138;0.41774747;-0.18069384;0.0;-0.4533106;0.7782603;-0.43453467;0.0;-0.040898893 +7983;0;-0.40596008;4.603714;8.6362915 +7984;3;-0.04295349;-0.02897644;0.10206604 +7984;12;0.23657626;-0.034538276;-0.1727288;0.95551217 +7986;0;-0.37252808;4.6179657;8.6410675 +7986;1;-0.15112743;4.556178;8.686456 +7986;2;0.25578183;0.02345562;-9.1552734E-4; +7986;3;-0.036834717;-0.027755737;0.09777832 +7987;0;-0.37728882;4.636963;8.6410675 +7988;3;-0.027679443;-0.025924683;0.09472656 +7988;12;0.23645908;-0.034629982;-0.17251423;0.9555767 +7990;0;-0.40119934;4.6179657;8.6458435 +7990;3;-0.023406982;-0.022872925;0.08984375 +7990;1;-0.14823672;4.5550036;8.687121 +7992;4;-11.506653;-1.0406494;-65.84625 +7992;6;0.45419505;-0.49012706;0.046370458 +7992;7;0.90722203;0.3870877;-0.16465494;0.0;-0.4186593;0.7928234;-0.44289452;0.0;-0.040896747 +7993;0;-0.36775208;4.6749725;8.6410675 +7993;3;-0.016067505;-0.017974854;0.083114624 +7993;12;0.23637593;-0.03471846;-0.17231594;0.9556298 +7994;0;-0.38208008;4.6417236;8.660141 +7995;3;-0.012420654;-0.0149383545;0.07701111 +7995;1;-0.14580852;4.554372;8.687494 +7997;0;-0.3534088;4.693985;8.650604 +7997;3;-0.0050964355;-0.010650635;0.0745697 +7998;12;0.23632565;-0.034792848;-0.17213419;0.9556723 +7999;0;-0.32476807;4.7082367;8.617218 +8000;3;-8.087158E-4;-0.006378174;0.06967163 +8000;1;-0.14387192;4.5542417;8.687594 +8002;4;-11.056519;-2.5405884;-63.746643 +8002;6;0.44644484;-0.4997577;0.037670445 +8002;7;0.9091402;0.3789566;-0.17278868;0.0;-0.41517633;0.79167354;-0.44819832;0.0;-0.033055484 +8002;0;-0.3438568;4.7319946;8.593384 +8002;3;0.0016326904;-0.003326416;0.06661987 +8003;5;999.58105 +8003;12;0.2363086;-0.034851525;-0.17196989;0.955704 +8004;0;-0.3438568;4.712982;8.607666 +8004;2;0.20491087;-0.07899237;0.03197193; +8005;1;-0.14245616;4.55453;8.687466 +8005;3;0.0059051514;0.002166748;0.06173706 +8007;0;-0.38208008;4.7652435;8.593384 +8007;3;0.008972168;0.007659912;0.05807495 +8007;12;0.23631823;-0.034889255;-0.17181928;0.9557273 +8009;0;-0.40596008;4.7700043;8.598129 +8009;3;0.012634277;0.010101318;0.05380249 +8010;1;-0.14168724;4.5551567;8.68715 +8011;4;-10.757446;-1.1901855;-64.19678 +8011;6;0.43300515;-0.5060276;0.047179893 +8011;7;0.9162908;0.3670148;-0.16034707;0.0;-0.39838338;0.79395187;-0.45927218;0.0;-0.04125185 +8012;0;-0.36775208;4.7747498;8.593384 +8012;3;0.014465332;0.014389038;0.050125122 +8013;12;0.23635104;-0.03490191;-0.17168134;0.9557435 +8014;0;-0.39640808;4.7890015;8.569519 +8014;3;0.015686035;0.017440796;0.048294067 +8015;1;-0.14138846;4.556052;8.686686 +8016;0;-0.41073608;4.841263;8.564758 +8016;3;0.016906738;0.021713257;0.047073364 +8018;12;0.23640491;-0.03489492;-0.17155734;0.9557527 +8019;0;-0.40119934;4.817505;8.574295 +8019;3;0.016296387;0.021713257;0.0415802 +8020;1;-0.1415193;4.5571136;8.686127 +8021;4;-11.657715;-1.1901855;-64.19678 +8021;6;0.45309204;-0.51143205;0.046756838 +8021;7;0.9081291;0.3817355;-0.17198753;0.0;-0.4167018;0.78405344;-0.46002173;0.0;-0.04075919 +8021;0;-0.41073608;4.8317566;8.593384 +8022;3;0.018127441;0.022323608;0.039749146 +8022;12;0.23646839;-0.034869757;-0.17143881;0.95575917 +8023;0;-0.45851135;4.841263;8.579071 +8024;1;-0.14194189;4.5582047;8.685547 +8024;2;0.24873783;-0.20263481;0.079380035; +8024;3;0.016906738;0.023544312;0.03791809 +8026;0;-0.4202881;4.850769;8.564758 +8026;3;0.016906738;0.024765015;0.034866333 +8028;12;0.23653749;-0.0348335;-0.17133534;0.955762 +8028;0;-0.45851135;4.8555145;8.574295 +8029;1;-0.14255235;4.5593057;8.684959 +8029;3;0.014465332;0.021713257;0.032409668 +8033;4;-10.606384;-1.3412476;-65.84625 +8033;6;0.42805484;-0.51464987;0.053424224 +8033;7;0.9193877;0.3613318;-0.15545326;0.0;-0.39059678;0.7919274;-0.46934566;0.0;-0.046481807 +8042;0;-0.4298401;4.8982697;8.588608 +8043;3;0.012634277;0.021102905;0.029968262 +8043;0;-0.4298401;4.879257;8.593384 +8043;1;-0.14314613;4.5602865;8.684434 +8043;3;0.010787964;0.016220093;0.027526855 +8043;0;-0.44895935;4.907776;8.602905 +8043;3;0.008972168;0.016220093;0.026916504 +8043;0;-0.46806335;4.950531;8.598129 +8043;12;0.23660843;-0.034789916;-0.17124073;0.9557629 +8043;12;0.23667131;-0.034748692;-0.17115945;0.95576346 +8044;1;-0.14364694;4.561147;8.683974 +8045;17;1;38dead6d7725;1762;1197;-56; +8045;17;1;38dead6d60ff;3148;1108;-62; +8046;17;0;1c1bb5efa29a;0;0;0; +8047;17;1;1c1bb5ecd182;10882;886;-68; +8047;1;-0.14401868;4.562018;8.683511 +8047;3;0.008972168;0.013168335;0.0256958 +8047;4;-11.956787;-1.3412476;-64.64691 +8049;6;0.46650487;-0.521772;0.05438414 +8049;7;0.9040106;0.38992012;-0.17529131;0.0;-0.42490473;0.77430135;-0.4689491;0.0;-0.0471244 +8049;0;-0.48239136;4.969528;8.564758 +8049;3;0.008346558;0.009506226;0.024475098 +8049;2;0.2954653;-0.30919313;0.07493687; +8049;5;999.58105 +8049;0;-0.47763062;4.9933014;8.602905 +8049;3;0.006515503;0.0070648193;0.022033691 +8049;12;0.23672862;-0.03471408;-0.1710908;0.9557628 +8049;0;-0.46806335;4.9790497;8.617218 +8049;3;0.008972168;0.0040130615;0.02142334 +8049;12;0.23678175;-0.03468932;-0.17102979;0.9557615 +8049;0;-0.45851135;4.98378;8.664902 +8049;3;0.0052948;9.460449E-4;0.019592285 +8049;1;-0.14419629;4.562813;8.68309 +8051;4;-11.357117;0.1586914;-63.746643 +8051;6;0.4363485;-0.521357;0.052866627 +8051;7;0.9161578;0.36648366;-0.16231057;0.0;-0.3981901;0.78589356;-0.473092;0.0;-0.045821633 +8051;0;-0.49195862;5.007553;8.674438 +8051;3;0.0040740967;-0.0027160645;0.019592285 +8052;12;0.23682915;-0.034675512;-0.17098063;0.9557589 +8053;0;-0.49671936;5.017044;8.664902 +8058;3;0.0028533936;-0.0051574707;0.019592285 +8058;1;-0.14419234;4.563493;8.682734 +8058;0;-0.48239136;5.040802;8.669678 +8058;12;0.23686922;-0.03467321;-0.1709397;0.95575655 +8058;3;0.002243042;-0.007598877;0.018981934 +8058;0;-0.49671936;5.0455627;8.6792145 +8058;3;0.0016326904;-0.010650635;0.020202637 +8058;1;-0.14395905;4.564111;8.682412 +8060;4;-11.657715;-2.090454;-64.94751 +8060;6;0.46749648;-0.52587473;0.05716855 +8060;7;0.90416616;0.3897629;-0.17483799;0.0;-0.42431283;0.7720823;-0.4731251;0.0;-0.049417302 +8060;0;-0.49671936;5.0835724;8.688751 +8060;3;-0.002029419;-0.011871338;0.022644043 +8061;12;0.2369036;-0.034682304;-0.17090274;0.9557543 +8063;1;-0.14348848;4.56467;8.682126 +8063;2;0.33232117;-0.4313264;-0.009839058; +8063;0;-0.5062866;5.1358337;8.703064 +8064;3;-0.0050964355;-0.014312744;0.023864746 +8065;0;-0.46328735;5.0788116;8.698288 +8066;3;-0.007537842;-0.016159058;0.026306152 +8066;12;0.23693116;-0.03470382;-0.1708636;0.9557536 +8067;0;-0.46328735;5.1263123;8.769836 +8067;1;-0.14272133;4.564947;8.681993 +8067;3;-0.008132935;-0.018600464;0.028137207 +8069;4;-11.357117;-1.7913818;-65.69672 +8069;6;0.44281182;-0.52836674;0.052778304 +8069;7;0.9136875;0.3700504;-0.16804123;0.0;-0.40385574;0.7803347;-0.47747082;0.0;-0.045559853 +8069;0;-0.44895935;5.1595764;8.793686 +8069;3;-0.010574341;-0.018600464;0.028747559 +8070;12;0.23694168;-0.03473624;-0.17081952;0.95575774 +8071;1;-0.1417045;4.5651016;8.681928 +8071;0;-0.43940735;5.131073;8.807983 +8071;3;-0.013031006;-0.02104187;0.031188965 +8073;0;-0.4202881;5.164322;8.836609 +8074;12;0.23694211;-0.0347786;-0.1707681;0.9557653 +8074;3;-0.016067505;-0.020431519;0.03425598 +8077;0;-0.43463135;5.1358337;8.836609 +8082;1;-0.14049178;4.565029;8.681986 +8082;3;-0.017913818;-0.020431519;0.036697388 +8082;4;-11.056519;-1.1901855;-65.69672 +8082;6;0.4237033;-0.5259563;0.049145702 +8082;7;0.920612;0.3555713;-0.16137733;0.0;-0.3881604;0.78836834;-0.47729117;0.0;-0.042486273 +8082;0;-0.4202881;5.1833344;8.874756 +8082;3;-0.021575928;-0.019195557;0.039749146 +8083;12;0.23692916;-0.034825895;-0.17070882;0.95577735 +8083;5;999.58105 +8083;0;-0.44418335;5.15007;8.874756 +8084;1;-0.13920262;4.5647397;8.682159 +8084;2;0.29216307;-0.53705025;-0.1503973; +8084;3;-0.020355225;-0.018600464;0.0415802 +8084;0;-0.47283936;5.1168213;8.898605 +8085;12;0.23690219;-0.034869667;-0.17063749;0.9557951 +8085;3;-0.021575928;-0.019821167;0.04524231 +8085;0;-0.44418335;5.140564;8.865219 +8085;1;-0.13786215;4.564361;8.68238 +8086;3;-0.020355225;-0.019195557;0.044631958 +8088;4;-12.257385;-1.6403198;-65.84625 +8088;6;0.46163633;-0.52493334;0.05006218 +8088;7;0.90537345;0.38544208;-0.17813861;0.0;-0.42240238;0.774776;-0.47042376;0.0;-0.043303583 +8088;0;-0.44418335;5.1453247;8.922455 +8088;3;-0.020355225;-0.022262573;0.046463013 +8089;12;0.23687233;-0.03491606;-0.1705565;0.95581526 +8090;1;-0.13637593;4.563988;8.682599 +8090;0;-0.4202881;5.1453247;8.974915 +8090;3;-0.020355225;-0.023483276;0.047073364 +8092;0;-0.42507935;5.107315;8.998749 +8093;12;0.23683913;-0.034967523;-0.17046863;0.9558373 +8093;3;-0.019134521;-0.02470398;0.046463013 +8095;0;-0.40596008;5.121567;9.027374 +8095;1;-0.13470188;4.5635743;8.682842 +8095;3;-0.017913818;-0.027755737;0.046463013 +8097;4;-10.757446;-2.090454;-64.497375 +8097;6;0.43047374;-0.5156231;0.04493962 +8097;7;0.91709447;0.3630462;-0.16472803;0.0;-0.39674968;0.79061526;-0.4663874;0.0;-0.039083663 +8097;0;-0.44895935;5.1453247;9.079834 +8097;3;-0.016693115;-0.030197144;0.047073364 +8098;12;0.23680428;-0.03502708;-0.17037995;0.9558596 +8100;0;-0.43463135;5.097824;9.094147 +8100;1;-0.13285767;4.563228;8.683053 +8100;2;0.29464167;-0.52594376;-0.32002544; +8100;3;-0.016067505;-0.031417847;0.04585266 +8102;0;-0.43940735;5.1025696;9.132294 +8102;12;0.23676954;-0.03509756;-0.1702942;0.9558809 +8103;3;-0.015472412;-0.035705566;0.04524231 +8105;0;-0.41552734;5.074051;9.203827 +8105;1;-0.13083072;4.5628676;8.683273 +8106;3;-0.013626099;-0.038757324;0.044021606 +8107;4;-11.657715;-1.1901855;-64.19678 +8107;6;0.4560713;-0.50340885;0.0451166 +8107;7;0.9064586;0.3857867;-0.17175932;0.0;-0.42044255;0.7864128;-0.45252958;0.0;-0.039506175 +8110;0;-0.43940735;5.017044;9.222916 +8110;3;-0.013626099;-0.043029785;0.044021606 +8110;12;0.23673044;-0.035178468;-0.17021546;0.9559016 +8110;0;-0.47283936;5.031311;9.280151 +8110;1;-0.12856945;4.562487;8.683507 +8110;3;-0.013626099;-0.051574707;0.044631958 +8112;12;0.23668942;-0.035271432;-0.17014371;0.9559211 +8114;0;-0.49671936;4.98378;9.327835 +8115;3;-0.012420654;-0.058914185;0.042800903 +8115;0;-0.48239136;5.0122986;9.323074 +8115;3;-0.009353638;-0.06745911;0.039749146 +8115;1;-0.12576017;4.5620675;8.683768 +8117;4;-12.257385;-1.6403198;-65.54718 +8117;6;0.49112937;-0.49273372;0.05169556 +8117;7;0.8921505;0.41551933;-0.17723137;0.0;-0.4494382;0.7769044;-0.44093627;0.0;-0.04552573 +8117;0;-0.5062866;4.9790497;9.394608 +8117;3;-0.008132935;-0.0809021;0.03791809 +8118;5;999.58105 +8118;12;0.23664188;-0.03539632;-0.17008102;0.9559394 +8119;0;-0.45851135;4.974289;9.4756775 +8119;1;-0.12226105;4.561744;8.683989 +8119;2;0.3330918;-0.42208767;-0.63124084; +8119;3;-0.004470825;-0.09434509;0.03730774 +8122;0;-0.45851135;4.960037;9.4852295 +8122;12;0.23659147;-0.035564885;-0.17003962;0.955953 +8122;3;0.002243042;-0.106552124;0.03302002 +8124;0;-0.40119934;4.969528;9.509079 +8124;1;-0.11768706;4.5616927;8.684078 +8124;3;0.008972168;-0.11999512;0.032409668 +8126;4;-10.757446;-1.4907837;-64.94751 +8126;6;0.44192588;-0.48120567;0.04216618 +8126;7;0.91147053;0.37911257;-0.15967156;0.0;-0.4096646;0.80127716;-0.4360387;0.0;-0.03736661 +8127;0;-0.5206146;5.074051;7.992447 +8127;3;0.01751709;-0.12731934;0.028747559 +8127;12;0.2365733;-0.035796925;-0.17002052;0.9559522 +8128;0;-0.840683;5.824707;4.8065643 +8128;1;-0.1128004;4.5648375;8.682491 +8129;3;0.14945984;-0.0662384;0.019592285 +8131;0;0.38703918;5.107315;9.089371 +8131;3;0.35655212;-8.69751E-4;0.022644043 +8131;12;0.23667018;-0.036114104;-0.1700153;0.95591724 +8133;0;0.611557;4.5847015;12.971573 +8134;1;-0.11024122;4.574536;8.677418 +8134;3;0.38464355;0.05897522;0.067230225 +8138;4;-11.956787;-1.0406494;-65.097046 +8138;6;0.40248188;-0.33938944;-0.047111057 +8138;7;0.9129297;0.36935964;-0.17358822;0.0;-0.40569374;0.86760795;-0.28752246;0.0;0.044407323 +8138;0;-0.39163208;4.717743;12.508957 +8138;3;0.32844543;0.22207642;0.11917114 +8138;0;-0.93144226;5.017044;9.795227 +8138;12;0.23714513;-0.03630327;-0.16996573;0.9558012 +8138;2;0.19582766;-0.4062996;-0.86965847; +8138;1;-0.1146278;4.5886097;8.669927 +8138;3;0.29423523;0.42121887;0.13259888 +8140;0;-0.55882263;5.264099;7.5727386 +8141;12;0.23805425;-0.036143936;-0.16964738;0.9556379 +8141;3;0.30645752;0.5342407;0.11793518 +8143;0;-0.06201172;5.3258667;6.6904144 +8143;1;-0.13199548;4.602915;8.662093 +8143;3;0.34921265;0.5482788;0.108169556 +8145;4;-11.506653;-1.0406494;-65.097046 +8145;6;0.2963462;-0.67230344;0.009268476 +8145;7;0.9580544;0.22847925;-0.17299967;0.0;-0.28649443;0.74828476;-0.59832335;0.0;-0.0072514517 +8146;0;-0.057235718;5.230835;7.0004272 +8146;3;0.4011383;0.5140686;0.115493774 +8146;12;0.23903306;-0.035266973;-0.169056;0.9555311 +8147;0;-0.41552734;5.1595764;7.973358 +8148;1;-0.15157606;4.6198173;8.65277 +8148;3;0.44085693;0.48109436;0.13259888 +8150;0;-0.71170044;5.0835724;8.850922 +8150;12;0.24013199;-0.034252603;-0.16847222;0.95539546 +8150;3;0.45674133;0.47253418;0.14665222 +8152;0;-0.71170044;5.017044;9.294464 +8153;1;-0.16902342;4.638813;8.642278 +8153;3;0.4451294;0.49269104;0.15336609 +8155;4;-10.606384;-0.59051514;-63.89618 +8155;6;0.48549235;-0.49374855;0.07642338 +8155;7;0.8987489;0.4109091;-0.15298449;0.0;-0.43327892;0.77880937;-0.45356953;0.0;-0.06723007 +8155;0;-0.5922699;5.0360413;9.11322 +8155;3;0.42131042;0.52201843;0.1558075 +8156;12;0.24135761;-0.033389114;-0.1678441;0.95522773 +8156;5;999.6652 +8157;0;-0.40119934;5.15007;8.540909 +8157;1;-0.18697189;4.657204;8.63201 +8158;2;0.24531911;-0.46665525;0.4835863; +8158;3;0.39442444;0.53178406;0.15704346 +8159;0;-0.2817688;5.2498474;7.987671 +8160;12;0.24258567;-0.032488674;-0.16716214;0.95506734 +8160;3;0.3681488;0.50613403;0.1558075 +8162;0;-0.23399353;5.302109;7.7539673 +8162;1;-0.20501333;4.6742086;8.622404 +8162;3;0.34249878;0.4450531;0.14787292 +8165;4;-10.757446;-1.1901855;-65.24658 +8165;6;0.34287485;-0.5995537;0.03016811 +8165;7;0.94708574;0.27755922;-0.1612126;0.0;-0.32001323;0.77753174;-0.54132783;0.0;-0.024902636 +8166;0;-0.2817688;5.3163605;7.9161377 +8166;3;0.31378174;0.3607483;0.13809204 +8166;12;0.24371824;-0.031551685;-0.16647077;0.9549311 +8167;0;-0.37728882;5.287857;8.249985 +8167;1;-0.21860225;4.6888614;8.61411 +8167;3;0.27713013;0.27461243;0.12161255 +8170;0;-0.41552734;5.2593536;8.693527 +8170;12;0.24465859;-0.030839337;-0.16588402;0.9548161 +8170;3;0.23498535;0.19337463;0.10328674 +8172;0;-0.46806335;5.2926025;8.908142 +8172;1;-0.22599402;4.7000136;8.60784 +8172;3;0.18733215;0.120666504;0.080062866 +8174;4;-11.207581;-0.59051514;-63.89618 +8174;6;0.42956337;-0.5354877;0.052495047 +8174;7;0.91904587;0.35817578;-0.16451357;0.0;-0.39155877;0.781885;-0.4851159;0.0;-0.04512605 +8174;0;-0.43463135;5.368622;8.936752 +8174;3;0.13723755;0.04675293;0.056243896 +8175;12;0.24535653;-0.030462766;-0.16547242;0.9547205 +8176;0;-0.39163208;5.5158997;8.803207 +8177;1;-0.22812869;4.707358;8.603769 +8177;2;0.12657033;-0.5842123;0.1795702; +8177;3;0.09082031;-0.03263855;0.035476685 +8179;0;-0.36297607;5.625183;8.717377 +8179;12;0.2458002;-0.030374324;-0.16525501;0.9546468 +8179;3;0.048065186;-0.12365723;0.014083862 +8181;0;-0.3199768;5.7106934;8.6839905 +8181;1;-0.22448237;4.711137;8.601796 +8181;3;0.0040740967;-0.22079468;-0.007293701 +8184;4;-10.157776;-1.6403198;-64.34631 +8184;6;0.35534635;-0.58139616;0.036830086 +8184;7;0.9439259;0.29075152;-0.15642098;0.0;-0.32872033;0.78348744;-0.5273428;0.0;-0.030771824 +8184;0;-0.27697754;5.625183;8.769836 +8184;3;-0.039901733;-0.32403564;-0.0262146 +8185;12;0.2459757;-0.030599646;-0.16523796;0.95459735 +8187;0;-0.20054626;5.511139;9.003525 +8187;1;-0.21364646;4.711068;8.602111 +8187;3;-0.08204651;-0.4217682;-0.041488647 +8188;0;-0.20054626;5.4018707;9.179993 +8189;12;0.2458537;-0.031211838;-0.16543607;0.95457464 +8189;3;-0.12541199;-0.50912476;-0.052490234 +8191;0;-0.147995;5.2736053;9.270599 +8191;1;-0.19547243;4.7070255;8.604755 +8191;3;-0.16635132;-0.5750885;-0.064086914 +8194;12;0.2454426;-0.032216292;-0.16582297;0.95457995 +8194;4;-10.157776;-2.6901245;-64.34631 +8194;6;0.3635991;-0.5171474;0.015962552 +8194;7;0.9373104;0.30913433;-0.16088875;0.0;-0.3482194;0.81240517;-0.4676978;0.0;-0.013874589 +8194;0;-0.033355713;5.254593;9.418457 +8194;3;-0.19689941;-0.6203003;-0.0750885 +8194;5;999.6652 +8195;0;0.03352356;5.264099;9.633072 +8196;1;-0.17215826;4.699534;8.609346 +8196;2;0.01031591;-0.72740126;-0.49257374; +8196;3;-0.21949768;-0.6453552;-0.08241272 +8198;0;0.03831482;5.302109;9.852463 +8198;12;0.24479122;-0.033483267;-0.1663441;0.95461285 +8198;3;-0.23475647;-0.65023804;-0.0897522 +8200;0;0.09562683;5.311615;10.014618 +8200;1;-0.1470854;4.690006;8.6150055 +8201;3;-0.2451477;-0.63557434;-0.097076416 +8204;4;-11.357117;-1.4907837;-63.29651 +8204;6;0.36204404;-0.48764116;-0.009548435 +8204;7;0.9335477;0.31290272;-0.17487346;0.0;-0.35835415;0.82617134;-0.43476805;0.0;0.008435346 +8204;0;0.1338501;5.2736053;10.076614 +8204;3;-0.24636841;-0.60502625;-0.10256958 +8204;12;0.24400903;-0.034838907;-0.1669368;0.95466125 +8209;99;1 +8209;1;-0.12335213;4.679587;8.621041 +8209;0;0.19593811;5.2165833;10.090927 +8209;3;-0.2414856;-0.5634918;-0.10441589 +8209;0;0.21984863;5.097824;10.086151 +8212;12;0.24318789;-0.036118235;-0.16754387;0.95471686 +8212;1;-0.10286013;4.6694026;8.626831 +8212;3;-0.22865295;-0.5152283;-0.10256958 +8212;0;0.21505737;5.040802;10.08139 +8212;3;-0.21154785;-0.46514893;-0.09768677 +8212;4;-12.5564575;-1.940918;-65.54718 +8212;6;0.38303715;-0.46356508;-0.021328881 +8212;7;0.92375875;0.33429632;-0.18685743;0.0;-0.3824994;0.82964563;-0.4066721;0.0;0.01907647 +8212;0;0.21505737;4.9885406;10.071854 +8213;3;-0.19078064;-0.41383362;-0.089141846 +8213;12;0.2424126;-0.03721945;-0.16811505;0.95477134 +8216;1;-0.086421706;4.6606154;8.631762 +8216;2;-0.2561709;-0.4574728;-1.4324818; +8216;0;0.18640137;4.969528;10.100464 +8216;3;-0.16696167;-0.3612976;-0.07936096 +8219;12;0.24175608;-0.038100414;-0.16859931;0.95481765 +8219;0;0.1481781;4.9552917;10.13385 +8219;3;-0.14129639;-0.30752563;-0.06715393 +8220;1;-0.07394243;4.6537166;8.635599 +8220;0;0.1577301;4.917267;10.195847 +8220;3;-0.111968994;-0.2513275;-0.05432129 +8222;4;-11.357117;-1.1901855;-65.24658 +8222;6;0.3617667;-0.44932568;-0.015468801 +8222;7;0.9327831;0.31879637;-0.16817974;0.0;-0.3601686;0.8424379;-0.4007203;0.0;0.013932815 +8222;0;0.1481781;4.9125214;10.181549 +8222;3;-0.08265686;-0.19268799;-0.03904724 +8223;12;0.2412441;-0.038769417;-0.16897316;0.95485413 +8225;0;0.1386261;4.9267883;10.143387 +8225;1;-0.0655375;4.6491704;8.638115 +8225;3;-0.051498413;-0.13343811;-0.021942139 +8227;0;0.09085083;4.9220276;10.13385 +8227;12;0.24090749;-0.039217155;-0.16921598;0.95487785 +8227;3;-0.017913818;-0.07723999;-0.003616333 +8229;0;0.04307556;4.9647827;10.110016 +8229;1;-0.061298996;4.64727;8.639169 +8229;3;0.014465332;-0.023483276;0.014083862 +8231;4;-11.956787;-1.6403198;-64.34631 +8231;6;0.4095393;-0.45647907;-0.0042606564 +8231;7;0.9165482;0.35741642;-0.17942363;0.0;-0.39990586;0.82338154;-0.40263873;0.0;0.003824396 +8232;0;0.019195557;4.9315186;10.048004 +8232;3;0.04560852;0.025375366;0.029968262 +8234;5;999.6652 +8234;12;0.24076192;-0.039438378;-0.16930903;0.95488894 +8234;0;-0.052444458;4.9267883;10.009842 +8234;1;-0.06078444;4.6480875;8.638732 +8234;2;-0.15520719;-0.25099802;-1.4987392; +8234;3;0.07371521;0.069366455;0.043411255 +8236;0;-0.11456299;4.9220276;9.971695 +8236;12;0.24080639;-0.03945625;-0.16925663;0.9548862 +8237;3;0.099990845;0.11090088;0.05380249 +8238;0;-0.157547;4.9362793;9.923996 +8239;1;-0.0635088;4.6512976;8.636985 +8239;3;0.12197876;0.14450073;0.063568115 +8241;4;-11.506653;-1.6403198;-64.64691 +8241;6;0.431247;-0.46152195;0.015874024 +8241;7;0.91128546;0.37427062;-0.17169838;0.0;-0.41152984;0.81339985;-0.4111251;0.0;-0.01421262 +8241;0;-0.21966553;4.9457855;9.895386 +8241;3;0.13786316;0.17198181;0.06967163 +8242;12;0.24101825;-0.03930312;-0.16908869;0.9548689 +8244;0;-0.28652954;4.9552917;9.799988 +8244;1;-0.06878372;4.6563563;8.634219 +8244;3;0.15008545;0.19215393;0.07333374 +8246;0;-0.3343048;4.9362793;9.742767 +8247;12;0.24135925;-0.03901546;-0.16883697;0.9548391 +8248;3;0.15679932;0.20375061;0.075790405 +8248;1;-0.075636074;4.66242;8.630888 +8248;0;-0.37252808;4.9125214;9.690308 +8248;3;0.15924072;0.20680237;0.0745697 +8251;4;-12.406921;-1.4907837;-64.19678 +8251;6;0.49637783;-0.46889606;0.038424447 +8251;7;0.88693184;0.42484155;-0.18127765;0.0;-0.46062738;0.784407;-0.41536486;0.0;-0.034268774 +8251;0;-0.41552734;4.9457855;9.590164 +8251;12;0.24177228;-0.038646694;-0.16854292;0.95480156 +8254;1;-0.082922734;4.66876;8.627394 +8254;2;0.20617437;-0.23269272;-1.1611605; +8255;3;0.15740967;0.20497131;0.07395935 +8255;0;-0.46806335;4.9267883;9.547226 +8255;3;0.15252686;0.19276428;0.07211304 +8256;12;0.2422029;-0.038255412;-0.16824597;0.95476055 +8256;17;1;38dead6d7725;1714;1116;-57; +8257;17;1;38dead6d60ff;3928;862;-57; +8257;17;1;1c1bb5efa29a;9839;804;-73; +8257;17;1;1c1bb5ecd182;6539;5001;-65; +8257;0;-0.5445099;4.917267;9.513855 +8257;3;0.14030457;0.17626953;0.06661987 +8261;1;-0.08957423;4.6746283;8.624148 +8261;0;-0.5779419;4.9362793;9.466141 +8261;3;0.124420166;0.15672302;0.06173706 +8261;4;-12.406921;-1.4907837;-64.19678 +8261;6;0.52843165;-0.47991106;0.060977902 +8261;7;0.87617934;0.44722542;-0.17971937;0.0;-0.47894427;0.7660433;-0.4287075;0.0;-0.054056086 +8261;0;-0.63049316;4.9125214;9.423233 +8261;3;0.11036682;0.13166809;0.056243896 +8261;12;0.24260095;-0.03790062;-0.1679775;0.95472085 +8262;0;-0.64004517;4.893524;9.385086 +8263;1;-0.09487882;4.6793065;8.621555 +8263;3;0.087768555;0.105407715;0.050750732 +8265;0;-0.68304443;4.893524;9.385086 +8266;12;0.2429177;-0.03761627;-0.16775717;0.9546904 +8266;3;0.068222046;0.077301025;0.044021606 +8267;0;-0.7021332;4.850769;9.370773 +8268;1;-0.09832839;4.6823297;8.619874 +8268;3;0.042556763;0.05104065;0.03791809 +8270;4;-11.956787;-2.241516;-64.34631 +8270;6;0.5542446;-0.4765248;0.074788235 +8270;7;0.8659592;0.46766815;-0.17720322;0.0;-0.49568763;0.7555702;-0.4282608;0.0;-0.06639446 +8270;0;-0.69737244;4.8127594;9.365997 +8270;3;0.018127441;0.024154663;0.03363037 +8271;12;0.24312136;-0.037427362;-0.16759838;0.9546738 +8271;5;999.6652 +8272;0;-0.70692444;4.8222656;9.356461 +8272;1;-0.09983098;4.6833334;8.619311 +8272;2;0.5426686;-0.16247368;-0.80767155; +8272;3;-0.008132935;-0.0014953613;0.030578613 +8274;0;-0.71647644;4.827011;9.365997 +8275;12;0.24319534;-0.037334785;-0.16750191;0.95467556 +8275;3;-0.031341553;-0.023483276;0.028137207 +8277;0;-0.7403717;4.803253;9.332611 +8277;1;-0.09944375;4.6822705;8.619893 +8277;3;-0.05456543;-0.041809082;0.02508545 +8279;4;-11.956787;-2.241516;-64.34631 +8279;6;0.564562;-0.4740426;0.07916588 +8279;7;0.8614925;0.4760464;-0.1766651;0.0;-0.5028715;0.7516645;-0.4267559;0.0;-0.07036272 +8280;0;-0.7499237;4.793747;9.318314 +8280;3;-0.07350159;-0.058303833;0.022033691 +8280;12;0.24313515;-0.03733117;-0.16745661;0.95469886 +8282;0;-0.74513245;4.793747;9.313538 +8282;1;-0.09764851;4.679359;8.621495 +8282;3;-0.09060669;-0.07234192;0.018981934 +8284;0;-0.75468445;4.7652435;9.299225 +8284;12;0.24295796;-0.037391834;-0.1674482;0.9547431 +8285;3;-0.104034424;-0.08517456;0.020202637 +8287;1;-0.09474449;4.675016;8.623883 +8288;0;-0.72125244;4.712982;9.318314 +8288;3;-0.116256714;-0.09310913;0.018981934 +8289;4;-10.157776;-1.940918;-64.34631 +8289;6;0.51290095;-0.46705619;0.07724759 +8289;7;0.8857768;0.43815106;-0.15304588;0.0;-0.45896775;0.7780037;-0.42902067;0.0;-0.068905614 +8289;0;-0.7403717;4.6892242;9.365997 +8289;3;-0.1278534;-0.09739685;0.019592285 +8290;12;0.24268779;-0.037502907;-0.16746874;0.95480394 +8291;0;-0.7499237;4.717743;9.361221 +8291;1;-0.091199316;4.6696177;8.626845 +8292;2;0.6451212;-0.058528423;-0.72647095; +8292;3;-0.13641357;-0.09983826;0.019592285 +8294;0;-0.74513245;4.6797333;9.375534 +8294;12;0.24235575;-0.037639365;-0.16750197;0.95487696 +8294;3;-0.1431427;-0.10044861;0.020202637 +8296;0;-0.71170044;4.6749725;9.385086 +8296;1;-0.08742128;4.6634583;8.630216 +8296;3;-0.1461792;-0.09617615;0.022033691 +8298;4;-10.157776;-1.940918;-64.34631 +8298;6;0.51551807;-0.4610055;0.075688265 +8298;7;0.88412946;0.44152075;-0.15288746;0.0;-0.4623082;0.7792105;-0.42320472;0.0;-0.067722134 +8299;0;-0.73080444;4.627472;9.394608 +8299;3;-0.1473999;-0.08944702;0.023254395 +8300;12;0.24197814;-0.037781145;-0.16753814;0.9549608 +8301;0;-0.72125244;4.6322327;9.361221 +8301;1;-0.083887525;4.6569705;8.633754 +8301;3;-0.14924622;-0.08151245;0.023864746 +8303;0;-0.75468445;4.603714;9.385086 +8304;12;0.2415865;-0.037903346;-0.16756462;0.9550505 +8304;3;-0.1455841;-0.07234192;0.024475098 +8306;0;-0.7260437;4.57045;9.38031 +8306;1;-0.081000164;4.6504183;8.637312 +8306;3;-0.14129639;-0.062576294;0.026916504 +8308;4;-10.906982;-1.6403198;-65.84625 +8308;6;0.5363027;-0.45221165;0.07724681 +8308;7;0.8742699;0.45960093;-0.15626614;0.0;-0.4804518;0.77319884;-0.41391975;0.0;-0.0694131 +8308;0;-0.73080444;4.5752106;9.356461 +8308;3;-0.13519287;-0.05218506;0.028747559 +8309;12;0.24119766;-0.03798978;-0.16757841;0.95514286 +8309;5;999.6253 +8310;0;-0.72125244;4.546707;9.318314 +8311;1;-0.078828804;4.6442475;8.640652 +8311;2;0.6498183;0.06616783;-0.7482252; +8311;3;-0.1315155;-0.04058838;0.028137207 +8313;0;-0.73558044;4.57045;9.313538 +8313;12;0.2408385;-0.038037088;-0.1675717;0.9552329 +8313;3;-0.12359619;-0.029586792;0.030578613 +8315;0;-0.7594757;4.5514526;9.284912 +8315;1;-0.07757896;4.6385446;8.643725 +8316;3;-0.11381531;-0.019821167;0.029968262 +8320;4;-10.906982;-1.6403198;-65.84625 +8320;6;0.5423819;-0.4544595;0.08161506 +8320;7;0.87210333;0.46378466;-0.15601148;0.0;-0.4838081;0.7695474;-0.41680512;0.0;-0.073249616 +8320;0;-0.75468445;4.556198;9.251541 +8320;3;-0.10525513;-0.011260986;0.028747559 +8320;12;0.24051435;-0.0380368;-0.16754833;0.9553187 +8320;0;-0.7738037;4.5514526;9.261063 +8320;1;-0.07716498;4.633607;8.646378 +8320;3;-0.09732056;-0.003326416;0.026916504 +8323;0;-0.7881317;4.522949;9.21814 +8323;12;0.24023977;-0.03799727;-0.16751206;0.9553956 +8323;3;-0.08938599;0.0052337646;0.024475098 +8325;0;-0.7929077;4.503952;9.203827 +8325;1;-0.077554986;4.6293244;8.648667 +8326;3;-0.08265686;0.011947632;0.023864746 +8327;4;-11.506653;-1.940918;-64.64691 +8327;6;0.5785641;-0.45363855;0.085937604 +8327;7;0.85472757;0.4915159;-0.16689187;0.0;-0.5133114;0.7525681;-0.41249573;0.0;-0.0771507 +8327;0;-0.74513245;4.522949;9.189545 +8327;3;-0.072891235;0.016220093;0.02142334 +8328;12;0.2400093;-0.03792495;-0.16747308;0.95546335 +8329;0;-0.75468445;4.522949;9.13707 +8330;1;-0.07850735;4.625725;8.650584 +8330;2;0.6850381;0.12457466;-0.6015587; +8330;3;-0.064941406;0.01927185;0.020202637 +8332;0;-0.7785797;4.52771;9.098923 +8332;12;0.23982312;-0.03782748;-0.16743192;0.95552105 +8332;3;-0.056396484;0.022323608;0.019592285 +8334;0;-0.75468445;4.513443;9.041687 +8334;1;-0.07982809;4.622881;8.652093 +8335;3;-0.047836304;0.022323608;0.017150879 +8337;4;-10.906982;-1.940918;-65.84625 +8337;6;0.54302096;-0.4616069;0.083274186 +8337;7;0.87232757;0.4626433;-0.15813221;0.0;-0.4832168;0.766545;-0.42297786;0.0;-0.0744724 +8337;0;-0.73080444;4.5086975;9.041687 +8337;3;-0.040512085;0.023544312;0.013473511 +8338;12;0.2396804;-0.037721563;-0.16739167;0.95556813 +8339;0;-0.74513245;4.5086975;9.075058 +8339;1;-0.08130071;4.6207156;8.653235 +8340;3;-0.032562256;0.02293396;0.011642456 +8342;0;-0.7499237;4.503952;9.022598 +8342;12;0.23957643;-0.03761438;-0.16735879;0.9556042 +8342;3;-0.024017334;0.023544312;0.00920105 +8344;0;-0.7499237;4.4897003;8.970154 +8344;1;-0.082914256;4.619229;8.654014 +8344;3;-0.016693115;0.02293396;0.007369995 +8347;4;-10.757446;-0.74157715;-64.94751 +8347;6;0.52539474;-0.46266744;0.08340815 +8347;7;0.8807688;0.44882366;-0.15100902;0.0;-0.4676412;0.77417105;-0.42658037;0.0;-0.07455252 +8347;0;-0.73558044;4.537201;8.912918 +8347;3;-0.007537842;0.021102905;0.0043182373 +8348;12;0.239513;-0.037510645;-0.16733532;0.95562834 +8348;5;999.6253 +8349;0;-0.72125244;4.5086975;8.941528 +8349;1;-0.08455308;4.6184754;8.654401 +8349;2;0.66371566;0.14350796;-0.3786459; +8349;3;0.0028533936;0.016830444;0.001876831 +8351;0;-0.73080444;4.503952;8.898605 +8352;12;0.2394866;-0.03741469;-0.16732128;0.95564115 +8352;3;0.015075684;0.013763428;-0.0023956299 +8354;0;-0.68782043;4.456436;8.879532 +8354;1;-0.08603038;4.6185718;8.654334 +8354;3;0.024841309;0.0113220215;-0.004837036 +8356;4;-11.506653;-2.6901245;-63.89618 +8356;6;0.5681145;-0.46395034;0.07730696 +8356;7;0.85899377;0.48116812;-0.17494857;0.0;-0.5073063;0.75381374;-0.4176187;0.0;-0.069066145 +8356;0;-0.70692444;4.480179;8.855682 +8357;3;0.03401184;0.008880615;-0.0054626465 +8357;12;0.23950545;-0.037340928;-0.16732486;0.95563865 +8358;0;-0.71170044;4.503952;8.884293 +8358;1;-0.08739512;4.619533;8.653807 +8359;3;0.046844482;0.007659912;-0.0066833496 +8361;0;-0.7021332;4.456436;8.874756 +8361;12;0.23956977;-0.037283737;-0.16733882;0.9556223 +8361;3;0.056610107;0.010101318;-0.0066833496 +8363;0;-0.67349243;4.465927;8.846146 +8363;1;-0.08871469;4.621388;8.652803 +8364;3;0.06700134;0.008880615;-0.006072998 +8366;4;-11.506653;-2.241516;-64.64691 +8366;6;0.55216974;-0.466354;0.0759874 +8366;7;0.8668359;0.4685225;-0.17053528;0.0;-0.49396127;0.7604717;-0.42152715;0.0;-0.06780768 +8366;0;-0.65437317;4.4421844;8.846146 +8366;3;0.08103943;0.013168335;-0.0066833496 +8367;12;0.23968361;-0.037239976;-0.16735442;0.95559275 +8368;0;-0.65437317;4.432678;8.822296 +8368;1;-0.09007329;4.6241527;8.651313 +8368;2;0.60453224;0.19428158;-0.23240948; +8368;3;0.09326172;0.018051147;-0.006072998 +8370;0;-0.6495819;4.456436;8.836609 +8371;12;0.23984891;-0.037201148;-0.16736594;0.9555508 +8371;3;0.10670471;0.025375366;-0.0042419434 +8373;0;-0.65914917;4.4089203;8.827072 +8373;1;-0.09184558;4.6279836;8.649245 +8373;3;0.11709595;0.03515625;-0.0066833496 +8375;4;-10.157776;-1.0406494;-63.89618 +8375;6;0.5017304;-0.46211866;0.07453526 +8375;7;0.89028496;0.43049717;-0.1485427;0.0;-0.45049948;0.7847891;-0.42562458;0.0;-0.06665549 +8375;0;-0.64004517;4.404175;8.779373 +8376;3;0.12686157;0.046157837;-0.006072998 +8376;12;0.24007605;-0.037148803;-0.16736637;0.9554957 +8377;0;-0.65437317;4.342407;8.76506 +8378;1;-0.09442449;4.6326857;8.646699 +8378;3;0.13664246;0.055923462;-0.0054626465 +8380;0;-0.6687012;4.370926;8.7603 +8380;12;0.24035926;-0.03705993;-0.167357;0.9554296 +8381;3;0.14945984;0.065704346;-0.0030212402 +8382;0;-0.6495819;4.356659;8.722153 +8383;1;-0.09780492;4.6382604;8.643673 +8383;3;0.15985107;0.07608032;-0.0018005371 +8385;4;-11.357117;-0.14038086;-65.24658 +8385;6;0.5159871;-0.46213767;0.07433772 +8385;7;0.88374203;0.44163737;-0.15477836;0.0;-0.46322834;0.77856463;-0.4233869;0.0;-0.06647853 +8386;0;-0.6639252;4.342407;8.717377 +8386;3;0.17022705;0.08708191;-5.79834E-4 +8387;12;0.24069892;-0.036935035;-0.16732916;0.9553538 +8387;5;999.6253 +8387;0;-0.65437317;4.3851776;8.693527 +8387;1;-0.1019734;4.644754;8.640138 +8388;2;0.55917287;0.2998228;-0.14325905; +8388;3;0.18000793;0.09806824;6.5612793E-4 +8390;0;-0.64482117;4.3519135;8.65538 +8390;12;0.24109879;-0.036774136;-0.16728015;0.9552677 +8390;3;0.19100952;0.104782104;0.0043182373 +8392;0;-0.65437317;4.3091583;8.6410675 +8392;1;-0.10686576;4.652078;8.636137 +8392;3;0.20199585;0.11090088;0.008590698 +8394;4;-11.506653;-0.59051514;-65.54718 +8394;6;0.52758783;-0.46145305;0.07558402 +8394;7;0.87848395;0.450793;-0.15827698;0.0;-0.47296333;0.77365273;-0.42162457;0.0;-0.067614 +8395;0;-0.65437317;4.299652;8.574295 +8395;3;0.21421814;0.11578369;0.0110321045 +8395;12;0.24155077;-0.03657754;-0.16721037;0.9551733 +8397;0;-0.6639252;4.3091583;8.531357 +8397;1;-0.11210092;4.66035;8.631609 +8397;3;0.22276306;0.120666504;0.014083862 +8399;0;-0.68782043;4.252136;8.478897 +8399;12;0.24205989;-0.03636539;-0.16711462;0.95506936 +8400;3;0.234375;0.12251282;0.01776123 +8401;0;-0.6925812;4.252136;8.464584 +8402;1;-0.117582835;4.669441;8.626621 +8402;3;0.24598694;0.12432861;0.022033691 +8404;4;-11.956787;-1.940918;-64.64691 +8404;6;0.5724388;-0.46418443;0.08163919 +8404;7;0.857559;0.48436645;-0.17315237;0.0;-0.50919086;0.7516379;-0.41924357;0.0;-0.07291964 +8405;0;-0.6925812;4.252136;8.407364 +8405;3;0.25697327;0.12188721;0.027526855 +8406;12;0.24261837;-0.03614489;-0.16699857;0.9549562 +8407;0;-0.63526917;4.233139;8.426437 +8407;1;-0.12288728;4.679486;8.621103 +8407;2;0.55086374;0.43613672;0.07747364; +8407;3;0.2673645;0.121292114;0.031799316 +8409;0;-0.63526917;4.2188873;8.393066 +8409;12;0.24322675;-0.035939094;-0.1668585;0.95483375 +8409;3;0.27713013;0.120666504;0.036697388 +8411;0;-0.63526917;4.1951294;8.378754 +8411;1;-0.1278431;4.6903505;8.615125 +8411;3;0.28630066;0.12007141;0.04219055 +8413;4;-11.357117;-1.7913818;-65.24658 +8413;6;0.5407621;-0.46305034;0.075674266 +8413;7;0.8722474;0.46057916;-0.1644728;0.0;-0.48436475;0.76703614;-0.42076877;0.0;-0.06764072 +8414;0;-0.63049316;4.1381226;8.378754 +8414;3;0.29608154;0.121292114;0.048294067 +8414;12;0.24387725;-0.035751875;-0.16669734;0.954703 +8416;0;-0.59706116;4.1286316;8.30722 +8416;1;-0.13250391;4.701922;8.608745 +8416;3;0.30523682;0.12188721;0.05380249 +8418;0;-0.5779419;4.085861;8.302444 +8419;12;0.24456711;-0.03558171;-0.16650791;0.9545659 +8419;3;0.31500244;0.12310791;0.060516357 +8421;0;-0.5779419;4.0621033;8.30722 +8421;1;-0.13693638;4.7142925;8.601907 +8421;3;0.32539368;0.12739563;0.067230225 +8423;4;-11.657715;-1.7913818;-65.24658 +8423;6;0.54634136;-0.45384458;0.06945911 +8423;7;0.86818016;0.46696815;-0.16794008;0.0;-0.49231312;0.7679355;-0.40975943;0.0;-0.062377457 +8423;0;-0.54927063;4.0478516;8.283371 +8424;3;0.33332825;0.1341095;0.0745697 +8424;12;0.24530035;-0.035422303;-0.16628686;0.9544222 +8425;5;999.6253 +8426;0;-0.5445099;4.0668488;8.245209 +8427;1;-0.1412955;4.727274;8.594709 +8427;2;0.46183404;0.6492753;0.24826717; +8427;3;0.34249878;0.14021301;0.08250427 +8428;0;-0.5110626;4.0716095;8.178452 +8428;12;0.24607174;-0.035264295;-0.16603021;0.9542742 +8428;3;0.35227966;0.14633179;0.08984375 +8430;0;-0.5158386;4.085861;8.173676 +8430;1;-0.14581451;4.741231;8.586943 +8431;3;0.36021423;0.1512146;0.09716797 +8433;4;-12.5564575;-1.3412476;-62.69684 +8433;6;0.55840456;-0.46275762;0.06302617 +8433;7;0.8613151;0.47410843;-0.1826402;0.0;-0.5049354;0.75890225;-0.41122678;0.0;-0.056360047 +8433;0;-0.49671936;4.1143646;8.125992 +8433;3;0.3681488;0.15428162;0.10450745 +8434;12;0.24690066;-0.035095822;-0.16573136;0.95411825 +8435;0;-0.43463135;4.0763702;8.09259 +8435;1;-0.15028164;4.7558255;8.578791 +8435;3;0.37548828;0.15794373;0.11122131 +8438;0;-0.40119934;4.085861;8.102127 +8438;12;0.24776337;-0.034926634;-0.1653863;0.9539606 +8438;3;0.3815918;0.16404724;0.12161255 +8440;17;1;38dead6d7725;1822;507;-53; +8441;17;1;38dead6d60ff;4036;2338;-57; +8441;17;0;1c1bb5efa29a;0;0;0; +8441;17;1;1c1bb5ecd182;4316;3319;-65; +8441;0;-0.39640808;4.0763702;8.14505 +8441;1;-0.15461487;4.770963;8.570304 +8441;3;0.38587952;0.16894531;0.12893677 +8442;4;-10.456848;-2.5405884;-64.94751 +8442;6;0.47411886;-0.46355197;0.048630215 +8442;7;0.8985669;0.40837446;-0.16064803;0.0;-0.4366771;0.7958058;-0.41953105;0.0;-0.043481126 +8442;0;-0.37728882;4.1048584;8.106903 +8443;3;0.38891602;0.17626953;0.13687134 +8444;12;0.24865876;-0.034755897;-0.16499892;0.95380104 +8446;0;-0.3438568;4.1618805;8.083054 +8446;1;-0.15896928;4.7865214;8.561545 +8446;2;0.28645283;0.73006964;0.41286564; +8447;3;0.39135742;0.1854248;0.14543152 +8448;0;-0.32476807;4.1713715;8.044907 +8448;12;0.2495823;-0.03457685;-0.16456473;0.9536413 +8448;3;0.39320374;0.19459534;0.15397644 +8450;0;-0.28652954;4.180893;8.049683 +8450;1;-0.16354838;4.8023343;8.552599 +8450;3;0.3950348;0.20375061;0.16192627 +8453;4;-12.107849;-0.74157715;-63.746643 +8453;6;0.46705523;-0.478777;0.035580114 +8453;7;0.8997118;0.39963132;-0.17553757;0.0;-0.435341;0.7924997;-0.4271093;0.0;-0.03157279 +8453;0;-0.27697754;4.185623;8.044907 +8453;3;0.3938141;0.21047974;0.17047119 +8453;12;0.25052184;-0.03437469;-0.16408244;0.95348537 +8456;0;-0.24832153;4.1951294;7.987671 +8456;1;-0.16835903;4.8182483;8.5435505 +8456;3;0.39076233;0.21902466;0.18147278 +8457;0;-0.22921753;4.2188873;8.030594 +8458;12;0.25147238;-0.03414718;-0.1635486;0.953335 +8458;3;0.38954163;0.22697449;0.1900177 +8460;0;-0.22442627;4.199875;8.044907 +8460;1;-0.1732856;4.833979;8.53456 +8460;3;0.38220215;0.23490906;0.19979858 +8462;4;-10.157776;-1.3412476;-64.64691 +8462;6;0.39626864;-0.4809751;0.027889457 +8462;7;0.9271285;0.34218726;-0.15277638;0.0;-0.37392718;0.81784374;-0.43738988;0.0;-0.02472203 +8462;0;-0.21487427;4.2283936;8.059219 +8462;3;0.37365723;0.2453003;0.20956421 +8463;12;0.252415;-0.033894874;-0.1629604;0.9531955 +8464;5;999.6253 +8466;0;-0.19577026;4.275894;8.03537 +8466;1;-0.17840908;4.849236;8.525796 +8466;3;0.363266;0.25628662;0.21873474 +8466;2;0.083027884;0.6834316;0.46529865; +8467;0;-0.18144226;4.299652;8.049683 +8468;12;0.2533379;-0.033613373;-0.16231851;0.9530703 +8468;3;0.35227966;0.2666626;0.22727966 +8470;0;-0.19099426;4.3281555;8.068741 +8470;1;-0.18391745;4.8637185;8.517426 +8470;3;0.33639526;0.27583313;0.23583984 +8472;4;-12.257385;-3.2913208;-65.84625 +8472;6;0.45724466;-0.4922332;0.02366647 +8472;7;0.90195835;0.38906515;-0.18734838;0.0;-0.43131915;0.7907479;-0.43437502;0.0;-0.020854833 +8472;0;-0.138443;4.3091583;8.049683 +8472;3;0.32173157;0.285614;0.24499512 +8473;12;0.25422093;-0.0332901;-0.16162865;0.9529637 +8475;0;-0.138443;4.3281555;8.059219 +8475;1;-0.18970181;4.877029;8.509683 +8475;3;0.30584717;0.29232788;0.2559967 +8476;0;-0.11456299;4.380417;8.059219 +8476;3;0.28752136;0.299057;0.26332092 +8476;12;0.2550451;-0.032924026;-0.16088253;0.95288247 +8479;1;-0.19561306;4.8890877;8.502627 +8479;0;-0.16233826;4.3946686;8.068741 +8479;3;0.26797485;0.30516052;0.2731018 +8481;4;-11.956787;-4.0405273;-65.097046 +8481;6;0.44994754;-0.4986442;0.020116689 +8481;7;0.9044716;0.38195905;-0.18983793;0.0;-0.42616788;0.79082125;-0.43929788;0.0;-0.017665923 +8481;0;-0.143219;4.389923;8.083054 +8481;3;0.24720764;0.3112793;0.28286743 +8482;12;0.2558003;-0.032521717;-0.16008598;0.9528279 +8484;0;-0.09068298;4.375656;8.140289 +8484;1;-0.20154111;4.899523;8.496479 +8484;2;-0.044985607;0.5903959;0.4002819; +8484;3;0.22398376;0.3167572;0.29264832 +8486;0;-0.08111572;4.3946686;8.154587 +8486;12;0.2564649;-0.032091603;-0.15924166;0.95280534 +8487;3;0.19894409;0.32287598;0.30119324 +8488;0;-0.11456299;4.380417;8.197525 +8488;3;0.17573547;0.3289795;0.31219482 +8489;1;-0.20743817;4.908055;8.491412 +8491;4;-10.456848;-3.1402588;-65.69672 +8491;6;0.3843789;-0.4907145;0.013974405 +8492;7;0.92941034;0.330734;-0.16374172;0.0;-0.368842;0.8176384;-0.44206667;0.0;-0.012324973 +8492;0;-0.10978699;4.404175;8.249985 +8492;3;0.14823914;0.335083;0.32136536 +8493;12;0.2570243;-0.03162747;-0.15835193;0.95281845 +8493;0;-0.12411499;4.3994293;8.316757 +8493;1;-0.21340336;4.914588;8.487485 +8493;3;0.12075806;0.33998108;0.32807922 +8496;0;-0.11933899;4.4279175;8.345367 +8497;3;0.09387207;0.3473053;0.3372345 +8497;12;0.25747386;-0.031124815;-0.15740605;0.9528703 +8499;1;-0.21939193;4.9188614;8.484856 +8499;0;-0.095443726;4.4231873;8.340591 +8499;3;0.06455994;0.35035706;0.34701538 +8501;4;-11.657715;-3.440857;-64.94751 +8501;6;0.42603892;-0.4875817;0.011442781 +8501;7;0.91276574;0.36510837;-0.18317944;0.0;-0.40835845;0.80449504;-0.43131328;0.0;-0.010109114 +8501;0;-0.16711426;4.404175;8.421677 +8501;3;0.036453247;0.35708618;0.35923767 +8501;12;0.2577966;-0.030587457;-0.15642682;0.9529617 +8502;5;999.5857 +8508;0;-0.143219;4.380417;8.474136 +8508;1;-0.22535697;4.9207582;8.4836 +8508;2;-0.09435834;0.56132746;0.14659595; +8508;3;0.0071258545;0.3644104;0.370224 +8508;0;-0.19577026;4.366165;8.49321 +8508;12;0.25798607;-0.030015342;-0.1553995;0.9530967 +8508;3;-0.021575928;0.36990356;0.38183594 +8508;1;-0.23139977;4.920271;8.48372 +8508;0;-0.23399353;4.356659;8.54567 +8508;3;-0.047836304;0.37297058;0.39283752 +8510;4;-10.456848;-2.090454;-63.746643 +8510;6;0.4251424;-0.47131237;0.027374692 +8510;7;0.9157647;0.36748236;-0.16227075;0.0;-0.4009743;0.8116588;-0.42477024;0.0;-0.024387073 +8511;12;0.25804314;-0.029399972;-0.15431872;0.95327604 +8511;0;-0.26742554;4.342407;8.607666 +8511;3;-0.07411194;0.37480164;0.40382385 +8512;1;-0.23728704;4.9175453;8.485138 +8512;0;-0.3104248;4.323395;8.650604 +8512;3;-0.100372314;0.3766327;0.41542053 +8517;0;-0.36297607;4.266403;8.6362915 +8517;3;-0.124816895;0.37724304;0.42826843 +8517;12;0.25797376;-0.028756527;-0.15318647;0.953497 +8517;1;-0.24289992;4.9126477;8.487815 +8518;0;-0.43463135;4.223633;8.703064 +8518;3;-0.15107727;0.37602234;0.43925476 +8520;4;-10.606384;-2.241516;-65.54718 +8520;6;0.4849917;-0.45133296;0.049898583 +8520;7;0.89371985;0.4195187;-0.15896174;0.0;-0.4463746;0.79609287;-0.4086391;0.0;-0.044883434 +8520;0;-0.46328735;4.180893;8.76506 +8520;3;-0.1767273;0.37174988;0.45147705 +8521;12;0.25777873;-0.028093386;-0.15200427;0.95375866 +8522;0;-0.49195862;4.133362;8.81752 +8522;1;-0.2479509;4.90555;8.491773 +8523;2;0.10962571;0.6754179;-0.18582535; +8523;3;-0.20422363;0.36624146;0.46551514 +8525;12;0.25745565;-0.027427102;-0.15077509;0.9540605 +8527;1;-0.25215915;4.896189;8.49705 +8530;0;-0.5636139;4.100113;8.912918 +8530;3;-0.2292633;0.36135864;0.47590637 +8530;0;-0.6113739;4.0478516;8.955841 +8531;3;-0.25430298;0.35525513;0.4875183 +8531;12;0.25699946;-0.026773296;-0.14950176;0.95440227 +8531;4;-10.157776;-2.6901245;-64.64691 +8531;6;0.5487744;-0.4236266;0.06815963 +8531;7;0.8657876;0.47553104;-0.1558267;0.0;-0.4965451;0.7777483;-0.38542268;0.0;-0.062086508 +8531;0;-0.65914917;4.019348;8.998749 +8531;3;-0.27996826;0.34791565;0.5003357 +8531;0;-0.72125244;3.9670868;9.065521 +8532;1;-0.2554894;4.8846874;8.503568 +8532;3;-0.3074646;0.33998108;0.512558 +8534;0;-0.7833557;3.8910675;9.108459 +8534;12;0.25641453;-0.026134526;-0.1481858;0.9547825 +8534;3;-0.33067322;0.3338623;0.5253906 +8536;0;-0.859787;3.8103027;9.16568 +8536;1;-0.25784877;4.8709126;8.5113945 +8537;3;-0.35510254;0.32409668;0.5357666 +8538;4;-11.357117;-1.7913818;-65.24658 +8538;6;0.65227056;-0.3924289;0.09353135 +8538;7;0.8129143;0.56085056;-0.15689804;0.0;-0.5759543;0.7342962;-0.35928473;0.0;-0.0862954 +8539;0;-0.91233826;3.7485352;9.265839 +8539;3;-0.37832642;0.3130951;0.54859924 +8540;12;0.25569347;-0.02551629;-0.14682719;0.9552024 +8540;5;999.5857 +8541;0;-0.95054626;3.7247925;9.308762 +8541;1;-0.25910315;4.8550463;8.520417 +8541;2;0.5132209;0.9884143;-0.60382175; +8542;3;-0.40092468;0.3020935;0.5589752 +8543;0;-1.0126648;3.6772919;9.323074 +8544;12;0.25484976;-0.024930783;-0.14543091;0.9556568 +8544;3;-0.4216919;0.29049683;0.5699768 +8546;0;-1.0556488;3.6202698;9.375534 +8546;1;-0.25911936;4.8372726;8.5305195 +8546;3;-0.44184875;0.2788849;0.5821991 +8549;12;0.25388688;-0.024389327;-0.14400777;0.9561425 +8549;4;-10.757446;-2.5405884;-66.14685 +8549;6;0.717167;-0.3663896;0.112123884 +8549;7;0.7752835;0.6136283;-0.1496526;0.0;-0.6229151;0.7036473;-0.34184426;0.0;-0.10446267 +8549;0;-1.0938568;3.5537567;9.46138 +8549;3;-0.4583435;0.2660675;0.5931854 +8550;0;-1.1559601;3.5299988;9.513855 +8550;1;-0.2577982;4.817774;8.541587 +8551;3;-0.47361755;0.2526245;0.60479736 +8553;0;-1.1511993;3.5299988;9.513855 +8553;12;0.25282156;-0.023896074;-0.14254244;0.9566567 +8553;3;-0.4864502;0.24040222;0.61457825 +8555;0;-1.1082001;3.5014954;9.561539 +8555;1;-0.25498334;4.797024;8.553342 +8555;3;-0.49499512;0.22880554;0.62557983 +8557;4;-9.55658;-1.940918;-64.34631 +8557;6;0.7103202;-0.34888998;0.11538702 +8557;7;0.77877617;0.6127907;-0.1341462;0.0;-0.61790085;0.7124765;-0.33252922;0.0;-0.108194806 +8558;0;-1.1702881;3.434967;9.580612 +8558;3;-0.49865723;0.2171936;0.6359558 +8558;12;0.25167304;-0.023465741;-0.14104335;0.9571921 +8560;1;-0.25081807;4.775348;8.565585 +8560;0;-1.1702881;3.4017181;9.613998 +8560;2;0.8818242;1.295371;-0.9556322; +8561;3;-0.5023346;0.20680237;0.6438904 +8562;0;-1.1416473;3.3922272;9.637848 +8563;12;0.25046527;-0.023092648;-0.13950095;0.9577439 +8563;3;-0.49865723;0.19947815;0.65245056 +8566;0;-1.1416473;3.3732147;9.656921 +8566;1;-0.24551758;4.753594;8.57783 +8566;3;-0.49316406;0.18971252;0.6597748 +8567;4;-10.456848;-2.5405884;-64.497375 +8567;6;0.77897185;-0.33390126;0.11767445 +8567;7;0.7337466;0.6637471;-0.14510643;0.0;-0.6703081;0.6723333;-0.3140939;0.0;-0.11091899 +8568;0;-1.1129761;3.3969727;9.699844 +8568;12;0.2492466;-0.02278159;-0.13795356;0.95829326 +8569;3;-0.48338318;0.1829834;0.66833496 +8570;0;-1.1368561;3.3732147;9.695084 +8570;1;-0.23922393;4.7323236;8.589762 +8570;3;-0.4717865;0.17810059;0.6756592 +8572;0;-1.1034241;3.3399658;9.690308 +8573;12;0.24804848;-0.022518689;-0.13636413;0.9588377 +8573;3;-0.4540558;0.17504883;0.68544006 +8574;0;-1.1129761;3.335205;9.709381 +8575;1;-0.23216912;4.711925;8.60116 +8575;3;-0.4363556;0.17198181;0.69337463 +8577;4;-11.207581;-2.9907227;-66.29639 +8577;6;0.8032192;-0.32887518;0.114130795 +8577;7;0.71634424;0.6810294;-0.15182209;0.0;-0.68937254;0.65717864;-0.3047651;0.0;-0.10777975 +8577;0;-1.0747681;3.368454;9.699844 +8577;3;-0.41374207;0.17198181;0.6994934 +8578;12;0.24689762;-0.022296606;-0.13472962;0.95937085 +8579;5;999.5857 +8579;0;-1.0317688;3.3637238;9.671219 +8580;1;-0.2246319;4.6932325;8.611574 +8580;2;0.9035667;1.3810153;-1.1010199; +8580;3;-0.38809204;0.17260742;0.70803833 +8582;0;-1.0126648;3.3732147;9.633072 +8582;12;0.24583997;-0.022111721;-0.1330679;0.95987856 +8582;3;-0.359375;0.17442322;0.7153778 +8584;0;-0.98876953;3.4112244;9.599686 +8585;1;-0.21683246;4.6767025;8.620763 +8585;3;-0.3294525;0.17810059;0.7208557 +8587;4;-9.707642;-0.74157715;-65.69672 +8587;6;0.6684989;-0.33976936;0.10263826 +8587;7;0.80178714;0.58437514;-0.12507203;0.0;-0.58975047;0.7398898;-0.3236624;0.0;-0.09660076 +8587;0;-0.9553375;3.415985;9.59491 +8588;3;-0.29585266;0.18237305;0.7257538 +8588;12;0.24490358;-0.021952553;-0.13136943;0.9603554 +8589;0;-0.93144226;3.434967;9.528137 +8589;1;-0.20905039;4.6627417;8.628513 +8589;3;-0.2622528;0.18908691;0.72880554 +8591;0;-0.90756226;3.4302368;9.528137 +8592;12;0.24411163;-0.021805871;-0.12963204;0.9607963 +8592;3;-0.2280426;0.19642639;0.7342987 +8594;0;-0.835907;3.5062408;9.509079 +8594;1;-0.20157151;4.65162;8.634692 +8594;3;-0.19200134;0.20619202;0.7391968 +8596;4;-10.757446;-0.440979;-66.14685 +8596;6;0.6441812;-0.352011;0.08768081 +8596;7;0.814652;0.5637193;-0.13624479;0.0;-0.57409525;0.7505618;-0.32721788;0.0;-0.08219891 +8596;0;-0.8072357;3.5109863;9.413681 +8596;3;-0.15657043;0.21780396;0.7416382 +8597;12;0.24348366;-0.021662507;-0.12786251;0.96119595 +8598;0;-0.802475;3.5965118;9.370773 +8599;1;-0.1946607;4.6435604;8.639188 +8599;2;0.73465335;1.2429895;-0.91465664; +8600;3;-0.124191284;0.233078;0.7453003 +8602;12;0.24303219;-0.02150526;-0.126056;0.96155226 +8603;0;-0.73558044;3.606018;9.294464 +8603;3;-0.09609985;0.24957275;0.749588 +8604;0;-0.6925812;3.6677704;9.246765 +8604;3;-0.06921387;0.2685089;0.7514038 +8604;1;-0.18873103;4.6382847;8.642153 +8606;4;-9.55658;0.30975342;-67.04712 +8606;6;0.5334322;-0.37666124;0.07476024 +8606;7;0.8726314;0.47284532;-0.12219623;0.0;-0.4834156;0.8007043;-0.35381067;0.0;-0.06945465 +8607;0;-0.67349243;3.7247925;9.199066 +8607;3;-0.047225952;0.28622437;0.7538452 +8608;12;0.2427441;-0.021310532;-0.12421344;0.9618691 +8608;0;-0.6257019;3.7675476;9.122772 +8608;1;-0.18412137;4.635316;8.643846 +8609;3;-0.025238037;0.30577087;0.7563019 +8611;12;0.24259426;-0.021055777;-0.12233064;0.9621538 +8611;0;-0.5922699;3.8150635;9.041687 +8611;3;-0.0063171387;0.32409668;0.7587433 +8613;0;-0.5636139;3.8483124;8.974915 +8614;3;0.006515503;0.34181213;0.76179504 +8614;1;-0.18088421;4.63426;8.64448 +8616;4;-10.906982;-0.29144287;-66.29639 +8616;6;0.5329968;-0.40436026;0.06271645 +8616;7;0.87212425;0.4671393;-0.14553414;0.0;-0.4858798;0.7918291;-0.3700374;0.0;-0.057620846 +8616;0;-0.54927063;3.9053192;8.917694 +8616;3;0.01751709;0.35586548;0.7648468 +8617;12;0.24256058;-0.02073363;-0.120410934;0.9624114 +8618;5;999.5857 +8618;0;-0.49671936;3.962326;8.812759 +8618;1;-0.17885917;4.634535;8.644374 +8619;2;0.46376824;0.90890026;-0.46463776; +8620;3;0.023010254;0.37051392;0.76545715 +8620;0;-0.49195862;4.0336;8.750748 +8621;12;0.24261099;-0.020349715;-0.11845479;0.96264964 +8625;9;2AEC2AEBC4E1;-64;-2147483648 +8627;3;0.026672363;0.3815155;0.76667786 +8627;0;-0.48239136;4.0716095;8.674438 +8627;1;-0.17785448;4.6355424;8.643855 +8627;3;0.02911377;0.3925171;0.76667786 +8627;4;-9.707642;-1.4907837;-65.69672 +8627;6;0.4700744;-0.43825954;0.05555345 +8627;7;0.9008321;0.41014484;-0.14241798;0.0;-0.43124688;0.8072772;-0.40290183;0.0;-0.050277315 +8627;0;-0.5110626;4.1618805;8.602905 +8627;3;0.026062012;0.401062;0.76667786 +8628;12;0.24270856;-0.019913126;-0.11649072;0.9628738 +8628;0;-0.5158386;4.1951294;8.540909 +8628;3;0.019958496;0.40533447;0.7636261 +8628;1;-0.17772906;4.636887;8.643136 +8630;0;-0.5110626;4.223633;8.517059 +8631;12;0.2428275;-0.019422317;-0.1144839;0.9630945 +8631;3;0.013244629;0.4084015;0.7636261 +8632;0;-0.5158386;4.280655;8.464584 +8633;1;-0.17808983;4.6378875;8.642591 +8633;3;0.006515503;0.40899658;0.7611847 +8634;4;-10.006714;-0.14038086;-66.89758 +8634;6;0.44220084;-0.46746203;0.06086554 +8634;7;0.9138682;0.3820192;-0.13750042;0.0;-0.40236345;0.8068465;-0.43255356;0.0;-0.054302033 +8635;0;-0.5110626;4.290146;8.431213 +8635;3;-0.003250122;0.40899658;0.75813293 +8637;12;0.24292924;-0.018906973;-0.112490706;0.96331394 +8637;0;-0.49671936;4.3281555;8.431213 +8637;1;-0.17861213;4.638363;8.642326 +8637;3;-0.015472412;0.40777588;0.7556915 +8638;2;0.35451698;0.50219965;0.05771351; +8639;0;-0.46328735;4.366165;8.397842 +8639;12;0.24300069;-0.018383183;-0.11050484;0.9635359 +8640;3;-0.027069092;0.4071808;0.7526245 +8641;0;-0.49671936;4.413666;8.364441 +8642;1;-0.17916001;4.6380057;8.642506 +8643;3;-0.039901733;0.4071808;0.7508087 +8644;4;-10.006714;-0.440979;-66.44745 +8644;6;0.43154466;-0.48481175;0.05931499 +8644;7;0.9182791;0.37007353;-0.14074507;0.0;-0.3924445;0.8036483;-0.44736642;0.0;-0.052448917 +8644;0;-0.47763062;4.4516907;8.369217 +8644;3;-0.053344727;0.4071808;0.74591064 +8645;12;0.24302424;-0.017861128;-0.10856148;0.96376073 +8646;0;-0.47763062;4.456436;8.350128 +8646;1;-0.1798225;4.63668;8.643204 +8647;3;-0.06677246;0.4071808;0.74224854 +8649;0;-0.48239136;4.513443;8.350128 +8649;12;0.24299288;-0.01732337;-0.10660337;0.963997 +8649;3;-0.0771637;0.4084015;0.7416382 +8651;0;-0.49671936;4.537201;8.373978 +8651;1;-0.18067546;4.634382;8.644419 +8652;3;-0.088150024;0.4108429;0.7391968 +8656;4;-9.106445;-1.4907837;-64.94751 +8656;6;0.41606995;-0.49580717;0.059247594 +8656;7;0.92446494;0.35550082;-0.13778149;0.0;-0.37769288;0.8045426;-0.45832205;0.0;-0.052082807 +8656;0;-0.49671936;4.537201;8.38353 +8656;12;0.24290489;-0.01677324;-0.10466045;0.96424174 +8656;3;-0.100372314;0.41389465;0.736145 +8656;5;999.5811 +8656;0;-0.49195862;4.53244;8.421677 +8658;3;-0.112594604;0.42060852;0.7349243 +8658;2;0.33427483;0.21657324;0.2371645; +8658;1;-0.18182722;4.63115;8.646126 +8660;12;0.2427665;-0.016204942;-0.102725044;0.9644944 +8660;0;-0.49671936;4.6179657;8.44075 +8660;3;-0.12113953;0.4242859;0.733078 +8661;0;-0.5253906;4.594223;8.464584 +8661;1;-0.1835099;4.627036;8.6482935 +8662;3;-0.1302948;0.43099976;0.7318573 +8663;4;-9.257507;-1.3412476;-65.54718 +8663;6;0.42093328;-0.4964607;0.061989754 +8663;7;0.92301214;0.3592822;-0.13771266;0.0;-0.3808955;0.8025202;-0.45921642;0.0;-0.054471068 +8664;0;-0.5397186;4.6084595;8.459839 +8664;3;-0.13702393;0.43954468;0.733078 +8664;12;0.24257764;-0.015614576;-0.10083727;0.9647509 +8666;0;-0.5445099;4.65123;8.483673 +8667;17;1;38dead6d7725;1955;1281;-57; +8668;17;1;38dead6d60ff;2927;983;-58; +8668;17;1;1c1bb5efa29a;6463;3176;-70; +8669;17;1;1c1bb5ecd182;10109;1231;-63; +8669;1;-0.18581663;4.622251;8.650803 +8669;3;-0.1431427;0.4487152;0.7324829 +8669;0;-0.5827179;4.6417236;8.49321 +8669;12;0.2423554;-0.0149767045;-0.09890205;0.96501714 +8669;3;-0.1473999;0.4603119;0.7337036 +8670;0;-0.57315063;4.684494;8.583832 +8670;1;-0.1889693;4.6169963;8.65354 +8670;3;-0.15168762;0.47314453;0.736145 +8673;4;-8.956909;-0.59051514;-64.34631 +8673;6;0.41641605;-0.4986278;0.06667199 +8673;7;0.9253996;0.35523507;-0.13207425;0.0;-0.374449;0.80318916;-0.46333045;0.0;-0.05851061 +8673;0;-0.63526917;4.7082367;8.598129 +8673;3;-0.15596008;0.48658752;0.7385864 +8673;12;0.24211006;-0.014289826;-0.09695467;0.96528673 +8675;0;-0.64004517;4.717743;8.65538 +8675;1;-0.1931714;4.61141;8.6564245 +8675;2;0.40700698;0.019116879;0.10206318; +8675;3;-0.1578064;0.49942017;0.7416382 +8677;0;-0.6782532;4.7557526;8.6362915 +8678;12;0.2418509;-0.013541715;-0.094983235;0.96555835 +8678;3;-0.1578064;0.51345825;0.7440796 +8680;0;-0.69737244;4.750992;8.669678 +8680;1;-0.19843799;4.605713;8.659339 +8680;3;-0.1578064;0.52690125;0.7483673 +8682;4;-10.157776;1.05896;-65.84625 +8682;6;0.4486178;-0.49994928;0.08026528 +8682;7;0.9148171;0.3806361;-0.13500279;0.0;-0.39769113;0.7907654;-0.46532968;0.0;-0.07036575 +8682;0;-0.6925812;4.750992;8.741211 +8683;3;-0.15657043;0.5397339;0.7538452 +8683;12;0.24158369;-0.012774544;-0.093148954;0.9658144 +8685;1;-0.20469569;4.6000476;8.662204 +8685;0;-0.75468445;4.803253;8.745987 +8685;3;-0.15351868;0.5519562;0.76179504 +8687;0;-0.7785797;4.817505;8.774612 +8687;12;0.24132815;-0.0119042145;-0.09111525;0.9660834 +8688;3;-0.15107727;0.56233215;0.7672882 +8690;0;-0.7881317;4.8555145;8.803207 +8690;3;-0.14802551;0.5739441;0.77401733 +8691;1;-0.2117366;4.594662;8.664892 +8692;4;-10.006714;0.1586914;-64.94751 +8692;6;0.47216746;-0.5023554;0.08928974 +8692;7;0.9065644;0.39862534;-0.13870388;0.0;-0.41476846;0.78055364;-0.46765703;0.0;-0.07815413 +8692;0;-0.7929077;4.850769;8.807983 +8693;12;0.241089;-0.010986857;-0.08903619;0.9663478 +8693;3;-0.1431427;0.58432007;0.7843933 +8694;5;999.5811 +8694;0;-0.8072357;4.869766;8.860458 +8695;1;-0.21940055;4.5896015;8.667383 +8695;2;0.5651008;-0.15738535;-0.1186533; +8695;3;-0.13885498;0.5947113;0.79234314 +8697;0;-0.8120117;4.9125214;8.898605 +8697;12;0.24086863;-0.010028152;-0.08690985;0.96660674 +8697;3;-0.13702393;0.6026459;0.80210876 +8699;0;-0.826355;4.9220276;8.898605 +8699;1;-0.2275102;4.584933;8.669644 +8699;3;-0.1315155;0.60998535;0.81188965 +8701;4;-8.207703;0.7598877;-66.29639 +8701;6;0.41863382;-0.5034218;0.092597865 +8702;7;0.9278646;0.35607943;-0.11079121;0.0;-0.3640154;0.80029553;-0.47646597;0.0;-0.080994025 +8702;0;-0.831131;4.94104;8.951065 +8702;3;-0.1278534;0.6179352;0.8247223 +8702;12;0.24066901;-0.009043426;-0.084759876;0.9668571 +8704;0;-0.845459;4.94104;8.960602 +8704;1;-0.23587026;4.58063;8.671696 +8705;3;-0.1260376;0.6240387;0.83631897 +8706;0;-0.883667;4.9647827;8.989227 +8707;12;0.24048907;-0.008021781;-0.08250753;0.9671056 +8707;3;-0.12174988;0.62831116;0.84732056 +8709;0;-0.87890625;4.9885406;8.979691 +8709;1;-0.24423602;4.576679;8.67355 +8709;3;-0.11747742;0.6325836;0.8577118 +8711;4;-9.407043;0.1586914;-64.94751 +8711;6;0.46888041;-0.5050623;0.09756635 +8711;7;0.9091314;0.39546704;-0.13071296;0.0;-0.4076918;0.7806941;-0.47360736;0.0;-0.08524924 +8711;0;-0.90756226;5.017044;9.008301 +8712;3;-0.11503601;0.6368561;0.8686981 +8712;12;0.24032673;-0.006991844;-0.080207445;0.96734744 +8713;0;-0.87890625;5.0265503;8.998749 +8714;1;-0.25250837;4.573142;8.675178 +8714;2;0.6443342;-0.33241034;-0.3155489; +8714;3;-0.113204956;0.6387024;0.8809204 +8716;0;-0.897995;5.0027924;9.036911 +8716;12;0.24018191;-0.00595685;-0.07785197;0.96758264 +8717;3;-0.10952759;0.6411438;0.8943634 +8718;0;-0.9219055;5.0027924;9.027374 +8718;1;-0.26048923;4.569841;8.676682 +8719;3;-0.10649109;0.6411438;0.90657043 +8721;4;-8.956909;0.7598877;-65.84625 +8721;6;0.45542818;-0.5038506;0.10177051 +8721;7;0.9150006;0.38518712;-0.12002016;0.0;-0.39352044;0.7864693;-0.47603336;0.0;-0.08896972 +8723;12;0.24003938;-0.005064841;-0.07599808;0.9677705 +8723;0;-0.91233826;4.9885406;9.079834 +8723;3;-0.10525513;0.6417389;0.9200134 +8723;0;-0.91233826;5.0027924;9.098923 +8723;1;-0.26797703;4.566797;8.678057 +8724;3;-0.10649109;0.6417389;0.9334564 +8727;9;2AEC2AEBC4E1;-60;-2147483648 +8730;0;-0.9219055;4.9790497;9.117996 +8730;3;-0.10586548;0.6435852;0.94932556 +8730;12;0.23991282;-0.004044157;-0.07352177;0.96799797 +8730;1;-0.27491972;4.5637927;8.6794195 +8730;0;-0.9219055;4.998047;9.103683 +8730;3;-0.10649109;0.6448059;0.9633789 +8731;4;-8.657837;0.1586914;-65.69672 +8731;6;0.45604277;-0.49993655;0.100923255 +8731;7;0.914504;0.38649967;-0.119584255;0.0;-0.39479628;0.787923;-0.47256044;0.0;-0.088421285 +8731;0;-0.93144226;4.9885406;9.108459 +8731;3;-0.10586548;0.6460266;0.9792633 +8732;12;0.23978415;-0.0030365838;-0.070979066;0.9682233 +8732;5;999.5811 +8733;1;-0.28132755;4.560888;8.680741 +8733;0;-0.90756226;5.031311;9.098923 +8733;3;-0.108932495;0.6460266;0.993927 +8734;2;0.6766107;-0.38097334;-0.43239784; +8737;0;-0.92666626;5.0360413;9.103683 +8737;12;0.23965645;-0.002041088;-0.068364404;0.9684457 +8737;3;-0.108932495;0.64419556;1.0079651 +8738;0;-0.90756226;4.9885406;9.098923 +8738;1;-0.28708324;4.557943;8.682099 +8738;3;-0.10952759;0.64297485;1.0226288 +8740;4;-9.106445;-0.74157715;-66.14685 +8740;6;0.4742975;-0.4994196;0.0994151 +8740;7;0.90693027;0.40093094;-0.12935206;0.0;-0.41217244;0.78095704;-0.4692762;0.0;-0.08712892 +8740;0;-0.89323425;4.9457855;9.127518 +8741;3;-0.1101532;0.6392975;1.0379181 +8741;12;0.23948933;-0.001991527;-0.069377504;0.968415 +8742;1;-0.29200763;4.554918;8.683522 +8742;0;-0.883667;4.9125214;9.179993 +8743;3;-0.113204956;0.6380768;1.0531769 +8744;9;52ADB5BC186F;-75;-2147483648 +8745;0;-0.883667;4.917267;9.19429 +8745;12;0.23934287;-0.0010409685;-0.066628;0.9686458 +8746;3;-0.11381531;0.6356354;1.0684509 +8747;1;-0.29609513;4.551784;8.685028 +8747;0;-0.883667;4.8982697;9.13707 +8747;3;-0.11442566;0.635025;1.0794525 +8749;4;-7.156372;-0.59051514;-66.29639 +8749;6;0.42026386;-0.49016333;0.09641246 +8749;7;0.92723113;0.35996166;-0.10329634;0.0;-0.3647323;0.8054833;-0.4670837;0.0;-0.08492875 +8749;0;-0.850235;4.9030304;9.13707 +8750;3;-0.113204956;0.63319397;1.0922699 +8750;12;0.23918593;-1.1839128E-4;-0.06380919;0.96887493 +8753;0;-0.840683;4.884018;9.13707 +8753;1;-0.29949266;4.5486946;8.68653 +8753;2;0.6292646;-0.33085728;-0.48111916; +8753;3;-0.11074829;0.6301422;1.1057129 +8755;0;-0.826355;4.850769;9.11322 +8755;12;0.23902433;7.813637E-4;-0.060932785;0.9690996 +8756;3;-0.108932495;0.62586975;1.1185455 +8757;0;-0.7976837;4.8222656;9.103683 +8757;1;-0.3020426;4.5457864;8.687963 +8757;3;-0.104034424;0.622818;1.1283112 +8761;4;-7.9071045;0.30975342;-65.54718 +8761;6;0.4203066;-0.48554802;0.08739887 +8761;7;0.9261014;0.3608788;-0.110012315;0.0;-0.36929193;0.8074429;-0.4600646;0.0;-0.07719888 +8761;12;0.23885767;0.0011070117;-0.06016719;0.9691882 +8761;0;-0.7976837;4.827011;9.089371 +8761;3;-0.09793091;0.6191559;1.1399231 +8761;0;-0.7785797;4.8317566;9.108459 +8761;1;-0.30380788;4.5432916;8.689207 +8762;3;-0.09120178;0.61486816;1.1502991 +8764;0;-0.7499237;4.803253;9.098923 +8764;12;0.23871948;0.0019427767;-0.057184644;0.9694015 +8764;3;-0.08204651;0.6118164;1.16008 +8766;1;-0.3047287;4.5414143;8.690156 +8767;0;-0.69737244;4.803253;9.079834 +8767;3;-0.07411194;0.61120605;1.1686249 +8768;4;-7.45697;0.1586914;-65.69672 +8768;6;0.3887687;-0.48536485;0.07665404 +8768;7;0.9362012;0.33527094;-0.10545459;0.0;-0.3448758;0.8185;-0.45947638;0.0;-0.067734495 +8769;0;-0.6925812;4.7890015;9.070297 +8769;3;-0.0637207;0.6105957;1.1777954 +8769;12;0.23861098;0.0027424146;-0.054156017;0.96960014 +8771;0;-0.6782532;4.7557526;9.041687 +8771;1;-0.30511943;4.5402856;8.690732 +8771;2;0.49500188;-0.21518087;-0.42480564; +8772;3;-0.053344727;0.609375;1.1851349 +8772;5;999.5811 +8773;0;-0.6113739;4.7747498;9.041687 +8774;12;0.23853974;0.0035255342;-0.051066216;0.96978277 +8774;3;-0.04234314;0.60998535;1.1949005 +8776;0;-0.5874939;4.7557526;9.017838 +8776;1;-0.30498946;4.5400753;8.690846 +8776;3;-0.028289795;0.6130371;1.2046814 +8778;4;-7.9071045;1.3595581;-65.84625 +8778;6;0.3680327;-0.4844312;0.06505605 +8778;7;0.9419558;0.31838423;-0.106540315;0.0;-0.33077127;0.82568175;-0.4569903;0.0;-0.057530094 +8778;0;-0.5349426;4.727234;9.017838 +8778;3;-0.017288208;0.6154785;1.212616 +8779;12;0.23850816;0.0034535488;-0.051285844;0.96977925 +8780;0;-0.5206146;4.727234;8.984451 +8780;1;-0.30455196;4.540912;8.690425 +8781;3;-0.0063171387;0.6185303;1.2205658 +8783;0;-0.46328735;4.750992;8.936752 +8783;12;0.2385434;0.004204192;-0.048129026;0.9699294 +8783;3;0.0052948;0.6234131;1.2297211 +8786;0;-0.43463135;4.7557526;8.931976 +8786;1;-0.30392498;4.5427594;8.689481 +8786;3;0.016296387;0.6277008;1.2376709 +8787;4;-7.7575684;0.9094238;-67.196655 +8787;6;0.3301529;-0.48877215;0.048621804 +8788;7;0.95227313;0.28622857;-0.10606213;0.0;-0.30221605;0.8352266;-0.459415;0.0;-0.042911768 +8788;0;-0.4202881;4.73674;8.917694 +8788;3;0.024841309;0.6325836;1.2449951 +8789;12;0.23863;0.0049542473;-0.044928733;0.9700581 +8790;0;-0.37728882;4.712982;8.86998 +8792;1;-0.30324847;4.5454946;8.688074 +8792;2;0.24031767;-0.14366722;-0.30331612; +8792;3;0.03401184;0.6387024;1.2523193 +8793;12;0.23876381;0.005709238;-0.041684207;0.9701658 +8793;0;-0.32476807;4.712982;8.850922 +8793;3;0.043167114;0.64297485;1.2584381 +8795;0;-0.3056488;4.7557526;8.850922 +8795;1;-0.30257794;4.5490265;8.686249 +8795;3;0.051116943;0.64907837;1.2645416 +8797;4;-6.4071655;0.9094238;-68.39752 +8797;6;0.25930977;-0.49280542;0.034519274 +8797;7;0.9701781;0.2259026;-0.087878205;0.0;-0.2404788;0.8515545;-0.46585938;0.0;-0.030405754 +8799;12;0.23894252;0.0063169873;-0.03903775;0.97022814 +8799;0;-0.3056488;4.7794952;8.774612 +8799;3;0.055999756;0.6564026;1.2688141 +8799;0;-0.26742554;4.73674;8.807983 +8800;1;-0.30209187;4.553247;8.684054 +8800;3;0.06088257;0.6606903;1.2737122 +8806;0;-0.21487427;4.727234;8.774612 +8806;1;-0.3017469;4.557874;8.681638 +8806;3;0.06515503;0.6674042;1.2779846 +8806;0;-0.21487427;4.7700043;8.741211 +8806;3;0.06578064;0.67045593;1.2828674 +8806;12;0.23915297;0.0070993723;-0.03571921;0.9702987 +8807;4;-6.7077637;0.9094238;-66.89758 +8807;6;0.24965611;-0.49940234;0.024576802 +8807;7;0.9716125;0.21689574;-0.094474226;0.0;-0.23559235;0.8506528;-0.46998528;0.0;-0.02157304 +8807;0;-0.171875;4.7462463;8.722153 +8808;12;0.23938657;0.007898723;-0.032371767;0.9703525 +8808;3;0.06578064;0.67533875;1.2846985 +8809;1;-0.301507;4.5626554;8.679134 +8810;0;-0.17666626;4.750992;8.6792145 +8810;2;-0.0026501715;-0.13299656;-0.12185478; +8810;3;0.063934326;0.67840576;1.2883606 +8810;5;999.57654 +8812;0;-0.17666626;4.7414856;8.660141 +8812;3;0.06333923;0.6790161;1.292038 +8812;12;0.2396254;0.00871274;-0.02900018;0.97039306 +8814;0;-0.15278625;4.703491;8.602905 +8814;1;-0.30132034;4.5673575;8.676668 +8815;3;0.059661865;0.67840576;1.2932587 +8816;4;-6.8573;1.05896;-68.24646 +8816;6;0.23565562;-0.50026506;0.017757976 +8817;7;0.97419685;0.2048688;-0.09470693;0.0;-0.22516185;0.85320395;-0.4704735;0.0;-0.015581015 +8817;0;-0.17666626;4.693985;8.593384 +8817;3;0.055389404;0.6777954;1.2957001 +8817;12;0.23986739;0.008697643;-0.028959865;0.97033465 +8819;0;-0.11933899;4.7082367;8.593384 +8819;1;-0.30095708;4.5718055;8.674337 +8819;3;0.04928589;0.67533875;1.2975311 +8821;0;-0.11933899;4.712982;8.598129 +8822;12;0.24008399;0.009513517;-0.025558807;0.970369 +8822;3;0.044387817;0.67289734;1.2987518 +8825;0;-0.095443726;4.727234;8.583832 +8825;1;-0.30025995;4.5758266;8.672241 +8826;3;0.039505005;0.6698456;1.2999725 +8826;4;-5.9570312;1.3595581;-68.24646 +8826;6;0.1945716;-0.5033649;0.011118554 +8826;7;0.9821069;0.16936441;-0.082351245;0.0;-0.18807226;0.85943544;-0.47539407;0.0;-0.009739256 +8827;0;-0.09068298;4.6749725;8.559982 +8827;12;0.24027255;0.010316852;-0.022150552;0.9703979 +8827;3;0.03340149;0.6655731;1.2999725 +8828;0;-0.095443726;4.6797333;8.555222 +8829;1;-0.29920906;4.5793824;8.670401 +8829;2;-0.11885466;-0.0759964;0.05212307; +8829;3;0.026062012;0.6606903;1.2999725 +8831;0;-0.08111572;4.703491;8.536133 +8831;12;0.24043371;0.0111044245;-0.018741136;0.9704211 +8832;3;0.023010254;0.6570282;1.3018036 +8833;0;-0.07156372;4.6749725;8.536133 +8834;1;-0.2977237;4.5824566;8.668827 +8834;3;0.016296387;0.6527405;1.302414 +8836;9;2AEC2AEBC4E1;-64;-2147483648 +8837;4;-6.4071655;1.5090942;-67.64679 +8837;6;0.20353702;-0.50103676;0.008383427 +8837;7;0.98013735;0.17728923;-0.08887866;0.0;-0.19818382;0.85898006;-0.47209796;0.0;-0.0073528923 +8837;0;-0.038131714;4.6179657;8.531357 +8837;12;0.24058105;0.011033404;-0.018666027;0.9703869 +8837;3;0.012634277;0.6509094;1.302414 +8838;0;-0.038131714;4.6322327;8.550446 +8838;1;-0.29583988;4.585031;8.66753 +8838;3;0.0071258545;0.6472473;1.302414 +8840;0;-0.023803711;4.627472;8.550446 +8841;12;0.24068302;0.0117793465;-0.015258383;0.9704123 +8841;3;0.0028533936;0.64419556;1.3030243 +8843;0;7.6293945E-5;4.660721;8.540909 +8843;1;-0.29363257;4.587228;8.666442 +8843;3;4.119873E-4;0.6423645;1.3011932 +8846;4;-7.006836;1.2084961;-67.64679 +8846;6;0.20638143;-0.4995311;-8.932766E-6 +8846;7;0.97877795;0.1798798;-0.09816803;0.0;-0.20492367;0.8591792;-0.46884692;0.0;7.841248E-6 +8846;0;-0.009475708;4.622711;8.550446 +8847;3;-0.003250122;0.6411438;1.3030243 +8847;12;0.24076095;0.0125142615;-0.011831016;0.97043175 +8847;0;0.0048675537;4.603714;8.559982 +8848;1;-0.29127264;4.589078;8.665543 +8848;2;-0.20647031;-0.005666256;0.09698868; +8848;3;-0.008132935;0.6399231;1.302414 +8848;5;999.57654 +8850;0;0.028747559;4.636963;8.550446 +8850;12;0.24081849;0.013229527;-0.008450043;0.9704432 +8851;3;-0.009353638;0.6423645;1.3018036 +8854;0;0.03831482;4.6322327;8.579071 +8854;3;-0.009353638;0.6423645;1.302414 +8854;1;-0.28880262;4.5906453;8.664796 +8855;4;-5.0567627;1.2084961;-67.196655 +8855;6;0.14315593;-0.4950871;-0.0044660503 +8855;7;0.989458;0.125537;-0.07220215;0.0;-0.14476617;0.8709262;-0.46960637;0.0;0.003929787 +8855;0;0.04786682;4.6179657;8.598129 +8855;3;-0.011199951;0.6435852;1.3011932 +8856;12;0.24088033;0.013200682;-0.008015929;0.970432 +8857;0;0.0048675537;4.61322;8.579071 +8857;1;-0.2864171;4.592098;8.664104 +8858;3;-0.014846802;0.6448059;1.2999725 +8859;0;0.057418823;4.6322327;8.569519 +8860;12;0.24091345;0.013927578;-0.0045910985;0.97043586 +8860;3;-0.011795044;0.64785767;1.3005829 +8862;0;0.066970825;4.61322;8.626755 +8862;1;-0.28416038;4.5933986;8.663489 +8862;3;-0.012420654;0.64907837;1.3011932 +8864;4;-5.2078247;1.6586304;-65.54718 +8864;6;0.14406607;-0.49105278;-0.0077629974 +8865;7;0.9890851;0.12660378;-0.07538071;0.0;-0.14718664;0.8727015;-0.46554086;0.0;0.0068456293 +8865;0;0.04786682;4.6322327;8.631531 +8865;3;-0.010574341;0.64907837;1.3011932 +8866;12;0.24093466;0.014656646;-0.0011890088;0.97042996 +8867;0;0.03831482;4.65123;8.588608 +8867;1;-0.28201634;4.594774;8.66283 +8867;3;-0.009353638;0.65335083;1.3005829 +8868;2;-0.27035677;0.012639046;0.049165726; +8869;0;0.04786682;4.65123;8.626755 +8870;12;0.2409593;0.015392539;0.0022165298;0.97041065 +8870;3;-0.008132935;0.6539612;1.2999725 +8872;0;0.071746826;4.627472;8.6410675 +8872;1;-0.28005153;4.596232;8.662121 +8872;3;-0.004470825;0.6570282;1.2993622 +8874;4;-4.9072266;1.9592285;-65.84625 +8874;6;0.1320442;-0.49164456;-0.008302814 +8874;7;0.9907446;0.116066605;-0.070382245;0.0;-0.13554168;0.8738836;-0.46685752;0.0;0.007319326 +8877;12;0.24101865;0.0153575875;0.0025150855;0.97039574 +8878;1;-0.2782326;4.5979;8.661294 +8878;0;0.071746826;4.6417236;8.612442 +8878;3;-0.003250122;0.658844;1.2999725 +8878;0;0.10041809;4.670227;8.6410675 +8878;3;-0.002029419;0.6606903;1.3005829 +8879;0;0.10517883;4.660721;8.664902 +8879;12;0.24105665;0.016110854;0.0059228325;0.97035927 +8880;3;0.0016326904;0.66252136;1.302414 +8882;1;-0.276459;4.5997014;8.660394 +8882;0;0.1481781;4.670227;8.650604 +8882;3;0.0046844482;0.6661835;1.3030243 +8884;4;-6.1065674;1.8096924;-66.14685 +8884;6;0.14930744;-0.49497354;-0.017127546 +8884;7;0.98751915;0.13090013;-0.08758487;0.0;-0.15677631;0.87019086;-0.46710703;0.0;0.015071182 +8884;0;0.10041809;4.6749725;8.626755 +8884;3;0.006515503;0.6686249;1.3048553 +8885;12;0.24110089;0.016870108;0.009337084;0.97030854 +8886;0;0.124298096;4.6892242;8.612442 +8886;1;-0.2748782;4.6017723;8.659345 +8887;2;-0.31799775;-0.014054775;0.002357483; +8887;3;0.006515503;0.672287;1.3079224 +8887;5;999.57654 +8888;0;0.1290741;4.6892242;8.607666 +8889;12;0.24115717;0.017641332;0.0127600655;0.9702418 +8889;3;0.008972168;0.6735077;1.3085175 +8891;0;0.1816101;4.6987305;8.6410675 +8891;1;-0.27335808;4.6039376;8.658241 +8891;3;0.008346558;0.67533875;1.3115845 +8893;4;-4.6066284;2.4093628;-66.29639 +8893;6;0.09470299;-0.4979528;-0.021013997 +8893;7;0.99435025;0.08307815;-0.066073544;0.0;-0.10453178;0.8746254;-0.47339576;0.0;0.018460745 +8894;0;0.1720581;4.684494;8.612442 +8894;3;0.008346558;0.6747284;1.3121796 +8894;12;0.24125603;0.017631596;0.013059935;0.9702135 +8895;0;0.1720581;4.693985;8.612442 +8896;1;-0.2718071;4.6061196;8.657129 +8896;3;0.0071258545;0.67533875;1.3140259 +8899;12;0.24131557;0.01841218;0.016506424;0.97013164 +8899;0;0.18640137;4.712982;8.617218 +8899;3;0.006515503;0.6759491;1.3164673 +8900;0;0.22460938;4.6987305;8.612442 +8901;1;-0.27014765;4.608249;8.656048 +8901;3;0.0052948;0.6765747;1.317688 +8903;4;-5.0567627;1.2084961;-66.44745 +8903;6;0.10056529;-0.4992964;-0.026073728 +8903;7;0.9933561;0.088139504;-0.07399305;0.0;-0.11278157;0.873484;-0.47360945;0.0;0.022888046 +8903;0;0.20072937;4.703491;8.617218 +8903;3;0.0028533936;0.6765747;1.319519 +8904;12;0.24136844;0.0191898;0.019961458;0.9700385 +8906;0;0.21028137;4.712982;8.6410675 +8906;1;-0.26843882;4.610248;8.655037 +8906;2;-0.40009016;-0.045920372;0.013185501; +8907;3;-1.9836426E-4;0.6759491;1.3201294 +8908;0;0.21505737;4.6749725;8.626755 +8908;12;0.24141091;0.019967364;0.02342466;0.96993476 +8908;3;-0.0014190674;0.67718506;1.3189087 +8910;0;0.22940063;4.693985;8.6410675 +8910;1;-0.2666668;4.6120167;8.654149 +8911;3;-0.003250122;0.6777954;1.3189087 +8912;4;-3.7063599;0.45928955;-66.44745 +8912;6;0.060322776;-0.49747378;-0.026541485 +8912;7;0.9970661;0.052978963;-0.055248972;0.0;-0.072906226;0.8771925;-0.4745714;0.0;0.023321677 +8913;0;0.21505737;4.6749725;8.660141 +8913;3;-0.0069122314;0.6777954;1.319519 +8913;12;0.24148655;0.019969618;0.023813313;0.96990645 +8915;0;0.24848938;4.6417236;8.6839905 +8915;1;-0.26493603;4.6135335;8.653394 +8915;3;-0.009353638;0.67840576;1.319519 +8917;0;0.25805664;4.684494;8.693527 +8918;12;0.2415006;0.02074602;0.027279375;0.96979535 +8918;3;-0.011795044;0.67840576;1.319519 +8920;0;0.26283264;4.6654816;8.698288 +8920;1;-0.26317704;4.6148143;8.652764 +8920;3;-0.015472412;0.67962646;1.3189087 +8922;4;-3.5568237;2.708435;-68.24646 +8922;6;0.04306487;-0.49212676;-0.030207403 +8922;7;0.99800277;0.037942633;-0.050507452;0.0;-0.057289563;0.8805129;-0.47054768;0.0;0.026618639 +8922;0;0.29148865;4.6749725;8.750748 +8922;3;-0.019134521;0.6820679;1.3189087 +8923;12;0.24149811;0.02152159;0.030746775;0.9696753 +8925;0;0.26760864;4.6559753;8.779373 +8925;1;-0.26150256;4.615756;8.652313 +8925;2;-0.45741054;-0.013451099;-0.06030941; +8925;3;-0.02279663;0.6838989;1.3170776 +8926;5;999.57654 +8927;0;0.27716064;4.636963;8.793686 +8928;12;0.24147367;0.022302752;0.034213975;0.96954757 +8928;3;-0.025238037;0.68634033;1.3164673 +8929;0;0.29148865;4.636963;8.798447 +8929;1;-0.26004192;4.616357;8.652037 +8930;3;-0.03012085;0.6893921;1.3158569 +8932;4;-4.307556;1.9592285;-68.696594 +8932;6;0.06000814;-0.4848035;-0.033117447 +8932;7;0.9967273;0.053061333;-0.060985554;0.0;-0.07534252;0.883174;-0.46295482;0.0;0.02929585 +8935;12;0.24149163;0.022244865;0.0343008;0.9695414 +8935;0;0.26760864;4.6559753;8.779373 +8935;1;-0.25882846;4.6166873;8.651896 +8935;3;-0.031341553;0.6906128;1.3152466 +8935;0;0.27236938;4.65123;8.81752 +8935;3;-0.033172607;0.69244385;1.3134003 +8936;0;0.27716064;4.6179657;8.78891 +8936;12;0.24143049;0.023047755;0.03776578;0.96940905 +8937;3;-0.03439331;0.69306946;1.3128052 +8939;0;0.26283264;4.5657043;8.807983 +8939;1;-0.25778168;4.616814;8.65186 +8939;3;-0.036834717;0.69244385;1.3115845 +8943;4;-4.307556;1.9592285;-68.696594 +8943;6;0.067485034;-0.47804552;-0.029831424 +8943;7;0.9963546;0.059874203;-0.060767874;0.0;-0.08109434;0.8858747;-0.45678195;0.0;0.026483266 +8943;12;0.24135524;0.023858065;0.041226253;0.9692672 +8944;0;0.27716064;4.6084595;8.879532 +8944;3;-0.03929138;0.6918335;1.3103638 +8945;1;-0.25673532;4.6167235;8.651939 +8945;0;0.30104065;4.603714;8.884293 +8945;2;-0.48298058;0.03500414;-0.18707085; +8946;3;-0.041122437;0.69122314;1.3091431 +8947;12;0.24126732;0.024666205;0.044681445;0.96911573 +8947;0;0.28193665;4.6322327;8.893829 +8948;3;-0.041732788;0.6906128;1.3067017 +8948;0;0.3058319;4.6322327;8.927231 +8949;1;-0.25570315;4.616497;8.652091 +8949;3;-0.045394897;0.69000244;1.3054657 +8952;4;-2.357483;3.1585693;-66.44745 +8952;6;0.0024259118;-0.47840387;-0.034244925 +8952;7;0.99937254;0.0021535547;-0.035354275;0.0;-0.01818645;0.8877283;-0.46000853;0.0;0.030394336 +8952;0;0.28671265;4.6417236;8.951065 +8956;3;-0.04600525;0.68756104;1.3036346 +8956;12;0.24122745;0.024763517;0.04530529;0.9690943 +8956;1;-0.2546565;4.6160865;8.652341 +8956;12;0.24111933;0.025566101;0.048743516;0.96893346 +8956;0;0.3106079;4.660721;8.927231 +8956;3;-0.04600525;0.68573;1.3005829 +8956;0;0.2962799;4.693985;8.984451 +8956;3;-0.0466156;0.6845093;1.2975311 +8957;9;2AEC2AEBC4E1;-59;-2147483648 +8958;1;-0.2535812;4.615669;8.652595 +8958;0;0.3106079;4.7319946;9.013062 +8958;3;-0.047225952;0.6820679;1.2950745 +8960;4;-2.357483;3.1585693;-66.44745 +8960;6;0.0020045403;-0.48321474;-0.034448344 +8960;7;0.9993727;0.001775031;-0.035372272;0.0;-0.018005824;0.8855041;-0.4642827;0.0;0.030498177 +8960;0;0.32492065;4.7747498;9.036911 +8961;3;-0.04600525;0.67840576;1.292633 +8961;12;0.24100888;0.026362475;0.05216648;0.9687613 +8963;1;-0.2523803;4.6152525;8.652853 +8963;2;-0.50966585;-0.037112236;-0.34472942; +8963;0;0.35359192;4.7652435;9.089371 +8965;3;-0.047225952;0.6777954;1.2895966 +8965;5;999.57654 +8966;0;0.4109192;4.7985077;9.132294 +8967;12;0.24089438;0.02714621;0.055574875;0.9685786 +8967;3;-0.04966736;0.6777954;1.288971 +8968;0;0.4156952;4.8222656;9.19429 +8968;3;-0.05027771;0.6790161;1.2853088 +8968;1;-0.25109333;4.614734;8.653166 +8971;4;-4.006958;1.2084961;-68.39752 +8971;6;0.027791282;-0.48262322;-0.045181554 +8971;7;0.9980112;0.024613807;-0.058031972;0.0;-0.048713073;0.88543844;-0.4621966;0.0;0.040007327 +8971;0;0.4300232;4.86026;9.237228 +8972;3;-0.055160522;0.6820679;1.2840881 +8972;12;0.24085982;0.027001964;0.05529381;0.9686073 +8973;1;-0.25001818;4.6140566;8.653559 +8974;0;0.4204712;4.907776;9.261063 +8974;3;-0.060668945;0.68573;1.2828674 +8975;0;0.4109192;4.907776;9.323074 +8976;12;0.24072911;0.027789477;0.058681224;0.96841824 +8976;3;-0.06555176;0.6918335;1.280426 +8981;1;-0.2493782;4.612929;8.654179 +8981;12;0.2405684;0.028596926;0.062066037;0.96822363 +8982;0;0.4204712;4.94104;9.370773 +8982;3;-0.07350159;0.6985626;1.2792053 +8982;4;-4.006958;1.2084961;-68.39752 +8982;6;0.02838803;-0.4848194;-0.04484041 +8982;7;0.9979993;0.025113193;-0.058022458;0.0;-0.04923808;0.8844026;-0.46412018;0.0;0.039659668 +8982;0;0.38703918;4.907776;9.404144 +8982;3;-0.08265686;0.7040558;1.278595 +8982;0;0.38703918;4.8887787;9.4375305 +8982;3;-0.09365845;0.7089386;1.2773743 +8982;1;-0.24937353;4.6111026;8.655152 +8983;2;-0.6090543;-0.23009872;-0.6589842; +8985;0;0.35359192;4.950531;9.423233 +8985;12;0.2403654;0.029440064;0.06547294;0.9680244 +8985;3;-0.10281372;0.71383667;1.2749329 +8987;0;0.31536865;4.9647827;9.413681 +8987;1;-0.24991834;4.608527;8.656508 +8987;3;-0.11442566;0.7162781;1.2737122 +8990;4;-2.0568848;0.45928955;-66.14685 +8990;6;-0.0050861035;-0.4850958;-0.033488575 +8990;7;0.9995058;-0.004499302;-0.031111604;0.0;-0.01052914;0.8846188;-0.46619594;0.0;0.029619468 +8990;0;0.25805664;4.9885406;9.423233 +8990;3;-0.1272583;0.71383667;1.2712555 +8990;12;0.24020097;0.029498057;0.06563448;0.9680524 +8991;0;0.19593811;4.974289;9.456619 +8991;1;-0.25087333;4.604989;8.658363 +8992;3;-0.1407013;0.70832825;1.2675934 +8994;0;0.1577301;4.9362793;9.4852295 +8994;12;0.23989287;0.030382445;0.06903347;0.9678651 +8994;3;-0.15534973;0.70222473;1.2608795 +8996;0;0.1338501;4.879257;9.575851 +8996;1;-0.25172862;4.6002274;8.66087 +8997;3;-0.17367554;0.69488525;1.2559967 +8998;4;-2.0568848;0.45928955;-66.14685 +8999;6;0.03716741;-0.4712091;-0.01397697 +8999;7;0.99897605;0.03310929;-0.030833997;0.0;-0.043495685;0.89040476;-0.45308682;0.0;0.012453355 +8999;0;0.071746826;4.841263;9.637848 +8999;3;-0.19322205;0.68756104;1.2486572 +9000;12;0.23951411;0.031241922;0.072386265;0.9676865 +9001;0;-0.023803711;4.8460083;9.628311 +9001;1;-0.25245765;4.5938735;8.664219 +9002;2;-0.3848835;-0.29164982;-0.85973644; +9002;3;-0.21276855;0.67718506;1.2431641 +9002;5;999.5786 +9003;0;-0.09068298;4.841263;9.671219 +9004;12;0.23904999;0.032078687;0.075702794;0.9675201 +9004;3;-0.23231506;0.66496277;1.2370453 +9006;0;-0.17666626;4.8127594;9.652161 +9006;1;-0.25287032;4.585862;8.66845 +9007;3;-0.25064087;0.6496887;1.2297211 +9008;4;-2.0568848;3.1585693;-67.64679 +9008;6;0.099543616;-0.46247604;0.018301241 +9008;7;0.9956944;0.088939555;-0.026122551;0.0;-0.091238156;0.89052016;-0.44570106;0.0;-0.016377792 +9009;0;-0.23876953;4.760498;9.695084 +9009;3;-0.26837158;0.6301422;1.2223969 +9009;12;0.2385875;0.032064267;0.07570896;0.96763426 +9011;0;-0.29130554;4.73674;9.685532 +9011;1;-0.2525278;4.5762105;8.67356 +9011;3;-0.2866974;0.6081543;1.2169037 +9013;0;-0.3295288;4.6559753;9.728455 +9013;12;0.2379438;0.03279906;0.07893606;0.9675103 +9013;3;-0.30317688;0.58309937;1.2113953 +9015;0;-0.40119934;4.6084595;9.747543 +9015;1;-0.25081033;4.5649343;8.679549 +9016;3;-0.31784058;0.556839;1.2052917 +9018;4;-0.40740967;2.2598267;-68.096924 +9018;6;0.1027801;-0.44130987;0.041135803 +9018;7;0.9956835;0.09276952;-0.0028783684;0.0;-0.08504001;0.8994214;-0.42873007;0.0;-0.037184216 +9018;0;-0.44418335;4.537201;9.737991 +9019;3;-0.33006287;0.529953;1.2028351 +9019;12;0.23721653;0.033437114;0.08211059;0.9674028 +9019;9;52ADB5BC186F;-69;-2147483648 +9021;0;-0.46328735;4.522949;9.75708 +9022;1;-0.24734426;4.552324;8.68627 +9022;2;0.10853815;-0.09525776;-1.0412569; +9022;3;-0.3416748;0.50491333;1.1979523 +9022;0;-0.45851135;4.53244;9.776154 +9023;12;0.23642693;0.03395606;0.08523291;0.967308 +9023;3;-0.3453369;0.4786377;1.1942902 +9025;0;-0.46806335;4.5086975;9.819077 +9025;1;-0.24201247;4.5388384;8.693474 +9026;3;-0.34655762;0.45542908;1.1924591 +9028;4;0.19226074;4.058838;-66.89758 +9028;6;0.094587885;-0.43002933;0.04763272 +9028;7;0.9962756;0.08584785;0.008071849;0.0;-0.07457806;0.9048904;-0.41906023;0.0;-0.04327956 +9028;0;-0.43940735;4.503952;9.799988 +9028;3;-0.34655762;0.4340515;1.1942902 +9028;12;0.23568007;0.033707537;0.08567124;0.9674602 +9030;0;-0.44895935;4.465927;9.828613 +9030;1;-0.23486176;4.5251517;8.700802 +9030;3;-0.3416748;0.41633606;1.1930695 +9032;0;-0.43940735;4.470688;9.80954 +9032;12;0.23485179;0.03400027;0.08871345;0.9673772 +9033;3;-0.32884216;0.40289307;1.1930695 +9036;0;-0.42507935;4.4516907;9.838165 +9036;1;-0.22634193;4.511868;8.707924 +9036;3;-0.31661987;0.3912964;1.1918488 +9037;4;-1.4572144;2.2598267;-66.14685 +9037;6;0.14630894;-0.42457414;0.043180317 +9037;7;0.9909861;0.13284364;-0.01729297;0.0;-0.12805973;0.9014787;-0.41344494;0.0;-0.039334293 +9037;0;-0.40119934;4.432678;9.833389 +9037;3;-0.30134583;0.38456726;1.1900177 +9038;12;0.23405412;0.03421237;0.091733776;0.96728134 +9039;0;-0.3534088;4.4611816;9.828613 +9039;1;-0.21699427;4.499616;8.7144985 +9040;2;0.26501995;0.05837822;-1.1203346; +9040;3;-0.28424072;0.3815155;1.188797 +9040;5;999.5786 +9042;0;-0.3152008;4.456436;9.833389 +9042;12;0.23332155;0.03437692;0.09473497;0.9671632 +9042;3;-0.2634735;0.3827362;1.188797 +9044;0;-0.25309753;4.4849396;9.819077 +9044;1;-0.20742413;4.488807;8.720304 +9044;3;-0.2402649;0.38945007;1.1869507 +9047;9;2AEC2AEBC4E1;-65;-2147483648 +9048;4;-0.5569458;3.3096313;-67.04712 +9048;6;0.073928446;-0.42833397;0.025770396 +9048;7;0.9977279;0.067188434;-0.004971301;0.0;-0.06316313;0.9071743;-0.41598698;0.0;-0.02343968 +9048;0;-0.21009827;4.4897003;9.828613 +9048;12;0.23276483;0.033806197;0.09473623;0.96731734 +9048;3;-0.21644592;0.3998413;1.1845093 +9049;0;-0.20054626;4.503952;9.819077 +9049;1;-0.19842352;4.479878;8.725103 +9049;3;-0.1926117;0.4132843;1.1808472 +9052;0;-0.18621826;4.5181885;9.785706 +9052;3;-0.16696167;0.4328308;1.1784058 +9052;12;0.23221813;0.034002203;0.09772294;0.9671447 +9054;1;-0.19068927;4.4729376;8.728835 +9054;0;-0.11456299;4.537201;9.790451 +9054;3;-0.14251709;0.4560547;1.1765747 +9056;4;0.19226074;2.558899;-67.64679 +9056;6;0.019477796;-0.43394092;0.011700969 +9056;7;0.9998377;0.017671395;0.0035101278;0.0;-0.014556606;0.9071437;-0.42056906;0.0;-0.010616232 +9057;0;-0.11933899;4.546707;9.766617 +9057;3;-0.11869812;0.4792633;1.1741333 +9059;12;0.23177457;0.034276523;0.100726396;0.9669333 +9059;1;-0.18494013;4.4680986;8.731438 +9059;2;0.05240807;-0.006439209;-1.0849037; +9060;0;-0.07156372;4.556198;9.742767 +9060;3;-0.09487915;0.50491333;1.1704712 +9061;0;-0.038131714;4.5799713;9.714157 +9061;12;0.2314371;0.034663312;0.1037215;0.96668357 +9062;3;-0.07043457;0.53300476;1.1686249 +9063;0;-0.0046844482;4.603714;9.690308 +9063;1;-0.18140022;4.465303;8.732942 +9064;3;-0.04966736;0.56233215;1.1655884 +9066;4;-0.25787354;1.6586304;-67.796326 +9066;6;0.009500854;-0.44351718;4.8341582E-4 +9066;7;0.9999567;0.008581498;-0.0035935403;0.0;-0.009293276;0.90320724;-0.42910418;0.0;-4.3664436E-4 +9067;0;-0.023803711;4.61322;9.666458 +9067;3;-0.031951904;0.5898285;1.1625214 +9067;12;0.23129429;0.034457427;0.10372405;0.96672493 +9068;0;-0.023803711;4.646469;9.561539 +9068;1;-0.18038529;4.4643226;8.733464 +9068;3;-0.014846802;0.61608887;1.161911 +9071;0;-0.023803711;4.6797333;9.528137 +9071;12;0.23114297;0.0351239;0.10674477;0.96640825 +9071;3;-8.087158E-4;0.6411438;1.1606903 +9074;0;-0.028564453;4.703491;9.4756775 +9074;1;-0.18163162;4.464837;8.733175 +9074;3;0.012634277;0.66252136;1.1582489 +9075;4;-0.5569458;3.9093018;-66.596985 +9075;6;0.022879867;-0.46074176;0.0030144935 +9075;7;0.9997644;0.020492235;-0.0071580447;0.0;-0.02153784;0.89548856;-0.44456324;0.0;-0.002700147 +9076;0;0.019195557;4.727234;9.399368 +9076;3;0.020568848;0.6802368;1.1564178 +9076;12;0.23105691;0.03592124;0.109784536;0.9660589 +9078;0;0.0048675537;4.760498;9.389847 +9078;1;-0.18469205;4.466488;8.732266 +9078;2;-0.11593203;-0.16146803;-0.8386297; +9078;3;0.026672363;0.69429016;1.1533661 +9079;5;999.5786 +9080;0;-0.019012451;4.73674;9.304001 +9081;12;0.23101698;0.036826424;0.1128355;0.9656828 +9081;3;0.02911377;0.70466614;1.1509247 +9082;0;7.6293945E-5;4.7557526;9.261063 +9083;1;-0.18904634;4.468685;8.73105 +9083;3;0.027893066;0.71199036;1.1472626 +9085;4;-0.10681152;3.1585693;-68.39752 +9085;6;0.0031199378;-0.47440603;-8.238141E-6 +9085;7;0.99999505;0.0027753804;-0.001433455;0.0;-0.003123696;0.8895598;-0.45680785;0.0;7.328356E-6 +9085;0;-0.023803711;4.750992;9.246765 +9086;3;0.023010254;0.71443176;1.1448059 +9086;12;0.23110205;0.037056744;0.112796694;0.9656581 +9087;0;-0.0046844482;4.7652435;9.213379 +9088;1;-0.19408883;4.470835;8.729837 +9088;3;0.014465332;0.71261597;1.1423645 +9090;0;7.6293945E-5;4.8079987;9.13707 +9090;3;0.0034637451;0.70588684;1.136261 +9090;12;0.23107414;0.03806684;0.11584285;0.9652648 +9092;0;0.0048675537;4.8127594;9.11322 +9092;1;-0.19906875;4.4724274;8.72891 +9093;3;-0.007537842;0.699173;1.1301575 +9094;4;1.0925293;1.9592285;-65.84625 +9095;6;-0.03470424;-0.48587987;-5.3412E-4 +9095;7;0.9994064;-0.030681564;0.015669359;0.0;0.03444799;0.883732;-0.46672386;0.0;4.723033E-4 +9095;0;-0.019012451;4.7747498;9.098923 +9095;3;-0.02279663;0.6869507;1.1270905 +9095;12;0.23100813;0.03906693;0.118871525;0.9648724 +9097;0;-0.019012451;4.7557526;9.094147 +9098;1;-0.2036138;4.4729915;8.728517 +9098;2;-0.13932197;-0.26211262;-0.47193623; +9098;3;-0.037460327;0.672287;1.1185455 +9099;0;-0.047683716;4.7462463;9.051224 +9100;12;0.2308862;0.040029366;0.121867284;0.9644882 +9100;3;-0.05393982;0.65579224;1.1136627 +9105;0;-0.033355713;4.693985;9.065521 +9105;1;-0.20723689;4.472264;8.728804 +9105;3;-0.067993164;0.6387024;1.1057129 +9105;4;0.642395;2.859497;-68.39752 +9105;6;-0.011495143;-0.47777086;0.0036793873 +9105;7;0.9999077;-0.0102077145;0.0089644585;0.0;0.013186479;0.8879633;-0.45972502;0.0;-0.0032673697 +9105;0;-0.009475708;4.717743;9.0607605 +9105;3;-0.08570862;0.6215973;1.097168 +9106;12;0.23081225;0.040189523;0.121787325;0.9645094 +9106;0;-0.019012451;4.684494;9.094147 +9107;1;-0.20972838;4.470208;8.729797 +9107;3;-0.09976196;0.6038666;1.0886078 +9109;0;-0.019012451;4.6654816;9.117996 +9109;12;0.2305578;0.041001316;0.124690644;0.96416515 +9109;3;-0.111968994;0.5861664;1.0800629 +9111;1;-0.21113244;4.4668612;8.731477 +9112;0;-0.009475708;4.6322327;9.11322 +9112;3;-0.12541199;0.5708771;1.070282 +9114;4;-0.40740967;2.859497;-68.39752 +9114;6;0.014265859;-0.4702638;0.0010397757 +9114;7;0.99990445;0.012716851;-0.0054242746;0.0;-0.01379427;0.8913581;-0.45308998;0.0;-9.2690653E-4 +9114;0;0.0048675537;4.57045;9.11322 +9114;3;-0.13519287;0.55867004;1.0623474 +9114;12;0.23023969;0.04173045;0.12753712;0.9638374 +9116;0;0.023986816;4.513443;9.179993 +9117;1;-0.21164379;4.462356;8.7337675 +9117;2;-0.14359027;-0.15693426;-0.38191223; +9117;3;-0.1431427;0.5470581;1.0538025 +9118;5;999.5786 +9118;0;0.019195557;4.4421844;9.222916 +9119;12;0.22986321;0.04238864;0.1303273;0.96352535 +9119;3;-0.14802551;0.5385132;1.046463 +9121;0;-0.009475708;4.4231873;9.232452 +9121;1;-0.21162449;4.457045;8.73648 +9121;3;-0.15107727;0.52934265;1.0403595 +9124;4;1.9927979;3.4591675;-67.64679 +9124;6;-0.0593882;-0.44678092;0.0010263475 +9124;7;0.9982102;-0.05352733;0.026668984;0.0;0.059795924;0.90025264;-0.43124184;0.0;-9.256038E-4 +9125;0;-0.042907715;4.3329163;9.232452 +9125;3;-0.15168762;0.52568054;1.0336304 +9126;12;0.22956012;0.042343948;0.13032793;0.9635994 +9126;0;-0.06201172;4.2711487;9.251541 +9127;1;-0.21135654;4.4513025;8.739413 +9127;3;-0.14802551;0.5226288;1.0275269 +9128;0;-0.042907715;4.2378845;9.232452 +9128;3;-0.14251709;0.5207977;1.0262909 +9129;12;0.229128;0.042932272;0.13304721;0.9633045 +9130;0;-0.047683716;4.1951294;9.261063 +9131;1;-0.21108712;4.4457498;8.742247 +9131;3;-0.13519287;0.5183563;1.0226288 +9133;4;1.3931274;2.4093628;-67.796326 +9133;6;-0.034589816;-0.42532915;0.005148793 +9133;7;0.99931514;-0.031501688;0.019415127;0.0;0.036705684;0.9103582;-0.41219032;0.0;-0.0046900306 +9133;0;-0.09068298;4.1143646;9.270599 +9134;3;-0.12541199;0.5201874;1.0214081 +9134;12;0.22870657;0.04351046;0.1357211;0.96300566 +9135;0;-0.10978699;4.0668488;9.304001 +9135;1;-0.21092567;4.440667;8.744833 +9136;3;-0.111968994;0.5214081;1.020813 +9136;2;-0.10804154;0.21390247;-0.5221529; +9138;0;-0.12890625;4.019348;9.318314 +9138;12;0.22831194;0.04409201;0.13837922;0.9626945 +9138;3;-0.09793091;0.5238495;1.017746 +9140;0;-0.171875;4.009842;9.284912 +9141;1;-0.21105745;4.4365582;8.746915 +9141;3;-0.080215454;0.5275116;1.0165253 +9142;4;2.7435303;3.9093018;-66.596985 +9142;6;-0.050298937;-0.40760985;0.018509101 +9142;7;0.99819523;-0.046158515;0.038412116;0.0;0.057596717;0.9169097;-0.3949164;0.0;-0.016991697 +9143;0;-0.16711426;3.952835;9.256302 +9143;3;-0.060668945;0.53240967;1.0146942 +9143;12;0.22808152;0.044068515;0.13841027;0.9627458 +9145;0;-0.171875;3.9100647;9.232452 +9145;1;-0.21162668;4.433819;8.748289 +9145;3;-0.041732788;0.53912354;1.0134735 +9147;0;-0.21487427;3.862564;9.227692 +9148;12;0.22781183;0.044705883;0.14106782;0.9623945 +9148;3;-0.020355225;0.543396;1.0104218 +9150;0;-0.19577026;3.8150635;9.227692 +9150;1;-0.21280248;4.4326515;8.748853 +9150;3;0.0016326904;0.5482788;1.00737 +9152;4;3.4927368;3.9093018;-67.49725 +9152;6;-0.06991809;-0.3919561;0.021212338 +9152;7;0.9967662;-0.06456312;0.047839653;0.0;0.07792806;0.9219056;-0.379496;0.0;-0.0196022 +9153;12;0.2276249;0.04537984;0.14370096;0.9620175 +9153;0;-0.21009827;3.796051;9.199066 +9153;3;0.0211792;0.55378723;1.0037079 +9154;0;-0.23399353;3.7580414;9.13707 +9156;1;-0.21454845;4.433222;8.748522 +9156;3;0.042556763;0.5592804;1.0018616 +9156;5;999.58124 +9156;9;2AEC2AEBC4E1;-58;-2147483648 +9160;2;0.027490541;0.57719994;-0.5032749; +9160;1;-0.21684816;4.4355354;8.747292 +9161;12;0.22752853;0.0460966;0.14631836;0.96161157 +9161;0;-0.25787354;3.729538;9.108459 +9161;3;0.063934326;0.56233215;1.0000305 +9161;0;-0.26742554;3.7247925;9.036911 +9161;3;0.08592224;0.5641632;0.9963684 +9162;4;2.5924683;3.1585693;-67.64679 +9162;6;-0.020562217;-0.390804;0.029583948 +9162;7;0.99911946;-0.019010551;0.037402205;0.0;0.03181722;0.9244077;-0.38007656;0.0;-0.027349422 +9162;0;-0.30085754;3.7105408;8.984451 +9162;3;0.10670471;0.56599426;0.99453735 +9163;12;0.22764869;0.046188574;0.14613;0.9616074 +9164;0;-0.3104248;3.6915283;8.970154 +9164;3;0.12686157;0.5678406;0.99209595 +9165;1;-0.21948329;4.4396687;8.745129 +9167;0;-0.3534088;3.6772919;8.903381 +9167;12;0.22774097;0.046977952;0.1487201;0.9611501 +9167;3;0.14701843;0.5678406;0.9902649 +9169;0;-0.34864807;3.6487732;8.831833 +9169;3;0.16534424;0.56599426;0.9878235 +9169;1;-0.22235881;4.4455094;8.742088 +9172;4;1.6921997;2.708435;-67.796326 +9172;6;0.03463831;-0.3915067;0.039455812 +9172;7;0.9991436;0.032011006;0.026217502;0.0;-0.019561755;0.9237807;-0.3824219;0.0;-0.036460932 +9173;12;0.22792338;0.04779203;0.15129572;0.96066463 +9173;0;-0.36775208;3.615509;8.755524 +9173;3;0.1855011;0.56233215;0.9859772 +9173;0;-0.3438568;3.639267;8.6839905 +9174;1;-0.2251412;4.4529896;8.73821 +9174;2;0.1499267;0.8087344;-0.18799019; +9174;3;0.2013855;0.55867004;0.98475647 +9176;0;-0.37728882;3.6345215;8.631531 +9176;12;0.22819605;0.04861452;0.15385376;0.9601522 +9176;3;0.21910095;0.5543976;0.98353577 +9178;0;-0.36775208;3.6345215;8.598129 +9178;1;-0.22763854;4.46198;8.733558 +9179;3;0.234375;0.5495148;0.9829254 +9181;4;1.2435913;3.1585693;-68.39752 +9181;6;0.056866992;-0.39960238;0.04274512 +9181;7;0.9984165;0.05235854;0.020570923;0.0;-0.040186297;0.91972667;-0.39049715;0.0;-0.03936549 +9181;0;-0.39640808;3.6250305;8.497986 +9181;3;0.24720764;0.543396;0.9829254 +9182;12;0.22870807;0.04864114;0.15308857;0.9601514 +9183;0;-0.36775208;3.639267;8.464584 +9183;1;-0.22969998;4.472304;8.728221 +9183;3;0.25942993;0.5372925;0.9841614 +9186;0;-0.35820007;3.639267;8.459839 +9187;12;0.22914003;0.04944829;0.15561944;0.95960015 +9187;3;0.27163696;0.52934265;0.9878235 +9188;0;-0.36775208;3.606018;8.402588 +9188;1;-0.23105413;4.4836645;8.722355 +9189;3;0.28201294;0.52445984;0.9896393 +9193;4;2.7435303;3.3096313;-67.04712 +9193;6;0.0064680427;-0.4050386;0.04373861 +9193;7;0.9991342;0.005944654;0.041177455;0.0;0.010767721;0.919068;-0.39395195;0.0;-0.04018678 +9193;0;-0.32476807;3.6202698;8.345367 +9194;3;0.29240417;0.5201874;0.99209595 +9194;12;0.22963233;0.05023132;0.15814629;0.9590285 +9195;0;-0.2960968;3.6487732;8.221359 +9195;1;-0.23170389;4.4960938;8.715938 +9195;2;0.18278156;0.9010782;0.24597168; +9196;3;0.3015747;0.519577;0.9951477 +9196;12;0.23018621;0.050997306;0.1606911;0.9584321 +9196;5;999.58124 +9196;0;-0.30085754;3.6582794;8.221359 +9197;3;0.31378174;0.5207977;0.9988098 +9197;0;-0.2722168;3.6867828;8.154587 +9198;1;-0.23201965;4.5093737;8.709065 +9198;3;0.32112122;0.52201843;1.0006409 +9200;4;3.0426025;3.3096313;-68.99719 +9200;6;-0.023488453;-0.4243995;0.033369653 +9200;7;0.9988449;-0.021402733;0.04301991;0.0;0.03720762;0.91103476;-0.41064724;0.0;-0.03040366 +9200;0;-0.22921753;3.7437897;8.135513 +9200;3;0.32966614;0.5238495;1.0049286 +9201;12;0.23093309;0.05105049;0.16032808;0.9583103 +9202;0;-0.21966553;3.7437897;8.059219 +9202;1;-0.23214975;4.5235076;8.701729 +9203;3;0.33454895;0.52812195;1.0067444 +9205;0;-0.20054626;3.753296;7.997223 +9205;12;0.23157951;0.05181465;0.16288026;0.9576827 +9206;3;0.33944702;0.5336304;1.0079651 +9208;0;-0.16233826;3.7628021;8.001968 +9208;1;-0.23236193;4.538175;8.694083 +9208;3;0.33944702;0.53912354;1.0091858 +9209;4;2.8930664;2.859497;-68.096924 +9209;6;-0.047819007;-0.43947372;0.02028451 +9210;7;0.99823886;-0.043258544;0.040593226;0.0;0.0564108;0.9039411;-0.42391992;0.0;-0.018355727 +9210;0;-0.147995;3.7628021;7.98291 +9210;3;0.33883667;0.54400635;1.0122528 +9211;12;0.23224927;0.0525949;0.16544552;0.95703816 +9212;0;-0.13366699;3.7865448;7.9113617 +9212;1;-0.2327933;4.5529532;8.686341 +9212;2;0.03372374;0.8515191;0.61082363; +9212;3;0.33395386;0.55133057;1.0128632 +9215;12;0.2329219;0.053397197;0.16802314;0.95638084 +9215;0;-0.11933899;3.8150635;7.8779755 +9215;3;0.32600403;0.55744934;1.0140839 +9217;0;-0.11456299;3.8388062;7.854141 +9217;1;-0.23357135;4.567439;8.678713 +9217;3;0.31806946;0.5641632;1.0165253 +9219;4;3.4927368;2.4093628;-68.696594 +9219;6;-0.07683941;-0.45457497;0.014585282 +9219;7;0.9964516;-0.06896828;0.048243638;0.0;0.08314065;0.8957967;-0.43661872;0.0;-0.01310365 +9219;0;-0.08590698;3.8768158;7.7921295 +9220;3;0.30950928;0.5696564;1.0165253 +9220;12;0.23372254;0.053515863;0.1677466;0.95622754 +9222;1;-0.23464307;4.581367;8.671339 +9222;0;-0.057235718;3.933838;7.7969055 +9222;3;0.29608154;0.5739441;1.0183716 +9224;0;-0.09068298;3.962326;7.7492065 +9224;12;0.23433588;0.05435888;0.17035462;0.95556855 +9225;3;0.28141785;0.57821655;1.0189667 +9226;0;-0.052444458;3.9765778;7.7205963 +9226;1;-0.23596227;4.5943527;8.664431 +9227;3;0.26612854;0.58187866;1.0189667 +9229;4;3.942871;2.859497;-67.196655 +9229;6;-0.10424643;-0.47561425;0.006792694 +9229;7;0.99422467;-0.092508525;0.054401096;0.0;0.10714868;0.88418543;-0.45468152;0.0;-0.0060387375 +9229;0;-0.06678772;3.9813385;7.682434 +9229;3;0.24964905;0.58309937;1.0201874 +9230;12;0.23488934;0.055210777;0.17297468;0.9549129 +9231;0;-0.06678772;4.057358;7.7110596 +9231;1;-0.23744002;4.6061225;8.658139 +9232;2;-0.097217426;0.7108216;0.8678074; +9232;3;0.23254395;0.58432007;1.017746 +9233;5;999.58124 +9234;0;-0.038131714;4.057358;7.6681366 +9234;12;0.23537146;0.05606413;0.17560299;0.9542645 +9234;3;0.21116638;0.583725;1.0165253 +9236;1;-0.23894443;4.6164503;8.6525955 +9236;0;-0.07156372;4.0763702;7.691971 +9237;3;0.18916321;0.583725;1.0134735 +9238;4;3.0426025;1.9592285;-68.24646 +9238;6;-0.07132161;-0.4873027;0.009303423 +9238;7;0.99710405;-0.06296629;0.042645812;0.0;0.0756032;0.8813526;-0.46637064;0.0;-0.008220377 +9239;0;-0.06201172;4.1381226;7.696747 +9239;3;0.168396;0.582489;1.0085907 +9239;12;0.23594223;0.05613874;0.17514183;0.95420396 +9241;0;-0.047683716;4.190384;7.7205963 +9241;1;-0.24048312;4.625075;8.647945 +9241;3;0.14457703;0.5800476;1.004303 +9243;0;-0.028564453;4.2046356;7.691971 +9243;12;0.23624666;0.056963544;0.17776075;0.9535953 +9245;3;0.12135315;0.5788269;1.0000305 +9246;0;-0.047683716;4.190384;7.7587433 +9246;1;-0.24198945;4.6318145;8.644296 +9247;3;0.09877014;0.5776062;0.99453735 +9248;4;3.642273;0.9094238;-67.196655 +9248;6;-0.098308526;-0.49519145;0.0061457264 +9248;7;0.99486613;-0.08636021;0.052756134;0.0;0.101054706;0.87562925;-0.4722935;0.0;-0.0054074535 +9248;0;-0.052444458;4.256897;7.782593 +9248;3;0.07493591;0.5763855;0.9896393 +9249;12;0.23644397;0.05776547;0.18036206;0.9530094 +9250;1;-0.24361913;4.636697;8.641632 +9255;2;-0.13189825;0.4958768;0.9079828; +9255;0;-0.07635498;4.280655;7.7253723 +9255;3;0.0541687;0.5715027;0.98475647 +9255;0;-0.052444458;4.3281555;7.734909 +9255;3;0.03401184;0.5690613;0.9780426 +9255;12;0.23653866;0.058549725;0.18294345;0.95244586 +9255;0;-0.06678772;4.3091583;7.773056 +9255;1;-0.24517384;4.639856;8.639892 +9255;3;0.010787964;0.5653839;0.9688721 +9258;4;4.3930054;1.3595581;-66.29639 +9258;6;-0.114144176;-0.50617737;0.008591997 +9258;7;0.9929815;-0.099614345;0.06375522;0.0;0.11803084;0.8689129;-0.48068613;0.0;-0.007514505 +9261;12;0.23669778;0.05860711;0.18271357;0.95244694 +9261;9;2AEC2AEBC4E1;-60;-2147483648 +9263;1;-0.24676238;4.6412363;8.639106 +9263;0;-0.06201172;4.323395;7.76828 +9263;3;-0.009979248;0.55989075;0.9609375 +9263;0;-0.057235718;4.4089203;7.777817 +9263;3;-0.031341553;0.55500793;0.9517822 +9263;0;-0.07156372;4.3994293;7.8255157 +9263;12;0.23659904;0.059336048;0.18523566;0.95193905 +9263;3;-0.05088806;0.55010986;0.94322205 +9265;0;-0.057235718;4.3946686;7.8350525 +9265;1;-0.24833345;4.640881;8.639252 +9265;3;-0.072265625;0.5458374;0.9334564 +9269;4;4.8431396;1.5090942;-68.84766 +9269;6;-0.123330206;-0.5111607;0.007304954 +9269;7;0.9919384;-0.10729334;0.06742685;0.0;0.12656087;0.8655527;-0.48456264;0.0;-0.006371159 +9269;0;-0.08590698;4.437439;7.844589 +9269;3;-0.09365845;0.54156494;0.9242859 +9269;12;0.2364041;0.060037754;0.18773268;0.95145416 +9269;0;-0.08590698;4.44693;7.8779755 +9270;1;-0.24996468;4.6388283;8.640306 +9270;2;-0.12380041;0.28971434;0.81995106; +9270;3;-0.116867065;0.53790283;0.9114685 +9271;5;999.58124 +9274;0;-0.12411499;4.4279175;7.8731995 +9274;12;0.23611675;0.060704067;0.19015509;0.9510021 +9276;1;-0.25190127;4.634825;8.642399 +9277;3;-0.13885498;0.5336304;0.9016876 +9277;0;-0.18144226;4.437439;7.9304504 +9277;3;-0.1620636;0.529953;0.88946533 +9277;4;4.6936035;1.3595581;-67.49725 +9277;6;-0.09184874;-0.5100299;0.022875197 +9277;7;0.9945001;-0.08004648;0.06754291;0.0;0.10281535;0.8690512;-0.48392037;0.0;-0.019962126 +9277;0;-0.18144226;4.4516907;7.9590607 +9277;3;-0.19017029;0.52445984;0.8802948 +9278;12;0.23589131;0.060651414;0.18973222;0.9511459 +9279;1;-0.25403574;4.62883;8.645549 +9279;0;-0.20533752;4.456436;7.944748 +9279;3;-0.21888733;0.5183563;0.8699188 +9281;0;-0.24832153;4.3994293;7.997223 +9282;12;0.23538646;0.06127457;0.19207105;0.9507615 +9282;3;-0.24575806;0.50979614;0.8595276 +9284;0;-0.2722168;4.4089203;8.059219 +9284;1;-0.25620696;4.620392;8.649997 +9284;3;-0.2756958;0.5030823;0.8503723 +9286;4;5.44281;1.3595581;-66.29639 +9286;6;-0.096522465;-0.5003474;0.03376423 +9286;7;0.9932173;-0.084558904;0.07980722;0.0;0.112436995;0.87333184;-0.47397184;0.0;-0.029619645 +9287;0;-0.3104248;4.413666;8.111679 +9287;3;-0.3086853;0.4945221;0.8418274 +9287;12;0.23475152;0.061855853;0.19436286;0.9504151 +9290;1;-0.25829288;4.6094112;8.655791 +9291;2;0.033184245;0.21380854;0.6366606; +9291;0;-0.3343048;4.413666;8.159363 +9291;3;-0.3422699;0.48658752;0.83143616 +9292;12;0.23398153;0.062387783;0.19661053;0.9501078 +9292;0;-0.36775208;4.432678;8.2070465 +9292;3;-0.37832642;0.4792633;0.8253174 +9293;9;52ADB5BC186F;-78;-2147483648 +9294;0;-0.40596008;4.4089203;8.30722 +9294;1;-0.26026067;4.595535;8.663108 +9294;3;-0.41374207;0.47253418;0.81555176 +9296;4;5.8929443;1.5090942;-68.096924 +9296;6;-0.07673334;-0.48743737;0.048829492 +9296;7;0.9941166;-0.067730166;0.0845275;0.0;0.09936029;0.8809362;-0.4626868;0.0;-0.043125473 +9296;0;-0.4298401;4.404175;8.340591 +9296;3;-0.44735718;0.46520996;0.8069916 +9297;12;0.23321891;0.0622198;0.19621193;0.95038867 +9298;0;-0.43940735;4.380417;8.431213 +9298;1;-0.26215965;4.5786266;8.671999 +9299;3;-0.48216248;0.4590912;0.8002777 +9302;0;-0.47283936;4.370926;8.46936 +9302;12;0.23213369;0.062643245;0.1983816;0.9501761 +9302;3;-0.5133209;0.45115662;0.7941742 +9303;0;-0.5158386;4.3186646;8.536133 +9303;1;-0.26396364;4.558801;8.682383 +9304;3;-0.54447937;0.4426117;0.7892914 +9306;4;6.1935425;2.859497;-67.196655 +9306;6;-0.06450864;-0.46764457;0.060356617 +9306;7;0.9943501;-0.057542577;0.089200966;0.0;0.091481306;0.89077586;-0.4451398;0.0;-0.053843573 +9307;0;-0.5445099;4.313904;8.660141 +9307;3;-0.57380676;0.43466187;0.7819519 +9308;12;0.23089299;0.063013315;0.20051983;0.9500051 +9309;0;-0.5874939;4.3186646;8.73645 +9309;3;-0.6031189;0.42488098;0.7758484 +9309;1;-0.26553187;4.5361323;8.6942 +9309;2;0.2653287;0.19754791;0.21912575; +9309;5;999.58374 +9311;12;0.22950472;0.0633275;0.20264319;0.94987005 +9311;0;-0.63049316;4.2616425;8.7603 +9311;3;-0.6287842;0.41511536;0.7697296 +9313;0;-0.64482117;4.275894;8.812759 +9313;3;-0.6495514;0.40473938;0.76057434 +9313;1;-0.26679596;4.5112834;8.707081 +9315;4;5.293274;1.8096924;-67.64679 +9315;6;-0.010989241;-0.45068482;0.07303888 +9315;7;0.99692434;-0.009891755;0.0777434;0.0;0.042743947;0.9000946;-0.43359262;0.0;-0.06568744 +9316;0;-0.6687012;4.252136;8.884293 +9316;3;-0.66848755;0.3937378;0.7538452 +9316;12;0.22818689;0.06289603;0.20189229;0.95037585 +9318;0;-0.6782532;4.2378845;8.965378 +9318;3;-0.68559265;0.38334656;0.74713135 +9318;1;-0.26769423;4.48436;8.720949 +9320;0;-0.71170044;4.2711487;9.013062 +9320;12;0.22658832;0.06309235;0.20392798;0.9503108 +9320;3;-0.6941376;0.37297058;0.7398071 +9323;1;-0.26817474;4.4560766;8.735421 +9323;0;-0.71170044;4.223633;9.036911 +9323;3;-0.7033081;0.361969;0.7312622 +9325;4;5.44281;3.0090332;-67.796326 +9325;6;-0.0032811798;-0.43602455;0.07859261 +9325;7;0.996799;-0.0029741798;0.07989281;0.0;0.03642946;0.90643287;-0.42077574;0.0;-0.071166 +9325;0;-0.72125244;4.185623;9.103683 +9326;3;-0.710022;0.3509674;0.7239227 +9326;12;0.2249237;0.06323278;0.20592415;0.95026636 +9328;0;-0.69737244;4.209381;9.170456 +9328;1;-0.2682023;4.42695;8.7502165 +9328;3;-0.7106323;0.34181213;0.7141571 +9328;2;0.4768991;0.21743202;-0.23177147; +9329;0;-0.6639252;4.209381;9.251541 +9330;12;0.22322685;0.063320525;0.20787454;0.9502361 +9330;3;-0.710022;0.335083;0.7062073 +9332;0;-0.6639252;4.190384;9.261063 +9332;1;-0.267895;4.397398;8.765115 +9332;3;-0.7057495;0.33081055;0.6988678 +9334;4;6.3430786;3.6087036;-67.796326 +9334;6;-0.04722647;-0.423947;0.07156751 +9334;7;0.9949394;-0.043029625;0.09079692;0.0;0.076470256;0.9104561;-0.40647498;0.0;-0.065176144 +9334;0;-0.64482117;4.180893;9.327835 +9335;3;-0.69963074;0.3265381;0.68788147 +9335;12;0.22168061;0.06275575;0.20716293;0.95079076 +9336;0;-0.65914917;4.185623;9.399368 +9337;1;-0.26763526;4.3682456;8.779688 +9337;3;-0.69047546;0.32531738;0.680542 +9339;0;-0.63049316;4.2283936;9.4470825 +9339;12;0.2199981;0.06280092;0.2090182;0.9507725 +9339;3;-0.67581177;0.32714844;0.6726074 +9342;0;-0.63049316;4.209381;9.4852295 +9342;1;-0.26770484;4.3398757;8.793743 +9342;3;-0.65992737;0.32958984;0.6640625 +9344;4;6.0424805;3.3096313;-66.29639 +9344;6;-0.05440022;-0.41685495;0.06637341 +9344;7;0.99486184;-0.04971722;0.08819315;0.0;0.08106791;0.9130141;-0.39979124;0.0;-0.060645092 +9344;0;-0.64004517;4.2046356;9.537689 +9344;3;-0.63793945;0.3338623;0.65489197 +9345;12;0.2183574;0.06285786;0.21082996;0.95074695 +9347;0;-0.62094116;4.185623;9.523392 +9348;1;-0.26846644;4.312863;8.807 +9348;2;0.43921715;0.14419556;-0.61050034; +9348;3;-0.6165619;0.33753967;0.64756775 +9348;5;999.58374 +9348;0;-0.62094116;4.1713715;9.561539 +9349;12;0.21678773;0.062952064;0.21259959;0.9507058 +9349;3;-0.5872345;0.3424225;0.6402283 +9351;0;-0.60661316;4.1713715;9.556763 +9351;1;-0.2699754;4.287776;8.819195 +9351;3;-0.55973816;0.34669495;0.6335144 +9353;4;5.44281;3.0090332;-65.84625 +9353;6;-0.04323651;-0.41082054;0.06338971 +9353;7;0.9959654;-0.039626602;0.08051503;0.0;0.06841107;0.9159367;-0.3954491;0.0;-0.05807636 +9354;0;-0.6113739;4.185623;9.585388 +9354;3;-0.5292053;0.35281372;0.62680054 +9354;12;0.21549511;0.062454123;0.21151707;0.9512738 +9356;0;-0.60661316;4.190384;9.59491 +9356;1;-0.2722601;4.2651052;8.8301115 +9356;3;-0.49743652;0.3595276;0.6225128 +9358;0;-0.5827179;4.223633;9.623535 +9358;12;0.21415108;0.062660344;0.21321191;0.9511854 +9359;3;-0.46261597;0.3668518;0.6188507 +9360;0;-0.5540619;4.2188873;9.59491 +9361;1;-0.27532947;4.2451854;8.83961 +9361;3;-0.4277954;0.37358093;0.6139679 +9363;4;5.293274;4.6585083;-67.64679 +9363;6;-0.043883048;-0.41364306;0.05768134 +9363;7;0.9963592;-0.040169172;0.07519756;0.0;0.06694573;0.91478115;-0.39836395;0.0;-0.052787367 +9363;0;-0.5922699;4.2949066;9.580612 +9363;3;-0.3923645;0.3827362;0.6115265 +9364;12;0.21294846;0.062934674;0.21488151;0.9510616 +9365;0;-0.55882263;4.280655;9.580612 +9365;1;-0.27926794;4.228316;8.8475685 +9366;2;0.37704623;0.042143345;-0.7502661; +9366;3;-0.359375;0.3912964;0.6090698 +9368;0;-0.54927063;4.3043976;9.571075 +9369;12;0.21189824;0.0632826;0.21652937;0.95089936 +9369;3;-0.3263855;0.40045166;0.6090698 +9370;0;-0.5540619;4.342407;9.571075 +9371;9;2AEC2AEBC4E1;-60;-2147483648 +9373;1;-0.284053;4.2143507;8.854077 +9374;3;-0.29341125;0.4096222;0.6060333 +9374;4;5.592346;3.7597656;-68.39752 +9374;6;-0.05132807;-0.42529842;0.057824664 +9374;7;0.9957904;-0.04673501;0.07884924;0.0;0.07503311;0.9097159;-0.40839547;0.0;-0.05264404 +9374;0;-0.48718262;4.3519135;9.532913 +9374;3;-0.26164246;0.41999817;0.6060333 +9374;12;0.2111768;0.0630631;0.21529046;0.9513556 +9375;1;-0.28965604;4.2032585;8.859166 +9375;0;-0.47763062;4.3994293;9.494766 +9376;3;-0.23475647;0.43099976;0.60479736 +9377;0;-0.46806335;4.4184265;9.513855 +9378;12;0.21041672;0.06356659;0.2169212;0.95112 +9378;3;-0.20605469;0.4432068;0.6060333 +9380;0;-0.5922699;4.456436;9.418457 +9380;1;-0.29630873;4.1947017;8.863001 +9380;3;-0.1803894;0.45115662;0.60479736 +9382;4;6.942749;3.4591675;-66.14685 +9382;6;-0.087942794;-0.4411835;0.06280127 +9382;7;0.991818;-0.079419546;0.099947594;0.0;0.11435193;0.90075254;-0.41900906;0.0;-0.056750536 +9382;0;-0.93144226;4.3091583;9.4756775 +9383;3;-0.15351868;0.45787048;0.6151886 +9383;12;0.20977327;0.06416765;0.21854852;0.95084924 +9385;0;-1.1416473;4.44693;9.40892 +9385;1;-0.30427948;4.1883874;8.865717 +9385;2;0.41185462;-0.1597662;-0.6450691; +9386;3;-0.1296997;0.47070312;0.6481781 +9387;5;999.58374 +9388;0;-1.2658386;4.7652435;9.265839 +9389;12;0.2092521;0.06486432;0.22017948;0.9505405 +9389;3;-0.112594604;0.4817047;0.68788147 +9389;1;-0.3122825;4.1848044;8.86713 +9390;0;-1.2276306;5.0550537;9.13707 +9390;3;-0.09487915;0.48414612;0.7190399 +9392;4;6.3430786;3.0090332;-67.49725 +9392;6;0.07657788;-0.5015522;0.13355733 +9392;7;0.99308777;0.06708073;0.09631624;0.0;-0.011987455;0.8742675;-0.4852962;0.0;-0.116760194 +9392;0;-1.1273041;5.1453247;9.156143 +9393;12;0.20903508;0.065011226;0.21922575;0.95079863 +9393;3;-0.0771637;0.48109436;0.7349243 +9394;0;-1.0460968;5.121567;9.246765 +9394;1;-0.31916106;4.183059;8.867709 +9395;3;-0.060668945;0.4786377;0.7391968 +9397;0;-0.93144226;5.0455627;9.356461 +9397;12;0.20872444;0.065750904;0.22112577;0.9503759 +9397;3;-0.049057007;0.4786377;0.74102783 +9399;0;-0.87890625;5.017044;9.4470825 +9399;1;-0.3253599;4.1824746;8.86776 +9399;3;-0.04234314;0.48353577;0.74346924 +9405;4;6.793213;4.2099;-65.54718 +9405;6;-0.02004297;-0.48640925;0.09276764 +9405;7;0.9946324;-0.017717144;0.10194431;0.0;0.06324925;0.8838396;-0.46349466;0.0;-0.081890605 +9405;0;-0.816803;4.9885406;9.427994 +9405;3;-0.03805542;0.49147034;0.74346924 +9405;12;0.2084827;0.06647962;0.22305025;0.94992846 +9405;0;-0.831131;5.097824;9.304001 +9405;1;-0.33179787;4.1825695;8.867476 +9405;2;0.7520734;-0.8189225;-0.43617153; +9405;3;-0.03439331;0.49942017;0.7428589 +9409;12;0.20827925;0.06724464;0.22499482;0.94946057 +9409;1;-0.33877355;4.1834135;8.866814 +9409;0;-0.883667;5.230835;9.117996 +9409;3;-0.031951904;0.4988098;0.74102783 +9409;0;-0.90278625;5.3733673;9.013062 +9409;3;-0.027679443;0.49269104;0.736145 +9411;4;7.3928833;3.9093018;-67.49725 +9411;6;-0.016547738;-0.53540987;0.099831246 +9411;7;0.9940434;-0.014231391;0.108051986;0.0;0.06730633;0.85994184;-0.5059347;0.0;-0.08571827 +9411;0;-0.89323425;5.411377;9.008301 +9412;3;-0.028289795;0.48231506;0.7318573 +9412;12;0.20827591;0.067469604;0.22433387;0.9496017 +9413;0;-0.855011;5.387619;9.017838 +9413;1;-0.34545502;4.1846137;8.865991 +9414;3;-0.031951904;0.47375488;0.7245331 +9416;0;-0.75468445;5.3923798;9.079834 +9416;3;-0.036239624;0.4645996;0.7190399 +9416;12;0.20811215;0.06824781;0.22625394;0.94912636 +9418;0;-0.73080444;5.311615;9.022598 +9418;1;-0.351383;4.1854887;8.865343 +9419;3;-0.044784546;0.45664978;0.7098694 +9420;4;8.743286;3.3096313;-65.84625 +9420;6;-0.0930353;-0.5306419;0.08082068 +9420;7;0.9886295;-0.08012561;0.12724619;0.0;0.133279;0.8587525;-0.4947534;0.0;-0.06963055 +9421;0;-0.7021332;5.297348;8.994003 +9421;3;-0.05456543;0.4474945;0.7007141 +9422;12;0.20794092;0.06897591;0.22812624;0.9486629 +9423;1;-0.3568406;4.1856976;8.865027 +9423;0;-0.6687012;5.302109;8.927231 +9424;2;0.51177984;-1.1281385;-0.1666584; +9424;3;-0.06555176;0.43710327;0.69215393 +9425;5;999.58374 +9425;0;-0.5827179;5.311615;8.84137 +9426;12;0.20774381;0.069660716;0.2299552;0.9482145 +9426;3;-0.076553345;0.42184448;0.6817627 +9428;0;-0.5445099;5.2688446;8.803207 +9428;1;-0.36155206;4.1850605;8.865138 +9429;3;-0.08938599;0.40533447;0.6713867 +9430;4;7.6934814;3.3096313;-65.84625 +9430;6;-0.0979155;-0.53848535;0.061774876 +9430;7;0.99021673;-0.083924875;0.11147869;0.0;0.12908125;0.8543744;-0.5033711;0.0;-0.052999172 +9430;0;-0.5158386;5.2070923;8.850922 +9431;3;-0.10342407;0.38885498;0.6609955 +9431;12;0.20768331;0.06972804;0.22920765;0.9484037 +9433;1;-0.36523166;4.183213;8.865859 +9433;0;-0.46328735;5.197586;8.81752 +9433;3;-0.11869812;0.38090515;0.65489197 +9435;0;-0.43940735;5.2023315;8.803207 +9435;12;0.20740017;0.07027367;0.23094115;0.9480048 +9435;3;-0.13336182;0.37480164;0.65367126 +9437;0;-0.46806335;5.1595764;8.76506 +9437;1;-0.3682721;4.1801295;8.8671875 +9438;3;-0.14924622;0.36746216;0.6542816 +9440;4;8.293152;2.859497;-67.64679 +9440;6;-0.12592849;-0.5314119;0.05335037 +9440;7;0.98727596;-0.108275294;0.116458096;0.0;0.15222576;0.8552659;-0.49532557;0.0;-0.045971137 +9440;0;-0.44418335;5.1690826;8.750748 +9440;3;-0.16268921;0.3607483;0.6579437 +9441;12;0.20705979;0.07076185;0.23263116;0.9476295 +9442;0;-0.47283936;5.140564;8.717377 +9442;1;-0.3707126;4.1757936;8.869128 +9443;2;0.19091025;-1.010273;0.06817341; +9443;3;-0.17428589;0.35525513;0.6640625 +9445;0;-0.47763062;5.0693054;8.660141 +9445;12;0.20665817;0.071202025;0.23432262;0.9472674 +9445;3;-0.18406677;0.34913635;0.67077637 +9447;0;-0.49671936;5.0265503;8.6792145 +9447;3;-0.19200134;0.34425354;0.6781006 +9448;1;-0.37248275;4.170432;8.871576 +9449;4;6.942749;3.7597656;-67.196655 +9449;6;-0.083296806;-0.5242373;0.05716855 +9449;7;0.9925253;-0.072027184;0.098517545;0.0;0.11156573;0.86270446;-0.49324855;0.0;-0.0494642 +9450;0;-0.47763062;4.969528;8.717377 +9450;3;-0.19934082;0.33815002;0.6872711 +9450;12;0.20640805;0.07098077;0.23323312;0.94760746 +9452;0;-0.47283936;4.950531;8.70784 +9452;1;-0.3734855;4.1642904;8.874418 +9452;3;-0.20788574;0.33448792;0.6952057 +9455;0;-0.45373535;4.9315186;8.741211 +9455;12;0.20592622;0.07133051;0.2349805;0.94725424 +9455;3;-0.2109375;0.3338623;0.7049866 +9457;0;-0.40596008;4.94104;8.784149 +9457;1;-0.37380525;4.15755;8.877564 +9457;3;-0.21154785;0.3326416;0.71047974 +9459;4;8.743286;3.9093018;-65.097046 +9459;6;-0.16016863;-0.5119299;0.04618221 +9459;7;0.98254114;-0.13903886;0.12361688;0.0;0.18163998;0.860642;-0.47571233;0.0;-0.040247373 +9459;0;-0.39640808;4.893524;8.784149 +9460;3;-0.21398926;0.33448792;0.7159729 +9460;12;0.20541784;0.07164293;0.23676646;0.94689626 +9462;0;-0.40596008;4.8460083;8.865219 +9462;1;-0.37382603;4.150592;8.880819 +9462;2;0.14512196;-0.78491974;0.13266373; +9462;3;-0.2133789;0.34120178;0.7214813 +9463;5;999.58374 +9464;0;-0.41073608;4.8079987;8.827072 +9464;12;0.20489883;0.07194348;0.23858188;0.94653016 +9464;3;-0.21459961;0.35035706;0.7245331 +9467;0;-0.39640808;4.7557526;8.836609 +9467;1;-0.3742053;4.14351;8.8841095 +9467;3;-0.2097168;0.35586548;0.7300415 +9469;4;7.6934814;3.6087036;-66.596985 +9469;6;-0.13410246;-0.49330956;0.044829696 +9469;7;0.9871887;-0.117759794;0.107661895;0.0;0.15459773;0.87286264;-0.46282858;0.0;-0.039471447 +9469;0;-0.36775208;4.7890015;8.879532 +9469;3;-0.20666504;0.36380005;0.7312622 +9469;12;0.20455995;0.07168987;0.23778494;0.9468232 +9471;0;-0.41552734;4.7224884;8.860458 +9471;1;-0.3750425;4.1366467;8.887272 +9471;3;-0.20300293;0.3680725;0.7318573 +9474;0;-0.40596008;4.703491;8.850922 +9474;12;0.20403418;0.07204319;0.23965144;0.94643915 +9474;3;-0.19567871;0.37236023;0.7306366 +9476;0;-0.40596008;4.6322327;8.879532 +9476;3;-0.19139099;0.37480164;0.7306366 +9477;1;-0.3763669;4.130034;8.890291 +9477;9;2AEC2AEBC4E1;-60;-2147483648 +9480;4;7.3928833;3.9093018;-67.04712 +9480;6;-0.124386065;-0.48040912;0.045686826 +9480;7;0.98862;-0.11002207;0.10259416;0.0;0.14487949;0.8799544;-0.4524268;0.0;-0.04050125 +9480;0;-0.43940735;4.627472;8.860458 +9480;3;-0.18772888;0.3790741;0.7281952 +9480;12;0.20351483;0.07242595;0.24153392;0.94604313 +9481;0;-0.4202881;4.6179657;8.860458 +9481;1;-0.37806404;4.123845;8.893091 +9481;2;0.100450546;-0.5676422;0.031715393; +9481;3;-0.18223572;0.3802948;0.7245331 +9483;0;-0.43463135;4.6084595;8.874756 +9483;12;0.20301573;0.07282788;0.2434009;0.9456409 +9484;3;-0.17489624;0.37968445;0.7239227 +9486;0;-0.49195862;4.560959;8.879532 +9486;1;-0.38006163;4.118076;8.895679 +9486;3;-0.16757202;0.3790741;0.7214813 +9488;4;8.442688;3.6087036;-68.24646 +9488;6;-0.13402323;-0.4738842;0.05534708 +9488;7;0.98614156;-0.118897505;0.11570739;0.0;0.15843588;0.88182294;-0.4441692;0.0;-0.049222827 +9489;12;0.20272322;0.07269698;0.24269898;0.9458942 +9489;0;-0.46806335;4.546707;8.865219 +9489;3;-0.15962219;0.3778534;0.7184143 +9490;0;-0.45851135;4.546707;8.836609 +9491;1;-0.3821014;4.112922;8.897976 +9491;3;-0.1473999;0.37480164;0.7171936 +9493;0;-0.4202881;4.522949;8.812759 +9493;3;-0.13946533;0.36990356;0.7141571 +9493;12;0.20227791;0.07312264;0.24453987;0.9454824 +9495;0;-0.44895935;4.4897003;8.78891 +9495;1;-0.3839477;4.108617;8.899886 +9495;3;-0.1290741;0.36380005;0.7123108 +9497;4;8.743286;3.9093018;-67.796326 +9497;6;-0.15186878;-0.4717519;0.05103812 +9497;7;0.9836955;-0.13476127;0.119090654;0.0;0.17400593;0.8805209;-0.44091395;0.0;-0.045443673 +9498;0;-0.47283936;4.5086975;8.84137 +9498;3;-0.11991882;0.35525513;0.70925903 +9498;12;0.20187922;0.07354883;0.24636352;0.94506115 +9500;0;-0.47283936;4.52771;8.836609 +9500;1;-0.38540697;4.1051087;8.901441 +9500;2;0.1441307;-0.42043066;0.056040764; +9501;3;-0.11074829;0.34547424;0.70803833 +9502;5;999.58374 +9502;0;-0.46806335;4.5181885;8.860458 +9502;3;-0.10342407;0.335083;0.7043762 +9503;12;0.20152976;0.073959835;0.24816543;0.944632 +9506;1;-0.38616028;4.102321;8.902693 +9506;0;-0.49671936;4.4897003;8.836609 +9506;3;-0.09609985;0.32409668;0.7007141 +9507;4;9.643555;4.359436;-66.89758 +9507;6;-0.16936544;-0.4694537;0.05615244 +9507;7;0.97985864;-0.15032166;0.1314547;0.0;0.1933179;0.8790554;-0.4357634;0.0;-0.050051313 +9509;0;-0.44895935;4.5181885;8.860458 +9509;3;-0.08692932;0.3112793;0.6958313 +9511;12;0.2014028;0.07384152;0.24761912;0.94481176 +9511;1;-0.3860375;4.1001854;8.903683 +9511;0;-0.40119934;4.4991913;8.865219 +9511;3;-0.080215454;0.2996521;0.6897125 +9512;0;-0.4298401;4.5086975;8.865219 +9512;3;-0.07165527;0.28866577;0.68544006 +9512;12;0.20114946;0.07417991;0.2493668;0.94437945 +9514;0;-0.38685608;4.4897003;8.884293 +9515;1;-0.38510677;4.098679;8.904416 +9515;3;-0.06616211;0.2782898;0.6793213 +9521;4;10.243225;5.1086426;-66.89758 +9521;6;-0.206935;-0.46753934;0.043516334 +9521;7;0.9737105;-0.18341117;0.13508639;0.0;0.2244547;0.87363493;-0.43172005;0.0;-0.0388339 +9521;0;-0.41073608;4.4897003;8.86998 +9521;3;-0.059448242;0.2666626;0.6713867 +9521;12;0.20094222;0.07447794;0.25107563;0.94394726 +9521;0;-0.39163208;4.4897003;8.903381 +9521;1;-0.38348794;4.0976896;8.904942 +9521;2;0.11690393;-0.3912487;0.03423786; +9521;3;-0.053344727;0.25628662;0.6622162 +9522;12;0.20077366;0.07473936;0.25274345;0.94351727 +9522;0;-0.38685608;4.432678;8.865219 +9523;3;-0.047836304;0.24407959;0.65122986 +9525;0;-0.37728882;4.4421844;8.931976 +9525;1;-0.3812644;4.0971165;8.9053 +9525;3;-0.039901733;0.22819519;0.6396179 +9527;4;9.643555;3.1585693;-69.14673 +9527;6;-0.19644016;-0.46115807;0.042215142 +9528;7;0.9762285;-0.17479037;0.12816548;0.0;0.21342371;0.87831455;-0.4278015;0.0;-0.03779403 +9528;0;-0.3343048;4.432678;8.970154 +9528;3;-0.03501892;0.21414185;0.62924194 +9528;12;0.20081908;0.074456766;0.2519861;0.94373244 +9529;0;-0.3438568;4.456436;9.051224 +9529;1;-0.37818348;4.0970054;8.905483 +9529;3;-0.028900146;0.2013092;0.6164093 +9531;0;-0.3056488;4.465927;9.103683 +9532;12;0.20072718;0.07463126;0.253533;0.9433239 +9532;3;-0.024627686;0.19337463;0.6054077 +9533;0;-0.2817688;4.5086975;9.132294 +9533;1;-0.37448668;4.0972857;8.90551 +9533;3;-0.020950317;0.18725586;0.5919647 +9535;4;10.392761;3.0090332;-66.29639 +9535;6;-0.25380316;-0.4584135;0.030844325 +9535;7;0.9640774;-0.22516376;0.14091116;0.0;0.26417768;0.8680276;-0.4204023;0.0;-0.02765544 +9536;0;-0.25309753;4.480179;9.13707 +9536;3;-0.017288208;0.18115234;0.5809784 +9536;12;0.20066972;0.074766345;0.25501347;0.94292617 +9538;0;-0.26742554;4.44693;9.127518 +9538;1;-0.37066898;4.0978065;8.905431 +9538;2;0.019013137;-0.35058546;-0.13631535; +9538;3;-0.016067505;0.17504883;0.5693817 +9540;5;999.58374 +9540;0;-0.25787354;4.4421844;9.127518 +9541;12;0.20063078;0.07488699;0.25643063;0.9425405 +9541;3;-0.011795044;0.16526794;0.5583801 +9543;0;-0.23399353;4.4516907;9.127518 +9543;1;-0.3666806;4.09848;8.905286 +9543;3;-0.0056915283;0.15731812;0.5479889 +9545;4;8.892822;3.4591675;-64.94751 +9545;6;-0.22435765;-0.4536476;0.02563044 +9545;7;0.97211826;-0.1999773;0.122454576;0.0;0.23335683;0.87632674;-0.42142144;0.0;-0.023035515 +9547;0;-0.24832153;4.456436;9.156143 +9547;3;-0.0014190674;0.15184021;0.5388336 +9547;12;0.20079201;0.07446867;0.25535655;0.94283086 +9548;0;-0.23399353;4.4279175;9.179993 +9548;3;0.0010223389;0.14511108;0.53027344 +9548;1;-0.3624257;4.0995235;8.90498 +9554;1;-0.35792044;4.10088;8.904537 +9554;12;0.20079659;0.074549116;0.25666004;0.94246954 +9555;12;0.20082538;0.07461616;0.25792497;0.94211274 +9557;0;-0.19099426;4.432678;9.175232 +9557;3;0.008346558;0.14083862;0.5217285 +9557;0;-0.18144226;4.4516907;9.16568 +9557;3;0.011413574;0.1377716;0.5149994 +9557;4;10.243225;4.058838;-66.44745 +9557;6;-0.26601624;-0.45205826;0.019793246 +9557;7;0.96236396;-0.23648259;0.13390833;0.0;0.2711798;0.86790895;-0.4161676;0.0;-0.017803852 +9557;0;-0.171875;4.470688;9.151382 +9557;3;0.013244629;0.1347351;0.5076752 +9557;0;-0.138443;4.4516907;9.156143 +9557;1;-0.35340515;4.1025496;8.903949 +9558;2;-0.07596746;-0.33707142;-0.2524109; +9558;3;0.018737793;0.1341095;0.49972534 +9560;12;0.2008726;0.07467679;0.2591443;0.9417631 +9560;0;-0.12411499;4.4611816;9.146606 +9560;3;0.026062012;0.1341095;0.49240112 +9562;0;-0.09068298;4.44693;9.103683 +9562;1;-0.34903648;4.104614;8.90317 +9562;3;0.02911377;0.13595581;0.4862976 +9564;4;8.743286;3.9093018;-65.84625 +9564;6;-0.24424624;-0.45436636;0.009960801 +9564;7;0.96921456;-0.21728928;0.11579505;0.0;0.24605493;0.8718706;-0.4234368;0.0;-0.008950024 +9565;0;-0.033355713;4.4754486;9.098923 +9565;3;0.034622192;0.1365509;0.47773743 +9565;12;0.20113091;0.07420806;0.25783157;0.9421053 +9567;0;-0.047683716;4.480179;9.14183 +9567;1;-0.34494686;4.1070776;8.902193 +9567;3;0.042556763;0.13717651;0.46858215 +9569;0;-0.009475708;4.5086975;9.098923 +9569;12;0.20121908;0.07429016;0.25898242;0.9417643 +9569;3;0.048065186;0.14021301;0.45941162 +9571;0;-0.0046844482;4.4611816;9.046463 +9572;1;-0.34126982;4.110105;8.900937 +9572;3;0.0541687;0.14389038;0.45269775 +9574;4;9.643555;3.4591675;-66.14685 +9574;6;-0.28865263;-0.4581453;5.1782094E-4 +9574;7;0.95856297;-0.25530502;0.12639773;0.0;0.28488037;0.8597691;-0.42383984;0.0;-4.6442027E-4 +9574;0;7.6293945E-5;4.4991913;9.008301 +9575;3;0.059661865;0.14755249;0.44474792 +9575;12;0.20133393;0.074393995;0.2600912;0.9414259 +9576;0;0.0048675537;4.4991913;8.922455 +9576;2;-0.23077661;-0.3582363;-0.17240524; +9576;1;-0.33817628;4.1136627;8.899411 +9577;3;0.06700134;0.15184021;0.4386444 +9578;5;999.58374 +9579;0;-0.01423645;4.5086975;8.884293 +9579;12;0.20147106;0.07453031;0.2611661;0.9410882 +9579;3;0.0712738;0.15550232;0.43315125 +9581;0;-0.033355713;4.522949;8.81752 +9581;1;-0.3357046;4.1177897;8.897596 +9581;3;0.076156616;0.15672302;0.42886353 +9583;4;9.042358;4.508972;-64.34631 +9583;6;-0.2576213;-0.47395116;0.0037828726 +9583;7;0.96655196;-0.22669701;0.119940646;0.0;0.25644875;0.8604083;-0.44037655;0.0;-0.0033658855 +9583;0;-0.042907715;4.556198;8.803207 +9584;3;0.079818726;0.15855408;0.42214966 +9584;12;0.20181292;0.07418576;0.25981286;0.9414167 +9586;0;-0.028564453;4.522949;8.798447 +9587;1;-0.33361596;4.1223197;8.895577 +9587;3;0.08288574;0.15977478;0.41604614 +9588;0;-0.028564453;4.5752106;8.78891 +9589;12;0.20198952;0.07437653;0.26083687;0.9410806 +9589;3;0.08592224;0.16160583;0.40872192 +9590;0;-0.009475708;4.5894623;8.688751 +9591;1;-0.33188546;4.127173;8.893391 +9591;3;0.08592224;0.16221619;0.40260315 +9593;4;8.892822;2.558899;-67.64679 +9593;6;-0.25478107;-0.48595774;0.0010905715 +9593;7;0.96758956;-0.22285512;0.11876894;0.0;0.25252628;0.8556838;-0.45170307;0.0;-9.643136E-4 +9593;0;0.014419556;4.603714;8.688751 +9594;3;0.09082031;0.16221619;0.39587402 +9594;12;0.20218047;0.07458489;0.2618313;0.94074684 +9595;0;0.04786682;4.6179657;8.6410675 +9596;1;-0.3304019;4.132238;8.891094 +9596;3;0.092041016;0.16221619;0.3873291 +9596;2;-0.2503826;-0.42465305;0.1270504; +9598;0;0.04307556;4.622711;8.6458435 +9598;12;0.20237891;0.0748039;0.26279622;0.9404176 +9598;3;0.09265137;0.16160583;0.37817383 +9600;0;0.03831482;4.5752106;8.612442 +9600;1;-0.32920873;4.137444;8.888717 +9601;3;0.095703125;0.16038513;0.36961365 +9602;4;10.243225;2.859497;-67.196655 +9602;6;-0.30042648;-0.48831633;-0.0044487463 +9602;7;0.95581853;-0.26134077;0.13458052;0.0;0.29393107;0.84356916;-0.44943914;0.0;0.0039287815 +9603;0;0.07652283;4.5894623;8.574295 +9603;3;0.09326172;0.15916443;0.36106873 +9604;12;0.20274599;0.07456735;0.261577;0.94069725 +9605;0;0.019195557;4.594223;8.550446 +9605;1;-0.32824954;4.142735;8.886288 +9606;3;0.09448242;0.15550232;0.35128784 +9608;0;0.019195557;4.603714;8.550446 +9608;12;0.20295408;0.074802674;0.262463;0.9403869 +9609;3;0.09387207;0.15306091;0.34274292 +9610;1;-0.32745034;4.1480274;8.883848 +9610;0;0.019195557;4.6417236;8.507523 +9610;3;0.09448242;0.14694214;0.33662415 +9612;4;9.643555;3.1585693;-66.89758 +9612;6;-0.2743314;-0.49945948;-0.0022563 +9612;7;0.9628968;-0.23781025;0.12757722;0.0;0.26986244;0.84501606;-0.46165153;0.0;0.0019806724 +9613;0;-0.028564453;4.65123;8.49321 +9613;3;0.09448242;0.14083862;0.33174133 +9613;12;0.20316431;0.07503733;0.26330423;0.9400875 +9615;1;-0.32651463;4.1533895;8.881376 +9615;2;-0.27994138;-0.45905352;0.33225918; +9617;0;-0.023803711;4.646469;8.464584 +9617;3;0.09265137;0.1341095;0.32563782 +9618;0;-0.038131714;4.670227;8.483673 +9618;3;0.095703125;0.12495422;0.32258606 +9618;5;999.58374 +9619;12;0.20338127;0.075258486;0.26411596;0.93979526 +9620;0;-0.047683716;4.6797333;8.474136 +9620;1;-0.3251927;4.1586833;8.878947 +9620;3;0.09631348;0.11885071;0.317688 +9623;0;-0.06678772;4.703491;8.474136 +9623;3;0.095703125;0.11029053;0.31463623 +9623;4;9.643555;3.1585693;-66.89758 +9623;6;-0.25298285;-0.5066919;0.007881197 +9623;7;0.9671828;-0.21884483;0.12909052;0.0;0.25398806;0.8465241;-0.46785364;0.0;-0.00689089 +9623;12;0.2036033;0.07545159;0.26488727;0.93951446 +9624;0;-0.100234985;4.6987305;8.450302 +9625;1;-0.3234272;4.1641273;8.876461 +9625;3;0.09509277;0.10601807;0.31219482 +9627;0;-0.100234985;4.7224884;8.46936 +9627;12;0.2040163;0.07512317;0.263354;0.9398823 +9628;3;0.09448242;0.09806824;0.31097412 +9629;1;-0.32123908;4.1694703;8.874031 +9629;0;-0.09068298;4.703491;8.497986 +9629;3;0.09509277;0.09257507;0.30975342 +9631;4;10.542297;3.4591675;-66.44745 +9631;6;-0.27198663;-0.5054893;0.010670709 +9631;7;0.96179616;-0.23504812;0.14035858;0.0;0.27360734;0.84277415;-0.46354154;0.0;-0.009336028 +9632;0;-0.100234985;4.7462463;8.488449 +9632;12;0.20425612;0.07526429;0.26408818;0.9396128 +9633;3;0.09692383;0.08769226;0.30792236 +9634;0;-0.10978699;4.7700043;8.521835 +9634;1;-0.31860647;4.1748857;8.87158 +9634;2;-0.17081386;-0.5360489;0.39081287; +9635;3;0.09692383;0.0834198;0.3060913 +9636;0;-0.11456299;4.7652435;8.531357 +9637;3;0.09754944;0.080963135;0.30426025 +9638;12;0.20450631;0.07538219;0.2648096;0.93934584 +9641;0;-0.07635498;4.793747;8.526611 +9641;1;-0.3156911;4.180343;8.869114 +9644;12;0.2049225;0.07502851;0.26344815;0.9396662 +9644;3;0.09877014;0.07913208;0.30059814 +9644;4;10.542297;3.4591675;-66.44745 +9644;6;-0.27228978;-0.5121521;0.008954665 +9644;7;0.96193886;-0.23443072;0.14041337;0.0;0.27315336;0.8395767;-0.46957245;0.0;-0.007805604 +9644;0;-0.042907715;4.7747498;8.583832 +9644;3;0.09814453;0.07913208;0.29814148 +9644;1;-0.31271657;4.1857924;8.866649 +9647;17;1;38dead6d7725;274;670;-49; +9648;17;1;38dead6d60ff;492;712;-58; +9649;17;1;1c1bb5efa29a;10356;1218;-71; +9649;17;1;1c1bb5ecd182;11518;1501;-65; +9649;0;-0.09068298;4.7985077;8.631531 +9649;3;0.099365234;0.08157349;0.29570007 +9653;0;-0.10978699;4.803253;8.6410675 +9653;3;0.099365234;0.0834198;0.2914276 +9653;0;-0.07635498;4.8079987;8.6458435 +9653;1;-0.3100321;4.1912565;8.8641615 +9653;3;0.10180664;0.0846405;0.28775024 +9653;4;10.092163;2.708435;-66.29639 +9653;6;-0.2679195;-0.50750184;0.008831179 +9653;7;0.96314996;-0.23136005;0.13716649;0.0;0.26885414;0.8427816;-0.46630087;0.0;-0.0077180085 +9653;12;0.20518152;0.07512587;0.26414293;0.9394068 +9654;0;-0.028564453;4.8555145;8.660141 +9654;3;0.10243225;0.08830261;0.28349304 +9654;12;0.20544022;0.07523185;0.26482654;0.9391494 +9654;1;-0.3075918;4.196846;8.861601 +9654;0;-0.042907715;4.8555145;8.698288 +9655;3;0.10487366;0.09013367;0.27737427 +9655;2;-0.16965999;-0.6113353;0.24942875; +9656;5;999.5884 +9656;0;-0.07156372;4.841263;8.703064 +9656;12;0.20570035;0.07535238;0.26549354;0.9388944 +9657;3;0.10731506;0.093185425;0.2731018 +9659;1;-0.3056455;4.202533;8.8589735 +9659;0;-0.10499573;4.8317566;8.731674 +9660;3;0.10975647;0.09623718;0.26576233 +9662;4;10.092163;2.708435;-66.29639 +9662;6;-0.26298153;-0.5053884;0.012024117 +9662;7;0.9640361;-0.22746216;0.13746062;0.0;0.26556313;0.8449038;-0.4643424;0.0;-0.010520686 +9662;0;-0.11456299;4.8460083;8.779373 +9662;3;0.111587524;0.097457886;0.26148987 +9662;12;0.20612372;0.07503052;0.2640315;0.9392395 +9663;0;-0.13366699;4.841263;8.81752 +9663;1;-0.30419362;4.208344;8.856264 +9663;3;0.111587524;0.09867859;0.25660706 +9666;0;-0.16233826;4.8365173;8.84137 +9667;3;0.11280823;0.09867859;0.25109863 +9667;12;0.206388;0.075193375;0.264652;0.9389938 +9669;0;-0.16711426;4.841263;8.850922 +9669;3;0.11402893;0.09623718;0.24499512 +9669;1;-0.30306277;4.2141614;8.853537 +9671;4;11.29303;2.558899;-65.24658 +9671;6;-0.29049844;-0.50044537;0.018878758 +9671;7;0.9553361;-0.25130463;0.15549588;0.0;0.29505706;0.84060824;-0.45422357;0.0;-0.016562652 +9671;0;-0.18144226;4.8460083;8.874756 +9671;3;0.11465454;0.09440613;0.23950195 +9672;12;0.2066517;0.07536718;0.26525077;0.9387529 +9673;0;-0.16233826;4.8317566;8.903381 +9673;1;-0.3020259;4.220017;8.850782 +9673;2;-0.10029411;-0.6227331;0.04154682; +9673;3;0.11465454;0.09074402;0.23583984 +9675;0;-0.21009827;4.817505;8.946289 +9675;3;0.11709595;0.08769226;0.23277283 +9676;12;0.20691767;0.07553988;0.26582134;0.938519 +9677;0;-0.21009827;4.8222656;8.946289 +9677;1;-0.30093378;4.225862;8.84803 +9678;3;0.11647034;0.08401489;0.22850037 +9680;4;11.29303;2.558899;-65.24658 +9680;6;-0.28487873;-0.49426228;0.02348009 +9680;7;0.9563011;-0.24740577;0.15581584;0.0;0.2916522;0.8448383;-0.44853896;0.0;-0.020668067 +9680;0;-0.21009827;4.803253;8.989227 +9681;3;0.115249634;0.08035278;0.22361755 +9681;12;0.20732695;0.07530419;0.26456457;0.9388027 +9682;0;-0.23399353;4.8222656;8.974915 +9682;1;-0.29971963;4.2316546;8.845303 +9682;3;0.11709595;0.07546997;0.22117615 +9685;0;-0.21487427;4.8079987;8.998749 +9685;3;0.11647034;0.07424927;0.21629333 +9685;12;0.20759912;0.07545675;0.2650918;0.93858147 +9687;0;-0.21009827;4.7747498;9.003525 +9687;1;-0.29831728;4.2374663;8.842567 +9687;3;0.11647034;0.07058716;0.21385193 +9689;4;10.092163;2.4093628;-66.596985 +9689;6;-0.25002414;-0.48749575;0.02333088 +9689;7;0.96593904;-0.21860422;0.1384705;0.0;0.2579478;0.85603726;-0.4479545;0.0;-0.020611163 +9689;0;-0.23399353;4.784256;8.989227 +9690;3;0.115249634;0.06692505;0.21139526 +9690;12;0.20787634;0.07559678;0.26560214;0.93836457 +9692;1;-0.2968183;4.243167;8.839884 +9692;2;-0.011947393;-0.56185913;-0.13977814; +9692;0;-0.24354553;4.7700043;9.022598 +9692;3;0.11465454;0.06324768;0.21139526 +9694;12;0.20815079;0.07572475;0.26609248;0.93815446 +9694;0;-0.23399353;4.7557526;9.036911 +9694;3;0.11402893;0.060806274;0.20956421 +9695;5;999.5884 +9697;0;-0.22442627;4.750992;8.998749 +9697;1;-0.2950611;4.2487574;8.837256 +9697;3;0.11402893;0.057754517;0.2071228 +9700;4;9.342957;3.3096313;-67.49725 +9700;6;-0.21821342;-0.48563734;0.02493455 +9700;7;0.97346294;-0.19145517;0.12535882;0.0;0.22778004;0.86340535;-0.4501639;0.0;-0.022049274 +9701;12;0.20860237;0.075328715;0.26429224;0.93859494 +9701;0;-0.23876953;4.760498;8.998749 +9701;3;0.11036682;0.055923462;0.2071228 +9701;0;-0.23399353;4.712982;9.051224 +9701;1;-0.29315856;4.2542214;8.834691 +9706;3;0.10914612;0.054092407;0.2059021 +9706;12;0.20887297;0.07542867;0.26476532;0.93839324 +9706;0;-0.24354553;4.7414856;9.017838 +9706;3;0.107925415;0.05470276;0.2034607 +9710;1;-0.29121795;4.2595153;8.832204 +9710;0;-0.25787354;4.7319946;9.027374 +9710;3;0.10853577;0.05531311;0.20223999 +9711;12;0.20913675;0.075523295;0.26523206;0.93819517 +9711;4;9.942627;2.859497;-66.44745 +9711;6;-0.23563713;-0.4826385;0.028557966 +9711;7;0.9688754;-0.20679495;0.136075;0.0;0.24625362;0.8612959;-0.4444421;0.0;-0.025292449 +9711;0;-0.25309753;4.7462463;9.027374 +9711;3;0.10670471;0.05470276;0.20101929 +9711;2;0.016636312;-0.48089933;-0.18875027; +9711;1;-0.28936538;4.2647495;8.829739 +9711;0;-0.25309753;4.717743;9.027374 +9711;3;0.10609436;0.053482056;0.20040894 +9713;12;0.20939699;0.07562009;0.2656923;0.93799907 +9714;0;-0.25787354;4.7319946;8.989227 +9714;3;0.10546875;0.05470276;0.20040894 +9715;0;-0.26742554;4.73674;9.008301 +9715;1;-0.28749782;4.269942;8.827291 +9716;3;0.10546875;0.05531311;0.20040894 +9718;4;10.8428955;3.1585693;-66.44745 +9718;6;-0.25620478;-0.4839078;0.029677851 +9718;7;0.9634342;-0.2243153;0.14655042;0.0;0.2666542;0.85629004;-0.4423379;0.0;-0.026266491 +9718;0;-0.25787354;4.7414856;8.965378 +9718;3;0.10546875;0.057144165;0.19918823 +9719;12;0.20980467;0.07528377;0.26422536;0.93834937 +9720;0;-0.23399353;4.73674;8.970154 +9720;1;-0.28572008;4.2751026;8.824849 +9721;3;0.10731506;0.05531311;0.19857788 +9724;0;-0.27697754;4.760498;8.936752 +9724;3;0.11097717;0.05470276;0.19735718 +9724;12;0.21006052;0.07538346;0.26468244;0.93815523 +9729;0;-0.27697754;4.750992;8.927231 +9730;1;-0.2839672;4.280442;8.822317 +9730;3;0.111587524;0.054092407;0.19429016 +9730;4;10.8428955;2.2598267;-65.69672 +9730;6;-0.26067904;-0.48886803;0.031016193 +9730;7;0.96199685;-0.2275467;0.15094537;0.0;0.2716844;0.85303754;-0.44554958;0.0;-0.027378721 +9730;0;-0.3056488;4.7414856;8.936752 +9730;3;0.11465454;0.053482056;0.1924591 +9732;12;0.21032494;0.07548587;0.26513353;0.9379603 +9732;0;-0.3152008;4.7652435;8.903381 +9732;1;-0.28229836;4.2859373;8.819702 +9732;2;0.055083305;-0.4668336;-0.12966824; +9732;3;0.11709595;0.05104065;0.1900177 +9733;0;-0.3390808;4.7700043;8.917694 +9733;12;0.21059908;0.0755931;0.26557228;0.937766 +9733;3;0.12013245;0.047973633;0.1875763 +9733;5;999.5884 +9734;0;-0.3534088;4.793747;8.936752 +9735;1;-0.28058654;4.2916737;8.816968 +9735;3;0.12747192;0.044921875;0.18513489 +9737;4;9.793091;3.0090332;-66.596985 +9737;6;-0.20578714;-0.4920228;0.039524958 +9737;7;0.9743215;-0.18009901;0.13513666;0.0;0.22245142;0.86278236;-0.45400658;0.0;-0.034827404 +9737;0;-0.3534088;4.7747498;8.912918 +9737;3;0.13235474;0.03881836;0.18330383 +9738;12;0.21105027;0.075222954;0.2638903;0.9381691 +9739;0;-0.36775208;4.803253;8.960602 +9739;1;-0.2786611;4.2978697;8.81401 +9740;3;0.13723755;0.032104492;0.18025208 +9742;0;-0.39163208;4.8317566;8.908142 +9742;12;0.2113687;0.07532161;0.26429886;0.9379745 +9743;3;0.14396667;0.024154663;0.17842102 +9744;0;-0.36775208;4.884018;8.941528 +9744;1;-0.27627772;4.304577;8.810812 +9745;3;0.15190125;0.014389038;0.1741333 +9748;4;10.542297;2.2598267;-66.89758 +9748;6;-0.22372417;-0.49957895;0.041105382 +9748;7;0.96988666;-0.19474742;0.14626443;0.0;0.24087068;0.8559081;-0.4576052;0.0;-0.036071498 +9748;0;-0.3534088;4.907776;8.970154 +9748;3;0.15740967;0.007659912;0.1716919 +9748;12;0.21172133;0.07539885;0.26468745;0.9377791 +9749;0;-0.34864807;4.950531;8.960602 +9749;1;-0.2732615;4.311905;8.807322 +9749;2;0.14952599;-0.53604984;-0.12534809; +9750;3;0.16351318;-0.003326416;0.16802979 +9752;0;-0.3343048;4.9933014;9.008301 +9752;12;0.21211736;0.0754499;0.26505035;0.9375831 +9752;3;0.16963196;-0.011260986;0.16497803 +9754;0;-0.3295288;5.0883026;9.046463 +9754;1;-0.26957366;4.319791;8.80357 +9754;3;0.17634583;-0.018600464;0.16192627 +9756;4;9.942627;2.558899;-66.44745 +9756;6;-0.21188644;-0.5120783;0.03641016 +9756;7;0.97323686;-0.18332836;0.13856684;0.0;0.22760293;0.8522327;-0.47105882;0.0;-0.031732745 +9756;0;-0.2817688;5.1263123;9.065521 +9756;3;0.18305969;-0.025314331;0.15763855 +9757;12;0.2127101;0.07501039;0.26336375;0.93795925 +9760;1;-0.26529723;4.3283496;8.799495 +9761;0;-0.26264954;5.2165833;9.117996 +9761;3;0.19223022;-0.030807495;0.1558075 +9761;12;0.21319029;0.075007096;0.26367855;0.937762 +9761;0;-0.23399353;5.2926025;9.199066 +9761;3;0.19589233;-0.0332489;0.15214539 +9763;0;-0.21487427;5.3163605;9.232452 +9763;1;-0.26067784;4.3374996;8.795127 +9764;3;0.20199585;-0.03263855;0.14970398 +9765;4;10.392761;2.708435;-67.04712 +9765;6;-0.2411103;-0.52234375;0.023269601 +9765;7;0.9680387;-0.20694004;0.14169306;0.0;0.24998897;0.84158295;-0.47879392;0.0;-0.02016483 +9766;0;-0.19099426;5.3591156;9.280151 +9766;3;0.20565796;-0.02897644;0.14604187 +9767;12;0.2137059;0.07499123;0.26397094;0.93756366 +9768;0;-0.17666626;5.4493866;9.375534 +9768;1;-0.25618222;4.347067;8.790534 +9769;2;0.060052693;-0.89345837;-0.3684702; +9769;3;0.20687866;-0.022872925;0.14543152 +9770;0;-0.15278625;5.487381;9.40892 +9771;12;0.21424313;0.074986205;0.26424867;0.93736315 +9771;3;0.21055603;-0.012481689;0.14421082 +9771;5;999.5884 +9773;0;-0.15278625;5.5301514;9.4756775 +9773;1;-0.2522605;4.356853;8.785802 +9773;3;0.21299744;-0.0014953613;0.14482117 +9775;4;10.392761;3.0090332;-65.54718 +9775;6;-0.25564587;-0.5282283;0.016122648 +9775;7;0.96531975;-0.21840444;0.14302905;0.0;0.26069888;0.8356312;-0.48348373;0.0;-0.013924549 +9776;0;-0.143219;5.5729218;9.504303 +9776;3;0.21238708;0.013168335;0.14482117 +9776;12;0.21492812;0.07457941;0.26263016;0.9376936 +9778;0;-0.11456299;5.639435;9.518616 +9778;1;-0.24929503;4.3668385;8.780928 +9778;3;0.20933533;0.029052734;0.14543152 +9780;0;-0.147995;5.7059326;9.599686 +9780;12;0.21546431;0.074662745;0.2629185;0.93748313 +9780;3;0.20933533;0.046157837;0.14604187 +9782;0;-0.143219;5.715439;9.642624 +9782;1;-0.24766053;4.3767;8.776062 +9783;3;0.20443726;0.06263733;0.14543152 +9785;4;11.143494;1.9592285;-66.596985 +9785;6;-0.27693847;-0.5350058;0.014851608 +9785;7;0.9597207;-0.235207;0.15366788;0.0;0.28066516;0.82748693;-0.48630482;0.0;-0.012775859 +9785;0;-0.13366699;5.724945;9.690308 +9785;3;0.2013855;0.080963135;0.14665222 +9786;12;0.21597192;0.07481463;0.2632258;0.93726796 +9787;0;-0.15278625;5.734436;9.728455 +9787;1;-0.24744548;4.386242;8.771303 +9788;2;-0.04225172;-1.2649088;-0.792078; +9788;3;0.19284058;0.09989929;0.14543152 +9790;0;-0.18144226;5.734436;9.752304 +9790;12;0.21644185;0.07503961;0.26355234;0.9370497 +9790;3;0.18611145;0.1164093;0.14604187 +9792;0;-0.21009827;5.7296906;9.766617 +9792;1;-0.24881586;4.3951764;8.766791 +9792;3;0.17817688;0.13166809;0.14360046 +9794;4;9.342957;1.3595581;-66.596985 +9794;6;-0.2224738;-0.53045255;0.02150856 +9795;7;0.97272825;-0.19032197;0.13257964;0.0;0.23120481;0.8413197;-0.48859558;0.0;-0.018551385 +9795;0;-0.22921753;5.6774445;9.814301 +9796;3;0.16595459;0.14938354;0.14297485 +9796;12;0.2170127;0.07486611;0.2618607;0.93740577 +9798;1;-0.25166133;4.403276;8.762645 +9798;0;-0.29130554;5.6726837;9.838165 +9798;3;0.15190125;0.16404724;0.14115906 +9801;0;-0.3152008;5.6299133;9.881073 +9801;12;0.21736318;0.07522964;0.2622217;0.9371945 +9801;3;0.13908386;0.17749023;0.13809204 +9803;0;-0.3152008;5.5966644;9.9049225 +9803;1;-0.25590405;4.4101505;8.759064 +9803;3;0.124420166;0.18664551;0.13381958 +9805;4;9.942627;2.558899;-66.89758 +9806;6;-0.21794972;-0.5140991;0.031811908 +9806;7;0.9724668;-0.18827777;0.1373307;0.0;0.23138976;0.8501369;-0.4729968;0.0;-0.027695103 +9806;0;-0.36297607;5.5301514;9.957382 +9806;3;0.10731506;0.19581604;0.13076782 +9806;12;0.21762921;0.07564505;0.2625951;0.9369948 +9808;1;-0.26121375;4.415627;8.756147 +9808;2;0.087071314;-1.2293649;-1.0966387; +9808;0;-0.38208008;5.47789;9.976471 +9808;3;0.091430664;0.2013092;0.12710571 +9809;0;-0.42507935;5.4018707;10.009842 +9810;12;0.21780832;0.07609124;0.26296788;0.93681246 +9810;3;0.07493591;0.20375061;0.12161255 +9810;5;999.5927 +9813;0;-0.4298401;5.3353577;10.043243 +9815;1;-0.26721677;4.419562;8.753981 +9816;12;0.21802592;0.076165624;0.2617153;0.9371066 +9816;3;0.056610107;0.20436096;0.116104126 +9816;4;11.743164;1.3595581;-67.49725 +9816;6;-0.26152524;-0.48794594;0.042772826 +9816;7;0.9599302;-0.22838032;0.16240841;0.0;0.2776824;0.8532626;-0.44140145;0.0;-0.037769616 +9816;0;-0.41552734;5.2736053;10.090927 +9816;3;0.040115356;0.20375061;0.11061096 +9817;1;-0.27350697;4.4218683;8.752622 +9819;0;-0.44418335;5.211838;10.110016 +9819;3;0.023620605;0.1976471;0.103881836 +9819;12;0.21802995;0.07660289;0.26206565;0.9369721 +9819;0;-0.46806335;5.1263123;10.119553 +9819;3;0.009567261;0.19093323;0.09777832 +9822;1;-0.2796836;4.4226527;8.752029 +9822;0;-0.45851135;5.040802;10.176773 +9822;3;-0.0026397705;0.1817627;0.09106445 +9824;4;9.643555;2.558899;-67.196655 +9824;6;-0.2020968;-0.45949683;0.04502424 +9824;7;0.97464836;-0.17990395;0.13302326;0.0;0.22007558;0.8780346;-0.4249964;0.0;-0.0403405 +9824;0;-0.46328735;4.950531;10.152924 +9824;3;-0.015472412;0.17198181;0.08433533 +9824;12;0.21795914;0.0770007;0.26238936;0.9368653 +9826;0;-0.46328735;4.8982697;10.143387 +9826;1;-0.28543884;4.4221945;8.752076 +9826;2;0.22301929;-0.7466936;-1.3448572; +9827;3;-0.025238037;0.16160583;0.07701111 +9828;0;-0.45373535;4.803253;10.148163 +9829;12;0.21783349;0.07734927;0.26268166;0.9367839 +9829;3;-0.031341553;0.1499939;0.06967163 +9831;0;-0.41552734;4.7747498;10.186325 +9831;1;-0.29050905;4.420784;8.752622 +9831;3;-0.037460327;0.14205933;0.063568115 +9838;4;10.693359;1.05896;-67.796326 +9838;6;-0.25918067;-0.4380099;0.040770058 +9838;7;0.96136653;-0.2320944;0.14800891;0.0;0.2727857;0.8753509;-0.3991853;0.0;-0.036911037 +9838;0;-0.38208008;4.684494;10.172012 +9838;3;-0.041122437;0.1341095;0.05807495 +9838;0;-0.35820007;4.622711;10.138611 +9838;3;-0.044784546;0.12432861;0.05380249 +9838;12;0.21781725;0.077211514;0.26111054;0.9372382 +9838;1;-0.2950822;4.4187565;8.753492 +9838;0;-0.32476807;4.5419617;10.138611 +9838;3;-0.047225952;0.11517334;0.04585266 +9839;12;0.21763396;0.07745589;0.26132995;0.93719935 +9842;17;1;38dead6d7725;-509;922;-51; +9843;17;1;38dead6d60ff;2111;636;-53; +9844;17;1;1c1bb5efa29a;11028;1195;-69; +9845;17;1;1c1bb5ecd182;7475;4970;-69; +9845;0;-0.28652954;4.4516907;10.090927 +9845;3;-0.04600525;0.10662842;0.0415802 +9845;1;-0.29901165;4.41631;8.754594 +9845;4;10.693359;0.7598877;-66.596985 +9845;6;-0.3077946;-0.41532764;0.02838714 +9845;7;0.9491505;-0.27720144;0.14924048;0.0;0.31374976;0.87198365;-0.3757735;0.0;-0.025970297 +9845;0;-0.25309753;4.389923;10.076614 +9845;3;-0.043563843;0.0993042;0.034866333 +9845;12;0.21744125;0.077652365;0.2615165;0.9371759 +9845;0;-0.21487427;4.3329163;10.08139 +9845;1;-0.30239442;4.413783;8.755752 +9847;3;-0.041732788;0.093185425;0.026916504 +9847;0;-0.18144226;4.2473907;10.10524 +9847;2;0.096022904;-0.17436504;-1.3648844; +9848;12;0.21725473;0.07781121;0.26166946;0.9371633 +9849;3;-0.03805542;0.089523315;0.020202637 +9849;5;999.5927 +9855;1;-0.3055037;4.4113045;8.756892 +9855;0;-0.13366699;4.223633;10.114777 +9855;3;-0.031341553;0.09013367;0.0110321045 +9855;4;10.392761;1.9592285;-67.49725 +9855;6;-0.3285687;-0.39553;0.013214252 +9856;7;0.94477963;-0.29777464;0.1368272;0.0;0.32747936;0.87342787;-0.36039007;0.0;-0.012193657 +9856;0;-0.13366699;4.1618805;10.086151 +9856;3;-0.023406982;0.09135437;0.006149292 +9856;12;0.21723188;0.07750954;0.25989068;0.9376884 +9856;1;-0.30883023;4.409259;8.757807 +9856;0;-0.06678772;4.1286316;10.05278 +9856;3;-0.013626099;0.09196472;-0.0018005371 +9857;0;-0.07156372;4.0621033;10.005081 +9857;12;0.21708114;0.07765688;0.25996977;0.9376891 +9857;3;-8.087158E-4;0.09440613;-0.007904053 +9859;0;-0.052444458;4.024109;9.952621 +9859;1;-0.31249225;4.407974;8.758323 +9859;3;0.013244629;0.09562683;-0.011566162 +9861;4;11.442566;0.30975342;-67.796326 +9861;6;-0.40690428;-0.38422576;0.005269363 +9862;7;0.917556;-0.3669124;0.1531874;0.0;0.3975767;0.8513925;-0.3421456;0.0;-0.0048851455 +9862;0;-0.08111572;3.9955902;9.971695 +9862;3;0.027893066;0.097457886;-0.015838623 +9862;12;0.21696942;0.07782771;0.26001653;0.9376879 +9864;0;-0.06678772;3.952835;9.952621 +9864;1;-0.31649226;4.4077783;8.758279 +9864;2;-0.15657121;0.29742956;-1.2643967; +9864;3;0.042556763;0.1005249;-0.020721436 +9867;0;-0.07635498;3.9195862;9.89061 +9868;12;0.21691403;0.078026764;0.2600402;0.9376776 +9868;3;0.059051514;0.104782104;-0.023788452 +9868;0;-0.08111572;3.8910675;9.86676 +9869;1;-0.3209304;4.408798;8.757603 +9869;3;0.07493591;0.10662842;-0.025604248 +9872;4;10.8428955;1.5090942;-67.196655 +9872;6;-0.37571517;-0.3756244;0.008220925 +9872;7;0.9291074;-0.34135452;0.14225526;0.0;0.36973095;0.86538756;-0.3382357;0.0;-0.0076476657 +9872;12;0.21706244;0.07785462;0.25827694;0.9381448 +9873;0;-0.12890625;3.872055;9.814301 +9873;3;0.088378906;0.11029053;-0.02684021 +9873;0;-0.147995;3.8768158;9.785706 +9878;1;-0.32576615;4.411103;8.756265 +9878;3;0.10243225;0.11395264;-0.025604248 +9879;0;-0.143219;3.8530579;9.75708 +9879;12;0.21713427;0.07812806;0.25826642;0.93810827 +9879;3;0.12075806;0.1194458;-0.023162842 +9879;1;-0.33093882;4.414674;8.754271 +9879;0;-0.19099426;3.8768158;9.728455 +9879;3;0.13723755;0.121292114;-0.023162842 +9880;4;10.542297;2.558899;-65.69672 +9881;6;-0.33276984;-0.3791487;0.019630017 +9881;7;0.94258577;-0.3034626;0.13943604;0.0;0.3334658;0.8780172;-0.3433455;0.0;-0.018234722 +9881;0;-0.23876953;3.9100647;9.647385 +9881;3;0.15008545;0.12495422;-0.020721436 +9881;12;0.21727069;0.07844247;0.2582576;0.9380529 +9883;0;-0.23399353;3.9100647;9.623535 +9883;1;-0.3364122;4.419678;8.751536 +9883;2;-0.1204516;0.5225382;-1.0062971; +9884;3;0.16351318;0.12861633;-0.019500732 +9885;0;-0.26264954;3.9433289;9.556763 +9886;12;0.21747819;0.078793034;0.25825083;0.9379774 +9886;3;0.17573547;0.12983704;-0.015838623 +9887;5;999.5927 +9888;0;-0.28652954;3.9480896;9.494766 +9888;1;-0.342094;4.4258513;8.748195 +9888;3;0.1867218;0.12922668;-0.016448975 +9890;4;11.29303;2.2598267;-66.89758 +9890;6;-0.3209865;-0.39390594;0.030168474 +9890;7;0.9448404;-0.2913407;0.14965759;0.0;0.32634485;0.8762532;-0.35451302;0.0;-0.027853854 +9890;0;-0.32476807;3.9765778;9.43277 +9891;3;0.19589233;0.12678528;-0.0152282715 +9891;12;0.21788333;0.0787797;0.2565481;0.9383516 +9893;0;-0.3343048;3.9908295;9.38031 +9893;1;-0.34775215;4.433019;8.744343 +9893;3;0.20321655;0.12188721;-0.017059326 +9895;0;-0.3534088;3.9908295;9.275375 +9895;12;0.21820295;0.07917557;0.25654677;0.93824446 +9895;3;0.21238708;0.11456299;-0.019500732 +9897;0;-0.34864807;4.0811005;9.261063 +9897;1;-0.35311016;4.4410334;8.74006 +9898;3;0.2172699;0.105407715;-0.021347046 +9900;4;11.743164;0.30975342;-67.49725 +9900;6;-0.32112214;-0.41480932;0.03762889 +9900;7;0.94342464;-0.2888638;0.16281128;0.0;0.32979453;0.8684101;-0.37026924;0.0;-0.034429576 +9900;0;-0.36297607;4.0716095;9.179993 +9900;3;0.22215271;0.097457886;-0.024383545 +9901;12;0.2185726;0.07956674;0.25653076;0.93812966 +9902;0;-0.3343048;4.109619;9.122772 +9902;1;-0.3578211;4.449582;8.735519 +9903;2;0.028669834;0.42885876;-0.5967531; +9903;3;0.22703552;0.08647156;-0.028060913 +9905;0;-0.3438568;4.1571198;9.079834 +9905;12;0.21898007;0.07992857;0.25649324;0.9380141 +9905;3;0.2319336;0.073028564;-0.035995483 +9907;0;-0.3390808;4.1476135;9.041687 +9907;1;-0.36180675;4.458621;8.730744 +9908;3;0.23620605;0.06324768;-0.042099 +9909;4;11.143494;0.7598877;-67.04712 +9909;6;-0.29106936;-0.42981648;0.037484374 +9909;7;0.95278317;-0.26087397;0.15539965;0.0;0.3017345;0.8708056;-0.3881414;0.0;-0.034066897 +9910;0;-0.30085754;4.1381226;9.027374 +9910;3;0.23925781;0.05104065;-0.048202515 +9910;12;0.2195609;0.07986036;0.25475255;0.9383585 +9912;0;-0.26742554;4.166626;8.970154 +9912;1;-0.36504707;4.4679947;8.725817 +9912;3;0.24232483;0.040649414;-0.055541992 +9914;0;-0.23876953;4.1618805;8.903381 +9915;12;0.2200361;0.080141276;0.25463915;0.938254 +9915;3;0.24598694;0.030273438;-0.0592041 +9917;0;-0.22921753;4.142868;8.836609 +9917;1;-0.36757576;4.4776635;8.720753 +9917;3;0.24842834;0.018051147;-0.06347656 +9919;4;11.593628;1.5090942;-64.497375 +9919;6;-0.33103445;-0.438273;0.02593372 +9919;7;0.941812;-0.2943024;0.16240798;0.0;0.3353192;0.85632414;-0.39277253;0.0;-0.023479989 +9920;0;-0.22442627;4.176132;8.81752 +9920;12;0.22053804;0.08038305;0.25448573;0.93815696 +9920;3;0.25453186;0.007659912;-0.06959534 +9922;1;-0.36933506;4.487665;8.715535 +9922;0;-0.21009827;4.185623;8.798447 +9922;2;-0.040014774;0.32249928;-0.21358204; +9922;3;0.25942993;-0.002090454;-0.07447815 +9924;0;-0.17666626;4.1571198;8.741211 +9924;12;0.22106965;0.08058193;0.25429866;0.9380655 +9925;3;0.2673645;-0.013092041;-0.07752991 +9925;5;999.5927 +9927;0;-0.147995;4.1713715;8.769836 +9928;1;-0.37037084;4.4981394;8.710091 +9928;3;0.27407837;-0.019821167;-0.08547974 +9929;4;11.593628;1.2084961;-66.89758 +9929;6;-0.33659187;-0.4439232;0.016873855 +9929;7;0.941358;-0.29826006;0.1577532;0.0;0.33706522;0.85239834;-0.39975503;0.0;-0.015237611 +9929;0;-0.07156372;4.1618805;8.769836 +9929;3;0.28141785;-0.02470398;-0.088531494 +9930;12;0.22177084;0.08036582;0.252492;0.9384066 +9931;0;-0.042907715;4.1618805;8.70784 +9932;1;-0.37088948;4.509177;8.704359 +9932;3;0.29057312;-0.025924683;-0.09524536 +9934;0;7.6293945E-5;4.133362;8.674438 +9934;3;0.29911804;-0.023483276;-0.09829712 +9934;12;0.22237912;0.080500886;0.25223783;0.9383194 +9936;0;0.028747559;4.1143646;8.6410675 +9936;1;-0.37142247;4.52089;8.698258 +9936;3;0.30523682;-0.019821167;-0.09829712 +9939;4;10.8428955;1.5090942;-66.89758 +9939;6;-0.3522233;-0.44437656;-0.0033268405 +9939;7;0.9390963;-0.3114801;0.14518414;0.0;0.34364122;0.8474494;-0.40464848;0.0;0.0030037283 +9939;0;0.04786682;4.0716095;8.579071 +9939;3;0.31072998;-0.016159058;-0.09890747 +9939;12;0.22302423;0.080641605;0.25195804;0.93822944 +9941;1;-0.3722188;4.5330987;8.691869 +9941;0;0.066970825;4.057358;8.574295 +9942;2;-0.27633247;0.39979935;0.014419556; +9942;3;0.31500244;-0.013702393;-0.100738525 +9944;0;0.124298096;4.009842;8.569519 +9944;12;0.22369207;0.08080135;0.25167617;0.9381322 +9944;3;0.31806946;-0.00881958;-0.100738525 +9947;1;-0.37324756;4.5455856;8.6853 +9947;0;0.1290741;4.0145874;8.540909 +9948;3;0.32356262;-8.69751E-4;-0.100128174 +9950;12;0.22449505;0.08063435;0.24995942;0.93841386 +9950;4;12.042236;1.6586304;-64.64691 +9950;6;-0.422983;-0.43935147;-0.015111305 +9951;7;0.9144028;-0.37149793;0.16080084;0.0;0.40457457;0.8252663;-0.39402407;0.0;0.013675628 +9951;0;0.20072937;4.028839;8.512299 +9951;3;0.32844543;0.012542725;-0.10134888 +9951;0;0.22940063;4.0383606;8.435989 +9952;1;-0.37486354;4.558511;8.678454 +9952;3;0.33517456;0.024765015;-0.09951782 +9954;0;0.22940063;4.009842;8.38353 +9954;3;0.34310913;0.0357666;-0.09951782 +9954;12;0.2251909;0.080850825;0.24968398;0.9383018 +9956;0;0.25805664;3.9955902;8.354904 +9956;1;-0.37742612;4.5719748;8.671257 +9957;3;0.3510437;0.049819946;-0.09951782 +9958;4;10.8428955;1.2084961;-66.89758 +9958;6;-0.4088242;-0.44589728;-0.03087703 +9958;7;0.9224443;-0.35866177;0.14303248;0.0;0.3851243;0.8278708;-0.40781033;0.0;0.027853573 +9958;0;0.3106079;3.962326;8.283371 +9958;3;0.35899353;0.06324768;-0.100738525 +9959;12;0.22590117;0.081125215;0.24942285;0.9381768 +9962;1;-0.38096684;4.586071;8.663655 +9962;0;0.34403992;3.9575806;8.269058 +9962;3;0.36387634;0.077301025;-0.10197449 +9962;2;-0.55221796;0.5804167;0.24914074; +9963;0;0.36314392;3.9575806;8.249985 +9963;3;0.3693695;0.093185425;-0.100738525 +9968;5;999.5834 +9968;12;0.22663105;0.08146346;0.24917257;0.93803793 +9968;1;-0.3856461;4.6006494;8.655716 +9969;0;0.3965912;3.9908295;8.230911 +9969;3;0.37548828;0.10723877;-0.10134888 +9969;4;10.8428955;0.45928955;-65.69672 +9969;6;-0.4524171;-0.4510064;-0.04814591 +9969;7;0.90752095;-0.39343056;0.14703104;0.0;0.41776735;0.80946183;-0.412604;0.0;0.04331501 +9969;0;0.3965912;3.9813385;8.164139 +9969;3;0.37854004;0.121292114;-0.10197449 +9970;12;0.22750944;0.08147746;0.24731153;0.9383165 +9970;1;-0.39145178;4.6156845;8.647447 +9970;0;0.46347046;3.9813385;8.130753 +9970;3;0.38342285;0.1353302;-0.105026245 +9973;0;0.4300232;3.9813385;8.09259 +9974;12;0.2282576;0.081952654;0.24708635;0.93815285 +9974;3;0.38464355;0.1499939;-0.10624695 +9975;1;-0.39857307;4.6311274;8.638861 +9975;0;0.4156952;4.0145874;8.049683 +9975;3;0.38710022;0.16221619;-0.10990906 +9978;4;11.29303;-0.74157715;-66.89758 +9978;6;-0.47185484;-0.46209642;-0.05159536 +9978;7;0.89999235;-0.4068671;0.15643859;0.0;0.43345445;0.7973072;-0.4200221;0.0;0.04616354 +9979;0;0.43959045;3.9813385;7.997223 +9979;3;0.38832092;0.17138672;-0.11112976 +9979;12;0.22901042;0.0825034;0.24686436;0.9379795 +9981;2;-0.7705122;0.6638441;0.52227116; +9981;1;-0.4067085;4.6465864;8.630176 +9981;0;0.43959045;3.952835;7.978134 +9981;3;0.3876953;0.17993164;-0.11174011 +9982;0;0.47302246;3.9718475;7.9542847 +9983;12;0.22975025;0.08310614;0.24664603;0.9378028 +9983;3;0.3876953;0.18908691;-0.112350464 +9984;0;0.46347046;3.9908295;7.9304504 +9985;3;0.3852539;0.19520569;-0.11357117 +9985;1;-0.41555277;4.6620455;8.621413 +9987;4;12.643433;0.45928955;-67.64679 +9987;6;-0.49908355;-0.46554294;-0.058375485 +9987;7;0.8890612;-0.42768523;0.16326502;0.0;0.45481008;0.7845807;-0.4214034;0.0;0.052133426 +9988;0;0.50645447;4.019348;7.906601 +9988;3;0.3828125;0.2000885;-0.112960815 +9990;12;0.23060216;0.08340715;0.24505104;0.9379851 +9990;0;0.5016937;4.0383606;7.882736 +9990;1;-0.42489862;4.6773963;8.6126375 +9990;3;0.37731934;0.20619202;-0.112960815 +9992;12;0.23132077;0.08407617;0.2448446;0.9378023 +9992;0;0.49690247;4.095352;7.8731995 +9992;3;0.37182617;0.21047974;-0.11418152 +9994;0;0.5016937;4.0763702;7.9161377 +9994;3;0.363266;0.2135315;-0.11479187 +9994;1;-0.43468857;4.6923833;8.603992 +9996;4;11.442566;-0.29144287;-66.29639 +9996;6;-0.4846441;-0.47471622;-0.06329143 +9996;7;0.8965383;-0.4143761;0.15656154;0.0;0.43937957;0.7869973;-0.433106;0.0;0.056255244 +9997;0;0.53034973;4.1048584;7.882736 +9997;3;0.35350037;0.21658325;-0.11540222 +9997;12;0.23201145;0.0847621;0.24464555;0.9376218 +9999;1;-0.44474486;4.7067122;8.595648 +9999;2;-0.89103794;0.6527934;0.7009392; +9999;0;0.50645447;4.11911;7.8398285 +10000;3;0.34066772;0.21963501;-0.116622925 +10001;0;0.5160217;4.085861;7.887512 +10001;12;0.232662;0.085454345;0.24445;0.93744886 +10002;3;0.32722473;0.21963501;-0.116622925 +10002;5;999.5834 +10003;0;0.48257446;4.1381226;7.858902 +10003;1;-0.45511314;4.7200727;8.587776 +10004;3;0.31134033;0.22268677;-0.11601257 +10007;4;10.542297;0.45928955;-65.24658 +10007;6;-0.4455902;-0.4838877;-0.06132782 +10007;7;0.912949;-0.38150972;0.14482532;0.0;0.404451;0.79875946;-0.44542387;0.0;0.054252923 +10007;0;0.48735046;4.1713715;7.897049 +10007;3;0.29545593;0.22573853;-0.11540222 +10008;12;0.23341288;0.08572449;0.24255206;0.93773043 +10009;0;0.47302246;4.1951294;7.935196 +10009;1;-0.46559414;4.732117;8.580583 +10009;3;0.27653503;0.23002625;-0.11723328 +10012;0;0.49690247;4.1951294;7.939972 +10012;3;0.26065063;0.233078;-0.11601257 +10012;12;0.23393622;0.08640579;0.24237113;0.93758416 +10013;1;-0.47636777;4.7427096;8.5741415 +10014;0;0.48735046;4.2283936;7.9685974 +10014;3;0.23864746;0.23735046;-0.11540222 +10015;4;11.593628;-0.74157715;-65.69672 +10015;6;-0.4831095;-0.4870794;-0.061082795 +10015;7;0.89717585;-0.41051129;0.16296019;0.0;0.43836674;0.78256786;-0.4420657;0.0;0.053945523 +10021;0;0.46824646;4.2711487;8.001968 +10021;3;0.2184906;0.23979187;-0.11601257 +10021;12;0.23437753;0.087084286;0.2421993;0.9374557 +10021;1;-0.48745352;4.751647;8.568567 +10021;0;0.4443512;4.2711487;8.083054 +10021;2;-0.9213395;0.5557089;0.62541294; +10021;3;0.19711304;0.24467468;-0.112350464 +10021;0;0.42526245;4.299652;8.125992 +10022;3;0.17756653;0.2489624;-0.10990906 +10022;12;0.2347231;0.08775625;0.2420412;0.9373473 +10024;1;-0.49881163;4.758881;8.563898 +10024;0;0.42526245;4.366165;8.192749 +10024;3;0.15434265;0.25445557;-0.1068573 +10025;4;12.193298;0.45928955;-66.89758 +10025;6;-0.4610208;-0.4890854;-0.051860634 +10025;7;0.905229;-0.39270812;0.16229823;0.0;0.4224528;0.7906014;-0.4432639;0.0;0.045760125 +10025;0;0.38703918;4.347168;8.254761 +10026;3;0.12930298;0.2624054;-0.10319519 +10026;12;0.23511049;0.088045776;0.24041204;0.93764234 +10027;0;0.3106079;4.3614197;8.283371 +10027;1;-0.5106059;4.7642026;8.560243 +10028;3;0.10670471;0.2697296;-0.100738525 +10030;12;0.23525092;0.088713266;0.24030536;0.9375715 +10031;0;0.26283264;4.3851776;8.33107 +10031;3;0.08288574;0.2782898;-0.09585571 +10032;0;0.22940063;4.389923;8.38353 +10032;1;-0.52301776;4.767582;8.557612 +10032;3;0.058441162;0.28866577;-0.09158325 +10034;17;1;38dead6d7725;-594;823;-50; +10035;17;1;38dead6d60ff;1716;1364;-57; +10035;17;1;1c1bb5efa29a;6199;5088;-69; +10036;17;1;1c1bb5ecd182;5997;3069;-68; +10036;4;10.392761;-0.29144287;-65.097046 +10037;6;-0.38784978;-0.4822238;-0.027356423 +10037;7;0.9301754;-0.33507115;0.15000288;0.0;0.36631444;0.8201601;-0.43948942;0.0;0.024233833 +10037;0;0.19117737;4.3994293;8.416901 +10037;12;0.23527656;0.08938817;0.24023157;0.93751997 +10037;3;0.03340149;0.2984314;-0.08792114 +10037;0;0.16729736;4.366165;8.445526 +10037;1;-0.5362022;4.768931;8.556045 +10037;2;-0.7905612;0.4037795;0.25495052; +10038;3;0.007751465;0.30638123;-0.08363342 +10039;12;0.23517878;0.09008096;0.24019729;0.93748695 +10040;0;0.09085083;4.347168;8.512299 +10040;3;-0.018508911;0.3149414;-0.07814026 +10040;5;999.5834 +10041;0;0.057418823;4.3376617;8.521835 +10041;1;-0.5499256;4.768088;8.555643 +10042;3;-0.04600525;0.32165527;-0.07142639 +10044;4;13.542175;-0.74157715;-66.89758 +10044;6;-0.4410317;-0.47081694;-0.0067377454 +10044;7;0.90559584;-0.38042808;0.18753824;0.0;0.42409915;0.80592084;-0.41307572;0.0;0.0060046203 +10044;0;-0.009475708;4.3281555;8.593384 +10044;3;-0.07472229;0.3289795;-0.06593323 +10045;12;0.2350749;0.09046175;0.23894937;0.9377952 +10047;0;-0.028564453;4.2711487;8.660141 +10047;1;-0.564082;4.7649107;8.556491 +10047;3;-0.10771179;0.335083;-0.0592041 +10048;0;-0.095443726;4.2283936;8.664902 +10049;12;0.2347173;0.0911539;0.2390016;0.93780434 +10049;3;-0.14007568;0.33692932;-0.053710938 +10051;0;-0.143219;4.190384;8.703064 +10051;1;-0.5785198;4.7590327;8.558799 +10056;3;-0.17367554;0.33692932;-0.049423218 +10056;4;13.243103;-1.1901855;-66.44745 +10056;6;-0.41143024;-0.4486723;0.016454672 +10056;7;0.91357136;-0.360338;0.18853079;0.0;0.40640813;0.82583314;-0.39093733;0.0;-0.014825383 +10057;0;-0.15278625;4.1523743;8.784149 +10057;3;-0.20788574;0.33448792;-0.043930054 +10057;12;0.23420857;0.09182848;0.23910038;0.9378406 +10057;2;-0.4851243;0.50350475;-0.092502594; +10057;1;-0.5928041;4.7503023;8.562671 +10057;0;-0.22921753;4.123871;8.822296 +10057;3;-0.24087524;0.32958984;-0.03843689 +10058;0;-0.25787354;4.028839;8.879532 +10058;12;0.23354584;0.09246017;0.23923478;0.93790954 +10059;3;-0.2732544;0.32287598;-0.031723022 +10060;0;-0.3390808;4.043091;8.941528 +10060;1;-0.60656935;4.738722;8.568121 +10061;3;-0.3056183;0.3118744;-0.02684021 +10063;4;12.193298;-0.74157715;-66.44745 +10063;6;-0.34550905;-0.42438737;0.037903856 +10063;7;0.9349428;-0.30863217;0.17500913;0.0;0.35311395;0.8574368;-0.3743164;0.0;-0.03453318 +10063;0;-0.37252808;3.9480896;9.046463 +10063;3;-0.33555603;0.299057;-0.023788452 +10064;12;0.23288402;0.09265277;0.2378948;0.93839574 +10065;0;-0.45373535;3.9100647;9.041687 +10065;1;-0.61940426;4.7243834;8.575117 +10066;3;-0.3605957;0.2837677;-0.01828003 +10068;0;-0.48239136;3.8103027;9.098923 +10068;12;0.23193999;0.093136385;0.23808658;0.93853307 +10068;3;-0.38504028;0.2666626;-0.017684937 +10070;0;-0.5445099;3.772293;9.170456 +10070;1;-0.6309599;4.707733;8.583428 +10071;3;-0.4082489;0.2501831;-0.012786865 +10072;4;11.743164;0.30975342;-67.04712 +10072;6;-0.2899109;-0.38963616;0.059306905 +10072;7;0.95014834;-0.2644404;0.16519481;0.0;0.30693936;0.88644457;-0.34641647;0.0;-0.05482954 +10073;0;-0.5301666;3.7152863;9.242004 +10073;3;-0.42718506;0.23124695;-0.008514404 +10073;12;0.23089059;0.09351766;0.23828915;0.9387024 +10075;0;-0.5636139;3.6772919;9.304001 +10075;1;-0.64096725;4.6890974;8.592882 +10075;2;-0.15472305;0.8292031;-0.49635792; +10075;3;-0.44551086;0.21414185;-0.0042419434 +10077;0;-0.57315063;3.639267;9.385086 +10077;12;0.22975633;0.093789786;0.23849905;0.93890035 +10078;3;-0.4583435;0.19459534;0.001876831 +10078;5;999.5834 +10080;1;-0.64931595;4.668951;8.60322 +10080;0;-0.60661316;3.6012573;9.404144 +10080;3;-0.4705658;0.17138672;0.007980347 +10082;4;13.842773;0.45928955;-66.89758 +10082;6;-0.36911;-0.36502388;0.06441563 +10082;7;0.9224242;-0.33701524;0.18855871;0.0;0.38146824;0.87120146;-0.3090145;0.0;-0.06013002 +10082;0;-0.6018219;3.5394897;9.4470825 +10082;3;-0.47789;0.1499939;0.012252808 +10083;12;0.2286924;0.09363722;0.23741923;0.93944883 +10084;0;-0.5922699;3.4682465;9.4804535 +10085;1;-0.65562147;4.6477685;8.614204 +10085;3;-0.48216248;0.12556458;0.018981934 +10087;0;-0.59706116;3.4017181;9.518616 +10088;12;0.22747159;0.093682155;0.23764424;0.9396838 +10088;3;-0.48156738;0.101745605;0.022644043 +10089;0;-0.63526917;3.3542175;9.518616 +10089;1;-0.6597773;4.6261454;8.625519 +10090;3;-0.47483826;0.07546997;0.027526855 +10091;4;12.942505;0.1586914;-66.89758 +10092;6;-0.35849646;-0.338102;0.06664083 +10092;7;0.9265969;-0.3310027;0.17848115;0.0;0.37077186;0.88341063;-0.28655547;0.0;-0.0628215 +10092;0;-0.6113739;3.3161926;9.54245 +10092;12;0.22625874;0.09361043;0.23786889;0.9399268 +10093;3;-0.46383667;0.049209595;0.03363037 +10094;0;-0.6113739;3.3304443;9.547226 +10094;1;-0.66159457;4.605003;8.636686 +10094;2;-0.015007138;1.1556973;-0.844347; +10095;3;-0.44673157;0.027832031;0.039749146 +10097;0;-0.59706116;3.3209534;9.642624 +10097;12;0.22510497;0.09342337;0.2380849;0.94016784 +10097;3;-0.4241333;0.007659912;0.047683716 +10099;0;-0.5397186;3.3019562;9.656921 +10099;1;-0.6612186;4.5852537;8.647216 +10099;3;-0.39663696;-0.00881958;0.055633545 +10101;4;13.243103;0.9094238;-66.44745 +10101;6;-0.39952114;-0.32898715;0.055831224 +10101;7;0.9127992;-0.3681164;0.17688443;0.0;0.40498012;0.8718409;-0.27547136;0.0;-0.052809548 +10102;0;-0.41073608;3.2971954;9.666458 +10102;3;-0.36549377;-0.021652222;0.06417847 +10102;12;0.2241898;0.0928117;0.23692866;0.940739 +10103;0;-0.47763062;3.29245;9.633072 +10104;1;-0.6589648;4.5677977;8.656622 +10104;3;-0.33311462;-0.02897644;0.07333374 +10106;0;-0.5206146;3.3019562;9.590164 +10107;12;0.22328566;0.092479914;0.23714966;0.940931 +10107;3;-0.296463;-0.03692627;0.08067322 +10109;1;-0.6556865;4.553107;8.664607 +10109;0;-0.5062866;3.3114624;9.54245 +10109;3;-0.2610321;-0.042419434;0.08496094 +10111;4;12.042236;0.7598877;-67.04712 +10111;6;-0.3551;-0.33358634;0.05300655 +10112;7;0.9302632;-0.32851774;0.16335994;0.0;0.3634615;0.88592505;-0.28815365;0.0;-0.050061066 +10112;0;-0.5015106;3.3209534;9.504303 +10112;12;0.22254291;0.09213698;0.23738578;0.941081 +10113;3;-0.22621155;-0.04425049;0.09106445 +10113;1;-0.65176016;4.5415273;8.670978 +10114;2;-0.10130775;1.2452307;-0.9224615; +10114;0;-0.5110626;3.3114624;9.48999 +10115;3;-0.19078064;-0.042419434;0.10144043 +10118;12;0.22197452;0.09180831;0.23762365;0.9411873 +10118;0;-0.49671936;3.3304443;9.456619 +10118;3;-0.15596008;-0.035705566;0.11488342 +10118;5;999.59015 +10132;1;-0.6475886;4.5330086;8.675746 +10132;12;0.2217102;0.091184855;0.2364707;0.9416006 +10133;1;-0.64359826;4.5274663;8.678937 +10133;0;-0.5253906;3.4112244;9.451843 +10133;3;-0.12359619;-0.025314331;0.12771606 +10133;4;12.792969;1.6586304;-66.29639 +10133;6;-0.35888502;-0.3458649;0.05552891 +10133;7;0.9282374;-0.3304315;0.17085166;0.0;0.36830556;0.8808443;-0.2974291;0.0;-0.052213784 +10133;0;-0.44418335;3.4634857;9.361221 +10133;3;-0.092437744;-0.013092041;0.13993835 +10133;0;-0.4298401;3.4919891;9.270599 +10133;3;-0.06311035;0.0040130615;0.14970398 +10133;12;0.22145648;0.09096688;0.23679447;0.94159997 +10133;0;-0.41073608;3.5442505;9.170456 +10133;3;-0.036239624;0.018051147;0.15704346 +10133;0;-0.38685608;3.5774994;9.089371 +10133;1;-0.64040315;4.5245843;8.6806755 +10133;12;0.22132814;0.090841055;0.23716557;0.9415489 +10133;3;-0.011795044;0.030273438;0.16314697 +10133;4;13.392639;1.6586304;-65.84625 +10133;6;-0.38881338;-0.37466136;0.0425357 +10133;7;0.9186233;-0.35279372;0.1779545;0.0;0.3931478;0.86116886;-0.32221586;0.0;-0.03957313 +10133;0;-0.3534088;3.6440125;9.027374 +10133;3;0.009567261;0.04309082;0.17108154 +10134;1;-0.63790953;4.523946;8.681191 +10134;0;-0.3343048;3.6867828;8.960602 +10134;3;0.026672363;0.049819946;0.175354 +10134;2;-0.17358786;1.0191479;-0.5466194; +10135;0;-0.3152008;3.753296;8.884293 +10135;12;0.22130474;0.09079489;0.23757055;0.94145674 +10136;3;0.043777466;0.05836487;0.18208313 +10137;1;-0.63583773;4.5250444;8.680772 +10137;0;-0.29130554;3.7913055;8.803207 +10137;3;0.05355835;0.06263733;0.18696594 +10140;4;12.643433;1.5090942;-66.89758 +10140;6;-0.35655236;-0.40646735;0.03307877 +10140;7;0.93202907;-0.32060644;0.1689182;0.0;0.36110806;0.8607535;-0.3587541;0.0;-0.03037808 +10140;0;-0.26264954;3.8483124;8.731674 +10141;3;0.060272217;0.0663147;0.1912384 +10141;12;0.22150074;0.09046458;0.23656626;0.9416953 +10142;0;-0.2817688;3.9005737;8.612442 +10142;3;0.06333923;0.06324768;0.19367981 +10142;1;-0.6339344;4.527276;8.679747 +10148;12;0.22161196;0.09050902;0.23702198;0.94155025 +10148;0;-0.2960968;3.9480896;8.564758 +10148;3;0.06333923;0.061416626;0.19674683 +10148;0;-0.29130554;3.9908295;8.474136 +10149;1;-0.6318433;4.5299764;8.678491 +10149;3;0.06210327;0.051651;0.19918823 +10150;4;12.792969;0.7598877;-67.796326 +10151;6;-0.33820534;-0.43990487;0.034362305 +10151;7;0.93794054;-0.3002052;0.17362183;0.0;0.34540042;0.85353726;-0.39009342;0.0;-0.031084629 +10151;0;-0.3104248;4.0145874;8.44075 +10151;3;0.059051514;0.043701172;0.2034607 +10151;12;0.22174591;0.09055328;0.23748808;0.941397 +10152;0;-0.2722168;4.0478516;8.369217 +10153;1;-0.62901133;4.532707;8.677271 +10153;2;-0.2982933;0.6359596;0.062152863; +10153;3;0.052947998;0.0357666;0.2071228 +10154;0;-0.30085754;4.123871;8.302444 +10155;12;0.22188914;0.090562455;0.23796023;0.9412432 +10155;3;0.047454834;0.030273438;0.20895386 +10155;5;999.59015 +10157;0;-0.25787354;4.1951294;8.2595215 +10157;1;-0.62541103;4.535239;8.676208 +10157;3;0.040725708;0.025375366;0.20956421 +10159;4;12.792969;1.05896;-65.84625 +10159;6;-0.33410385;-0.46976238;0.031211227 +10159;7;0.9396122;-0.29240078;0.17785051;0.0;0.3411081;0.84237033;-0.41720214;0.0;-0.02782578 +10160;0;-0.24832153;4.252136;8.2070465 +10160;3;0.032791138;0.018661499;0.20773315 +10160;12;0.22215591;0.09021186;0.23709127;0.94143313 +10162;0;-0.21487427;4.323395;8.183212 +10162;3;0.023620605;0.016220093;0.20651245 +10162;1;-0.62127453;4.5374074;8.675371 +10166;0;-0.16711426;4.356659;8.130753 +10166;12;0.22227614;0.09014823;0.23757137;0.94128984 +10166;3;0.015686035;0.01499939;0.20529175 +10172;0;-0.147995;4.3519135;8.078278 +10172;1;-0.6168292;4.538985;8.674864 +10172;3;0.0034637451;0.01499939;0.2034607 +10172;4;12.942505;0.45928955;-67.196655 +10172;6;-0.34702522;-0.49407008;0.018318068 +10172;7;0.93727666;-0.29942912;0.17847888;0.0;0.3482132;0.82792765;-0.43964016;0.0;-0.01612651 +10172;0;-0.138443;4.3851776;8.03537 +10172;3;-0.0069122314;0.016220093;0.19979858 +10172;12;0.22236432;0.090061136;0.23804581;0.94115746 +10172;0;-0.10499573;4.4279175;7.997223 +10172;1;-0.6124302;4.5397706;8.674764 +10172;2;-0.3755769;0.25249958;0.5204792; +10172;3;-0.019134521;0.018051147;0.19674683 +10174;0;-0.100234985;4.4754486;7.9638214 +10174;12;0.22240873;0.089964814;0.23851517;0.94103736 +10174;3;-0.030731201;0.021102905;0.19306946 +10175;0;-0.12411499;4.5181885;7.9638214 +10176;1;-0.60833377;4.539706;8.675085 +10176;3;-0.0466156;0.021713257;0.18696594 +10178;4;11.593628;0.1586914;-67.196655 +10178;6;-0.3060007;-0.5160059;0.015583592 +10178;7;0.95111394;-0.26202416;0.16347957;0.0;0.30854258;0.8293913;-0.46573764;0.0;-0.013554011 +10178;0;-0.07156372;4.53244;7.906601 +10178;3;-0.05822754;0.024154663;0.18147278 +10179;12;0.22254755;0.089504115;0.23743424;0.9413218 +10180;0;-0.100234985;4.5847015;7.882736 +10180;1;-0.60455793;4.538571;8.675943 +10180;3;-0.072265625;0.024765015;0.17781067 +10183;0;-0.09068298;4.61322;7.897049 +10183;12;0.22247717;0.08940904;0.23788108;0.94123465 +10183;3;-0.08387756;0.024154663;0.1741333 +10185;0;-0.10499573;4.6417236;7.8684235 +10185;1;-0.6010679;4.5364404;8.6772995 +10185;3;-0.09609985;0.02293396;0.17047119 +10187;4;12.193298;0.1586914;-66.14685 +10187;6;-0.32268858;-0.53293425;0.013343143 +10187;7;0.9461521;-0.27313966;0.17375535;0.0;0.32351834;0.8168641;-0.4775657;0.0;-0.011492375 +10188;0;-0.12890625;4.61322;7.882736 +10188;3;-0.10649109;0.019882202;0.16558838 +10189;12;0.22234851;0.08931015;0.23831223;0.9411654 +10196;1;-0.5976731;4.533322;8.679164 +10196;2;-0.4543029;-0.0314188;0.76745987; +10196;12;0.22216925;0.08919817;0.2387281;0.94111294 +10196;1;-0.5943657;4.529315;8.681482 +10196;0;-0.12411499;4.646469;7.892288 +10196;3;-0.11869812;0.018661499;0.16192627 +10197;0;-0.16233826;4.703491;7.887512 +10197;3;-0.1296997;0.016220093;0.15763855 +10197;5;999.59015 +10197;0;-0.18144226;4.717743;7.892288 +10197;3;-0.13946533;0.015609741;0.1558075 +10197;4;14.143372;1.3595581;-66.596985 +10197;6;-0.34139073;-0.53865904;0.022985768 +10197;7;0.93809366;-0.2873896;0.19335839;0.0;0.34581932;0.80885917;-0.47555834;0.0;-0.019729184 +10197;0;-0.17666626;4.712982;7.939972 +10197;3;-0.14985657;0.016220093;0.15275574 +10198;12;0.22201031;0.088894546;0.23837976;0.94126743 +10199;0;-0.22442627;4.7414856;7.9638214 +10200;1;-0.5911621;4.5244193;8.684254 +10200;3;-0.1632843;0.016830444;0.14970398 +10202;0;-0.21966553;4.7319946;7.9638214 +10202;12;0.22173421;0.08875876;0.23876946;0.94124657 +10202;3;-0.17245483;0.018051147;0.14848328 +10204;0;-0.19577026;4.7082367;8.021057 +10204;1;-0.58815217;4.5185137;8.687532 +10204;3;-0.1816101;0.022323608;0.14482117 +10207;4;14.143372;0.009155273;-66.29639 +10207;6;-0.35550296;-0.5306643;0.024402197 +10207;7;0.93289423;-0.30019328;0.198978;0.0;0.35953495;0.80854195;-0.46582648;0.0;-0.021044098 +10207;0;-0.19099426;4.760498;8.044907 +10208;3;-0.19017029;0.02293396;0.14175415 +10208;12;0.2214024;0.08861333;0.23915368;0.94124085 +10209;0;-0.19577026;4.7652435;8.049683 +10209;1;-0.58546937;4.5118575;8.691173 +10209;2;-0.35554105;-0.20652342;0.7170105; +10209;3;-0.19689941;0.02720642;0.13687134 +10212;0;-0.21966553;4.7747498;8.121216 +10212;12;0.22102624;0.08847357;0.23953104;0.9412464 +10212;3;-0.20056152;0.029647827;0.13381958 +10214;0;-0.17666626;4.7557526;8.164139 +10214;1;-0.5832124;4.504592;8.695092 +10214;3;-0.20483398;0.0357666;0.12893677 +10216;4;13.693237;1.05896;-66.596985 +10216;6;-0.34051314;-0.52736366;0.021635925 +10216;7;0.9387266;-0.28859648;0.18842585;0.0;0.3441551;0.814521;-0.46702537;0.0;-0.018694941 +10217;0;-0.18144226;4.7319946;8.202286 +10217;3;-0.20910645;0.04248047;0.123428345 +10217;12;0.22072208;0.08806513;0.23872836;0.9415599 +10218;0;-0.20533752;4.7224884;8.311981 +10219;1;-0.58159626;4.496847;8.699207 +10219;3;-0.2121582;0.049819946;0.120391846 +10221;0;-0.20533752;4.7462463;8.335815 +10221;12;0.22027871;0.08795627;0.23908085;0.9415846 +10221;3;-0.2133789;0.060195923;0.116104126 +10224;0;-0.23876953;4.7557526;8.38353 +10224;1;-0.58085716;4.488807;8.703409 +10224;3;-0.21644592;0.07058716;0.11244202 +10226;4;13.693237;0.7598877;-67.04712 +10226;6;-0.3343045;-0.5158341;0.02847309 +10226;7;0.9396482;-0.2854188;0.1886724;0.0;0.34124458;0.8217238;-0.45642307;0.0;-0.024764871 +10226;0;-0.23399353;4.717743;8.41214 +10226;3;-0.21582031;0.0821991;0.10939026 +10227;12;0.21981019;0.08788521;0.23942457;0.94161326 +10228;0;-0.25787354;4.693985;8.44075 +10229;1;-0.58120525;4.4805226;8.707653 +10229;2;-0.33094323;-0.24619865;0.40799618; +10229;3;-0.21705627;0.09440613;0.10694885 +10231;0;-0.2817688;4.7082367;8.455063 +10231;12;0.21931802;0.08786502;0.23976341;0.9416437 +10231;3;-0.21644592;0.10662842;0.10572815 +10236;1;-0.582721;4.4721704;8.711844 +10236;5;999.59015 +10236;0;-0.2960968;4.6797333;8.474136 +10236;3;-0.21582031;0.11578369;0.10632324 +10236;4;12.643433;0.1586914;-64.94751 +10236;6;-0.31594852;-0.5043011;0.034927025 +10236;7;0.94467956;-0.2720376;0.18323755;0.0;0.3265666;0.83217627;-0.44814807;0.0;-0.030572828 +10236;0;-0.3390808;4.684494;8.536133 +10236;3;-0.21276855;0.12678528;0.10450745 +10237;12;0.21892256;0.08761449;0.23886818;0.9419865 +10238;0;-0.3104248;4.6892242;8.550446 +10238;1;-0.58517295;4.46387;8.715937 +10238;3;-0.21154785;0.1341095;0.10632324 +10241;17;1;38dead6d7725;-265;1231;-52; +10241;17;1;38dead6d60ff;3631;1938;-55; +10242;17;1;1c1bb5efa29a;8670;1162;-72; +10243;17;1;1c1bb5ecd182;11679;293;-66; +10243;0;-0.3438568;4.6892242;8.583832 +10243;12;0.21840511;0.08770184;0.23921707;0.94201 +10243;3;-0.2084961;0.14328003;0.107543945 +10243;0;-0.2960968;4.6797333;8.650604 +10243;1;-0.5883124;4.455715;8.719897 +10243;3;-0.20544434;0.1512146;0.10632324 +10245;4;13.243103;0.45928955;-66.44745 +10245;6;-0.32810727;-0.4956404;0.034215096 +10245;7;0.9408572;-0.28347346;0.18555523;0.0;0.3374647;0.83273774;-0.4389368;0.0;-0.030091926 +10245;0;-0.2960968;4.684494;8.6410675 +10245;3;-0.20239258;0.15916443;0.107543945 +10246;12;0.2178861;0.08782705;0.23957816;0.94202673 +10247;0;-0.24354553;4.670227;8.664902 +10248;1;-0.59207267;4.447798;8.723683 +10248;2;-0.25671816;-0.22806263;0.15142918; +10248;3;-0.20056152;0.1683197;0.10998535 +10250;0;-0.26264954;4.6749725;8.70784 +10251;12;0.21737061;0.08798966;0.23994723;0.94203675 +10251;3;-0.19567871;0.17749023;0.11122131 +10252;0;-0.21966553;4.636963;8.722153 +10252;1;-0.5964862;4.440034;8.727337 +10253;3;-0.19139099;0.18664551;0.11122131 +10254;4;13.093567;1.05896;-67.04712 +10254;6;-0.3369646;-0.48849928;0.02517946 +10255;7;0.939557;-0.29195356;0.17887397;0.0;0.3416702;0.83337843;-0.43444452;0.0;-0.022232074 +10255;0;-0.21009827;4.603714;8.693527 +10255;3;-0.18772888;0.19276428;0.11061096 +10256;12;0.21697126;0.08789834;0.23906924;0.9423605 +10257;0;-0.18144226;4.6417236;8.6792145 +10257;1;-0.6015041;4.432672;8.730734 +10257;3;-0.18467712;0.19825745;0.11122131 +10265;12;0.21646807;0.08814053;0.23946314;0.9423536 +10265;0;-0.19577026;4.61322;8.722153 +10265;1;-0.60689664;4.4255867;8.733954 +10265;3;-0.1791687;0.19947815;0.10876465 +10265;0;-0.157547;4.5989685;8.76506 +10265;3;-0.177948;0.2013092;0.108169556 +10265;4;12.792969;1.05896;-65.84625 +10265;6;-0.35172722;-0.48314014;0.0179725 +10265;7;0.935751;-0.30508626;0.17689632;0.0;0.35230196;0.8313269;-0.42985922;0.0;-0.01591452 +10266;12;0.21597435;0.088404104;0.23985888;0.94234157 +10266;0;-0.138443;4.5847015;8.7603 +10266;3;-0.17550659;0.20191956;0.10694885 +10269;1;-0.61239904;4.4186754;8.73707 +10269;2;-0.39178932;-0.1894288;0.0017614365; +10269;0;-0.13366699;4.5847015;8.812759 +10269;3;-0.17123413;0.20069885;0.10510254 +10271;12;0.21548973;0.088676415;0.24024968;0.9423274 +10271;0;-0.12890625;4.6322327;8.860458 +10271;3;-0.17001343;0.1976471;0.10450745 +10271;5;999.59015 +10274;1;-0.6178481;4.411992;8.740063 +10277;12;0.21510993;0.0887196;0.23964454;0.9425641 +10277;1;-0.6231073;4.4053535;8.743038 +10284;1;-0.6279075;4.398697;8.746045 +10284;0;-0.13366699;4.5752106;8.893829 +10284;3;-0.16818237;0.19642639;0.10510254 +10284;4;14.593506;1.8096924;-68.84766 +10285;6;-0.38771287;-0.47507522;0.015028052 +10285;7;0.9230729;-0.33620372;0.18682474;0.0;0.38439286;0.8232542;-0.41772565;0.0;-0.0133633185 +10285;0;-0.11933899;4.57045;8.917694 +10285;3;-0.16879272;0.19459534;0.10632324 +10285;0;-0.11933899;4.57045;8.912918 +10285;3;-0.16940308;0.18849182;0.10876465 +10285;0;-0.100234985;4.6179657;8.936752 +10285;3;-0.17001343;0.1854248;0.11122131 +10286;12;0.21464549;0.08898134;0.2400267;0.94254816 +10286;12;0.21418306;0.08921996;0.24041441;0.94253194 +10286;1;-0.6320751;4.391949;8.749135 +10287;2;-0.48471516;-0.19155216;-0.1839304; +10288;0;-0.12411499;4.57045;8.951065 +10288;3;-0.17001343;0.17871094;0.11488342 +10288;4;13.093567;0.009155273;-67.04712 +10288;6;-0.3786046;-0.47205585;0.013865059 +10288;7;0.92676175;-0.3292004;0.18094146;0.0;0.37544668;0.8275617;-0.4173504;0.0;-0.012348315 +10288;0;-0.095443726;4.5847015;8.965378 +10288;3;-0.17245483;0.17198181;0.120391846 +10288;0;-0.10499573;4.6179657;9.008301 +10288;3;-0.17367554;0.16404724;0.12464905 +10289;0;-0.10499573;4.5799713;9.051224 +10289;12;0.21372227;0.08942832;0.24081628;0.9425142 +10289;3;-0.17184448;0.15794373;0.12954712 +10292;1;-0.6354179;4.3851833;8.752286 +10292;0;-0.10499573;4.6322327;9.075058 +10292;3;-0.17428589;0.15306091;0.13565063 +10294;4;12.942505;1.5090942;-66.44745 +10294;6;-0.36750996;-0.47193408;0.011569187 +10294;7;0.9312728;-0.32001874;0.17412351;0.0;0.36417687;0.8312147;-0.42006817;0.0;-0.010304337 +10294;0;-0.06678772;4.65123;9.075058 +10294;3;-0.17550659;0.14755249;0.14175415 +10294;12;0.21339685;0.089296915;0.23991394;0.9428304 +10296;0;-0.057235718;4.636963;9.065521 +10296;1;-0.63801533;4.37841;8.755488 +10296;3;-0.17428589;0.14389038;0.14665222 +10298;0;-0.06678772;4.646469;9.065521 +10299;12;0.21295139;0.089433014;0.24034913;0.9428074 +10299;3;-0.17123413;0.14083862;0.15092468 +10303;1;-0.6400809;4.371791;8.758644 +10303;0;-0.07156372;4.684494;9.056 +10303;3;-0.16879272;0.1365509;0.15458679 +10303;4;12.942505;1.5090942;-66.44745 +10303;6;-0.37104484;-0.47736368;0.00790219 +10304;7;0.93060356;-0.32205525;0.17394693;0.0;0.36596155;0.82776576;-0.4252953;0.0;-0.007018725 +10304;0;-0.033355713;4.73674;9.103683 +10304;3;-0.164505;0.13227844;0.16007996 +10305;1;-0.6416099;4.3655186;8.76166 +10305;0;-0.06201172;4.7652435;9.146606 +10306;2;-0.54079145;-0.29262877;-0.32028198; +10306;3;-0.1602478;0.12739563;0.16375732 +10307;12;0.21252015;0.08954808;0.24080235;0.94277817 +10307;0;-0.052444458;4.7462463;9.175232 +10308;12;0.21210948;0.08964472;0.24126932;0.9427421 +10308;3;-0.15412903;0.12373352;0.16558838 +10309;5;999.5952 +10310;0;-0.038131714;4.760498;9.203827 +10310;1;-0.6426153;4.35964;8.764513 +10310;3;-0.1473999;0.12007141;0.16741943 +10312;4;13.693237;1.6586304;-65.84625 +10312;6;-0.3999146;-0.47733313;0.0041430043 +10312;7;0.9203453;-0.34582058;0.18268189;0.0;0.3910895;0.8181374;-0.42154512;0.0;-0.0036799025 +10312;0;-0.038131714;4.7747498;9.232452 +10312;3;-0.1407013;0.117630005;0.16925049 +10313;12;0.21183819;0.08945541;0.24056728;0.94300044 +10314;0;0.04786682;4.7985077;9.265839 +10315;1;-0.6432024;4.354336;8.767107 +10315;3;-0.13519287;0.1164093;0.16986084 +10317;0;0.04786682;4.841263;9.246765 +10317;12;0.21149106;0.08951946;0.24104744;0.94294965 +10317;3;-0.1260376;0.11395264;0.1729126 +10319;0;-0.023803711;4.803253;9.189545 +10320;1;-0.64357585;4.3496327;8.769414 +10320;3;-0.11869812;0.11212158;0.17474365 +10328;4;13.693237;1.6586304;-65.84625 +10328;6;-0.39995673;-0.48163044;0.002590298 +10328;7;0.92060757;-0.34508312;0.18275502;0.0;0.39048237;0.8162968;-0.42565605;0.0;-0.0022956252 +10328;12;0.21117565;0.08958782;0.24153134;0.94289 +10328;1;-0.64379084;4.345626;8.771384 +10328;2;-0.588464;-0.44026184;-0.44567013; +10328;0;-0.07156372;4.817505;9.222916 +10328;3;-0.1113739;0.10845947;0.17474365 +10328;0;-0.09068298;4.8079987;9.184769 +10328;3;-0.10586548;0.10296631;0.1741333 +10328;0;-0.138443;4.817505;9.213379 +10328;12;0.21090132;0.08965575;0.24201302;0.9428215 +10329;3;-0.09732056;0.09562683;0.17474365 +10329;0;-0.100234985;4.8460083;9.265839 +10329;1;-0.64360344;4.342184;8.773102 +10329;3;-0.08938599;0.09074402;0.17903137 +10331;4;13.392639;1.3595581;-66.29639 +10331;6;-0.3771995;-0.4818517;0.010817271 +10331;7;0.92779905;-0.32638097;0.180733;0.0;0.3729572;0.82384264;-0.4268329;0.0;-0.009585411 +10332;0;-0.10499573;4.8460083;9.280151 +10332;3;-0.08204651;0.08830261;0.18391418 +10332;12;0.21078001;0.08942991;0.24125682;0.9430638 +10334;0;-0.143219;4.917267;9.289688 +10334;1;-0.6428682;4.339461;8.774503 +10334;3;-0.0783844;0.088912964;0.19062805 +10336;0;-0.147995;4.9220276;9.222916 +10337;12;0.21058826;0.08946831;0.24173608;0.9429802 +10337;3;-0.072265625;0.089523315;0.19552612 +10338;0;-0.15278625;4.94104;9.242004 +10339;1;-0.64191717;4.337291;8.775645 +10339;3;-0.064331055;0.088912964;0.19612122 +10341;4;13.392639;1.3595581;-66.29639 +10341;6;-0.36112747;-0.49090844;0.016530218 +10341;7;0.9326179;-0.31160277;0.18200955;0.0;0.36057076;0.82502127;-0.43511912;0.0;-0.014577417 +10341;0;-0.11456299;4.9552917;9.179993 +10341;3;-0.05822754;0.09074402;0.19918823 +10342;12;0.21042475;0.08950679;0.24223909;0.94288397 +10343;1;-0.6408273;4.335796;8.776464 +10343;0;-0.07156372;4.969528;9.156143 +10344;2;-0.49278593;-0.5591054;-0.4563465; +10344;3;-0.051498413;0.08830261;0.20040894 +10346;0;-0.06201172;4.969528;9.156143 +10347;12;0.2102957;0.089549996;0.24275029;0.9427772 +10347;3;-0.04234314;0.08769226;0.20040894 +10347;5;999.5952 +10348;0;-0.047683716;4.9315186;9.127518 +10349;1;-0.63955736;4.3349166;8.776992 +10349;3;-0.035614014;0.089523315;0.19857788 +10351;4;13.693237;1.6586304;-65.84625 +10351;6;-0.3865936;-0.49535313;0.005224124 +10351;7;0.9252499;-0.33171633;0.1840571;0.0;0.37933052;0.81487066;-0.43828583;0.0;-0.0045961686 +10351;0;-0.019012451;4.9790497;9.103683 +10351;3;-0.027069092;0.09074402;0.19674683 +10352;12;0.21031216;0.08933118;0.24209028;0.94296396 +10353;0;-0.033355713;5.0027924;9.089371 +10353;1;-0.6383996;4.3347507;8.777158 +10353;3;-0.019729614;0.09013367;0.19490051 +10355;0;-0.033355713;4.960037;9.065521 +10356;12;0.21025254;0.089392096;0.24259539;0.94284165 +10356;3;-0.011199951;0.09196472;0.19306946 +10358;1;-0.6373705;4.335242;8.776989 +10358;0;-0.038131714;4.969528;9.017838 +10358;3;-0.0026397705;0.09135437;0.19306946 +10362;17;1;38dead6d7725;360;854;-51; +10363;17;1;38dead6d60ff;4839;1429;-58; +10364;17;1;1c1bb5efa29a;9208;4101;-72; +10365;17;1;1c1bb5ecd182;7981;596;-71; +10365;4;13.693237;1.6586304;-65.84625 +10365;6;-0.3833684;-0.5036664;0.0042284513 +10365;7;0.9266383;-0.32759696;0.18444961;0.0;0.3759358;0.81224316;-0.4460194;0.0;-0.0037033467 +10365;0;-0.028564453;4.9933014;9.027374 +10365;3;0.0046844482;0.08708191;0.19490051 +10365;12;0.21022856;0.089466855;0.24308908;0.94271284 +10365;0;-0.038131714;4.9790497;8.974915 +10365;1;-0.6362625;4.3364706;8.776463 +10365;2;-0.5742556;-0.63100386;-0.29488277; +10365;3;0.012634277;0.0834198;0.19490051 +10365;0;-0.047683716;5.0217896;8.955841 +10365;3;0.0211792;0.08157349;0.19674683 +10366;12;0.21024467;0.089548744;0.2435779;0.9425753 +10367;0;-0.033355713;5.031311;8.931976 +10368;3;0.028518677;0.07608032;0.19552612 +10368;1;-0.63484365;4.338443;8.775591 +10369;4;14.442444;2.708435;-66.596985 +10370;6;-0.3845645;-0.5129879;0.0037343984 +10370;7;0.9262679;-0.3268662;0.1875802;0.0;0.37685177;0.8076452;-0.4535328;0.0;-0.0032537063 +10370;0;-0.028564453;5.031311;8.917694 +10370;3;0.0370636;0.07180786;0.19612122 +10371;12;0.21040915;0.08937215;0.24294078;0.94271964 +10372;0;0.0048675537;5.031311;8.903381 +10372;1;-0.63302714;4.3411016;8.774407 +10372;3;0.04499817;0.0687561;0.19735718 +10374;0;0.04307556;5.017044;8.86998 +10375;12;0.21050861;0.08943485;0.24341992;0.942568 +10375;3;0.052337646;0.06814575;0.19674683 +10377;0;0.10997009;5.031311;8.850922 +10377;1;-0.63083744;4.3444514;8.772907 +10377;3;0.05783081;0.06324768;0.19612122 +10379;4;13.842773;2.558899;-65.69672 +10379;6;-0.40070003;-0.5168651;-0.012424065 +10379;7;0.9231118;-0.3391101;0.18129793;0.0;0.38437998;0.800508;-0.45982498;0.0;0.010800865 +10380;0;0.124298096;5.0455627;8.865219 +10380;3;0.06455994;0.05958557;0.19674683 +10380;12;0.21064855;0.08948919;0.24389665;0.9424083 +10382;0;0.062194824;5.0455627;8.836609 +10382;1;-0.6283422;4.348345;8.771156 +10382;2;-0.63524485;-0.679544;-0.120713234; +10383;3;0.068222046;0.055923462;0.19490051 +10384;0;0.08607483;5.0217896;8.822296 +10385;12;0.2108209;0.08953797;0.24436508;0.94224375 +10385;3;0.07432556;0.05104065;0.1912384 +10386;5;999.5952 +10387;0;0.124298096;5.031311;8.81752 +10388;1;-0.625567;4.3526416;8.769224 +10388;3;0.076156616;0.047973633;0.188797 +10389;4;13.542175;1.5090942;-66.44745 +10389;6;-0.40105674;-0.51848143;-0.014095783 +10389;7;0.92328435;-0.33908334;0.18046698;0.0;0.38392183;0.79965055;-0.46169573;0.0;0.012242808 +10389;0;0.10517883;5.0265503;8.846146 +10389;3;0.080444336;0.044921875;0.188797 +10390;12;0.21113396;0.08930138;0.24361081;0.94239146 +10392;1;-0.6225661;4.357205;8.767171 +10392;0;0.1338501;5.031311;8.827072 +10393;3;0.08226013;0.044311523;0.188797 +10395;0;0.10997009;5.06456;8.81752 +10395;3;0.084106445;0.044311523;0.1900177 +10395;12;0.21135215;0.089327745;0.24405137;0.94222605 +10398;0;0.114746094;5.074051;8.807983 +10398;1;-0.61945856;4.362046;8.764984 +10398;3;0.08470154;0.04737854;0.19062805 +10399;4;15.492249;0.1586914;-64.19678 +10399;6;-0.47081965;-0.5226044;-0.013026772 +10399;7;0.8940706;-0.39306912;0.2147894;0.0;0.4477839;0.7722418;-0.45070198;0.0;0.011287668 +10399;0;0.119506836;5.040802;8.793686 +10400;3;0.084106445;0.049819946;0.19062805 +10401;12;0.21158461;0.08935294;0.24449372;0.9420568 +10402;0;0.114746094;5.0455627;8.769836 +10402;1;-0.616511;4.366896;8.762776 +10402;2;-0.70985746;-0.67279816;-0.049731255; +10402;3;0.08288574;0.049819946;0.18513489 +10406;12;0.21181604;0.089387126;0.244938;0.941886 +10406;0;0.1338501;5.040802;8.784149 +10406;3;0.08226013;0.050430298;0.18208313 +10408;0;0.1290741;5.059799;8.769836 +10408;1;-0.61375433;4.3716497;8.760599 +10408;3;0.08166504;0.05104065;0.17842102 +10409;4;14.593506;0.9094238;-66.44745 +10409;6;-0.43076426;-0.5232552;-0.014716897 +10409;7;0.9116192;-0.36169392;0.19526388;0.0;0.41083813;0.7870673;-0.46014893;0.0;0.012747274 +10409;0;0.08129883;5.06456;8.798447 +10409;3;0.08226013;0.050430298;0.17903137 +10410;12;0.21207389;0.08935046;0.24502221;0.9418096 +10411;1;-0.6111849;4.376375;8.758419 +10411;0;0.09085083;5.0835724;8.7603 +10411;3;0.080444336;0.047973633;0.17781067 +10414;0;0.04307556;5.059799;8.774612 +10414;12;0.21229665;0.08939801;0.24544027;0.94164604 +10415;3;0.07798767;0.046157837;0.17842102 +10416;1;-0.60854346;4.380962;8.7563095 +10416;0;0.023986816;5.0835724;8.807983 +10416;3;0.07676697;0.041870117;0.18025208 +10420;4;13.243103;1.2084961;-66.44745 +10420;6;-0.3736027;-0.52345073;-0.0027232973 +10420;7;0.93151194;-0.316102;0.17990308;0.0;0.3637032;0.8063546;-0.46638212;0.0;0.002358643 +10421;12;0.21251415;0.08943934;0.24585482;0.94148487 +10421;0;-0.023803711;5.0835724;8.836609 +10421;3;0.07493591;0.037597656;0.17903137 +10421;0;-0.042907715;5.06456;8.822296 +10421;1;-0.6056502;4.38538;8.754298 +10421;2;-0.6419257;-0.68154573;-0.039043427; +10421;3;0.07371521;0.032104492;0.18025208 +10423;0;-0.047683716;5.074051;8.836609 +10423;12;0.2127277;0.08946352;0.24626921;0.941326 +10423;3;0.07066345;0.025985718;0.17903137 +10425;5;999.5952 +10426;0;-0.047683716;5.06456;8.855682 +10426;3;0.06700134;0.019882202;0.17964172 +10426;1;-0.6023281;4.389619;8.752403 +10428;4;13.693237;0.30975342;-66.29639 +10428;6;-0.3817813;-0.5194948;0.0053844815 +10428;7;0.9269931;-0.32342044;0.18995538;0.0;0.3750493;0.80557114;-0.45868623;0.0;-0.0046740845 +10428;0;-0.06678772;5.06456;8.846146 +10429;3;0.06700134;0.013168335;0.17903137 +10429;12;0.21304597;0.08920277;0.24554186;0.94146883 +10430;0;-0.08590698;5.06456;8.831833 +10430;3;0.06578064;0.005844116;0.17964172 +10430;1;-0.5985266;4.3936286;8.750651 +10432;0;-0.06678772;5.059799;8.831833 +10432;12;0.21325213;0.08917103;0.24594525;0.9413198 +10433;3;0.06578064;3.5095215E-4;0.17842102 +10435;0;-0.06678772;5.050308;8.831833 +10435;1;-0.59415835;4.397571;8.748969 +10435;3;0.06578064;-0.007598877;0.17596436 +10438;13;61.903 +10438;4;13.842773;0.45928955;-66.44745 +10438;6;-0.379641;-0.5194364;0.007562014 +10438;7;0.92738014;-0.32170627;0.19097432;0.0;0.37406284;0.8062884;-0.45823127;0.0;-0.0065645142 +10438;0;-0.06678772;4.9885406;8.84137 +10439;3;0.067611694;-0.016159058;0.17474365 +10439;12;0.21346156;0.089107014;0.24634159;0.94117486 +10440;2;-0.5077261;-0.6414442;-0.09784031; +10440;1;-0.58921915;4.4014525;8.747351 +10440;0;-0.07156372;4.969528;8.898605 +10440;3;0.0688324;-0.01737976;0.17352295 +10442;12;0.21367957;0.089009754;0.2467243;0.9410342 +10442;0;-0.06201172;4.9933014;8.879532 +10442;3;0.07249451;-0.02104187;0.1729126 +10445;1;-0.5840612;4.4054484;8.745685 +10445;0;-0.052444458;4.969528;8.84137 +10445;3;0.07676697;-0.023483276;0.17108154 +10447;4;14.292908;0.9094238;-66.89758 +10447;6;-0.3920225;-0.51206034;0.0059316424 +10449;7;0.9230116;-0.33305424;0.19267708;0.0;0.3847374;0.80560535;-0.45052987;0.0;-0.0051708007 +10449;0;-0.01423645;4.9315186;8.84137 +10449;3;0.08103943;-0.026535034;0.17047119 +10449;12;0.21398264;0.08871607;0.24629568;0.9411054 +10450;1;-0.5786336;4.409754;8.7438755 +10450;0;-0.019012451;4.94104;8.860458 +10450;3;0.088378906;-0.029586792;0.16680908 +10452;12;0.21423174;0.08859466;0.24665736;0.9409654 +10452;0;0.023986816;4.917267;8.86998 +10452;3;0.09387207;-0.030807495;0.16680908 +10454;1;-0.5730416;4.4145026;8.741848 +10455;0;-0.0046844482;4.9030304;8.898605 +10455;3;0.10180664;-0.030197144;0.16436768 +10457;4;14.743042;0.30975342;-67.796326 +10457;6;-0.4193388;-0.5036018;5.264249E-4 +10458;7;0.9132548;-0.35660815;0.1969678;0.0;0.4073886;0.79996496;-0.44055712;0.0;-4.6106926E-4 +10458;0;0.028747559;4.9030304;8.908142 +10458;3;0.10914612;-0.02897644;0.16436768 +10458;12;0.21450865;0.08846938;0.24700509;0.94082296 +10459;1;-0.56746584;4.4198375;8.739515 +10459;0;0.04307556;4.884018;8.893829 +10459;2;-0.5456667;-0.51256514;-0.13266087; +10459;3;0.12135315;-0.029586792;0.16314697 +10462;0;0.052627563;4.8460083;8.917694 +10462;12;0.2148172;0.088351876;0.24734722;0.9406737 +10462;3;0.13235474;-0.027145386;0.16192627 +10464;5;999.5982 +10464;0;0.057418823;4.874527;8.917694 +10464;1;-0.5619879;4.4259744;8.736763 +10464;3;0.14274597;-0.024093628;0.15885925 +10475;4;13.243103;0.45928955;-67.196655 +10475;6;-0.39729762;-0.5002304;-0.006438663 +10475;7;0.9232857;-0.33951843;0.17964035;0.0;0.38407227;0.80912584;-0.44475156;0.0;0.0056497087 +10476;0;0.062194824;4.850769;8.941528 +10476;3;0.15312195;-0.022262573;0.15641785 +10476;0;0.04786682;4.8650208;8.922455 +10476;3;0.16412354;-0.018600464;0.15397644 +10476;1;-0.5568608;4.4329114;8.733574 +10476;0;0.08607483;4.879257;8.898605 +10476;3;0.17634583;-0.01675415;0.14970398 +10476;12;0.21528381;0.08796977;0.2464618;0.9408352 +10476;12;0.21567774;0.08789495;0.24677928;0.9406687 +10477;1;-0.5520005;4.4408436;8.729852 +10477;12;0.21612051;0.087846994;0.24708591;0.94049114 +10480;17;1;38dead6d7725;-102;1639;-54; +10480;17;1;38dead6d60ff;4663;977;-61; +10481;17;1;1c1bb5efa29a;9945;1514;-71; +10482;17;1;1c1bb5ecd182;7832;4112;-65; +10482;1;-0.5475584;4.4495625;8.725691 +10482;2;-0.60172725;-0.40766907;-0.19270325; +10482;0;0.07652283;4.8317566;8.941528 +10482;3;0.18611145;-0.013092041;0.14604187 +10482;4;14.292908;-0.440979;-66.89758 +10482;6;-0.44269875;-0.49540636;-0.008557929 +10482;7;0.90530854;-0.3768779;0.19590673;0.0;0.42468774;0.7949642;-0.4332114;0.0;0.0075289644 +10482;0;0.066970825;4.8317566;8.898605 +10482;3;0.19650269;-0.011260986;0.14297485 +10482;0;0.08607483;4.8555145;8.927231 +10482;12;0.21660283;0.08782648;0.24737276;0.94030654 +10482;3;0.20626831;-0.010040283;0.13931274 +10483;0;0.10517883;4.8222656;8.931976 +10483;3;0.21177673;-0.007598877;0.13442993 +10483;0;0.10997009;4.850769;8.951065 +10483;1;-0.5433783;4.4589586;8.721154 +10483;3;0.21910095;-0.0069885254;0.13381958 +10485;4;14.892578;0.1586914;-66.89758 +10485;6;-0.45742202;-0.4965877;-0.012285082 +10485;7;0.8997112;-0.38829288;0.19937043;0.0;0.43635225;0.7888251;-0.4328417;0.0;0.010800937 +10486;0;0.09085083;4.8317566;8.927231 +10486;3;0.22398376;-0.0039367676;0.13015747 +10486;12;0.21713273;0.08779806;0.24751341;0.94015 +10488;0;0.07652283;4.827011;8.936752 +10488;1;-0.53947383;4.4688416;8.716337 +10489;3;0.22949219;-2.746582E-4;0.12832642 +10490;0;0.052627563;4.8222656;8.917694 +10490;12;0.21767491;0.08781832;0.24776873;0.9399555 +10490;3;0.234375;0.002166748;0.12464905 +10492;0;0.08607483;4.8365173;8.893829 +10492;1;-0.5359719;4.4791365;8.711267 +10492;3;0.23742676;0.0033874512;0.12283325 +10495;4;13.392639;-1.6403198;-68.24646 +10495;6;-0.4244126;-0.49805567;-0.009677737 +10495;7;0.91314185;-0.36175904;0.1878893;0.0;0.40755334;0.80057216;-0.4393002;0.0;0.008501886 +10495;0;0.07652283;4.850769;8.927231 +10495;3;0.24047852;0.0027923584;0.120391846 +10495;12;0.21823607;0.0878616;0.2480129;0.93975693 +10497;0;0.09085083;4.827011;8.912918 +10497;1;-0.5326434;4.4896913;8.7060375 +10497;3;0.24291992;0.005844116;0.11793518 +10497;2;-0.6078301;-0.34743166;-0.21629333; +10499;0;0.09085083;4.8460083;8.898605 +10499;12;0.21881002;0.0879156;0.2482458;0.9395569 +10499;3;0.24354553;0.006439209;0.11671448 +10502;5;999.5982 +10502;0;0.071746826;4.841263;8.874756 +10502;1;-0.52953583;4.500414;8.700688 +10502;3;0.24536133;0.010101318;0.11427307 +10504;4;14.593506;-0.440979;-67.196655 +10504;6;-0.4450534;-0.49937528;-0.008084196 +10504;7;0.9042248;-0.3779335;0.19885619;0.0;0.42699784;0.79236543;-0.4356948;0.0;0.007096892 +10504;0;0.09562683;4.850769;8.86998 +10505;3;0.24232483;0.01499939;0.11244202 +10506;12;0.21941091;0.087932855;0.24826007;0.9394114 +10511;12;0.21998832;0.08801721;0.24847776;0.9392108 +10511;1;-0.526775;4.5111456;8.695296 +10511;1;-0.5242326;4.521704;8.689964 +10512;0;0.071746826;4.8317566;8.836609 +10512;3;0.24047852;0.015609741;0.111831665 +10512;0;0.052627563;4.8460083;8.874756 +10512;3;0.24047852;0.017440796;0.11122131 +10513;0;0.09085083;4.8460083;8.86998 +10513;3;0.23925781;0.017440796;0.111831665 +10513;4;15.492249;-0.14038086;-65.69672 +10514;6;-0.47675723;-0.50000536;-0.010242148 +10514;7;0.8906945;-0.40272185;0.21089935;0.0;0.45451364;0.77971905;-0.4306456;0.0;0.008988148 +10514;0;0.10041809;4.9030304;8.865219 +10514;3;0.23986816;0.017440796;0.11061096 +10515;12;0.220556;0.08810802;0.24869445;0.9390118 +10516;0;0.10517883;4.9220276;8.822296 +10516;2;-0.59753996;-0.33281803;-0.17667198; +10516;1;-0.52169114;4.532287;8.684603 +10516;3;0.23803711;0.015609741;0.11122131 +10519;0;0.1625061;4.9885406;8.860458 +10519;12;0.22112416;0.08820029;0.24891119;0.9388121 +10519;3;0.23803711;0.010726929;0.111831665 +10521;0;0.17684937;5.0360413;8.84137 +10521;3;0.23803711;0.0070648193;0.11061096 +10522;1;-0.5188755;4.542887;8.679232 +10523;4;13.542175;-0.440979;-66.89758 +10523;6;-0.42834443;-0.5176803;-0.019999819 +10523;7;0.91358346;-0.36093986;0.1873173;0.0;0.4062799;0.7904622;-0.45837358;0.0;0.017378073 +10523;0;0.21028137;5.1168213;8.846146 +10524;3;0.23620605;0.0040130615;0.11122131 +10524;12;0.2218024;0.08800946;0.247986;0.9389148 +10525;0;0.19593811;5.1453247;8.874756 +10526;1;-0.51571196;4.55354;8.673836 +10526;3;0.2368164;-8.69751E-4;0.11305237 +10528;0;0.22460938;5.2498474;8.879532 +10529;12;0.22237921;0.08807342;0.24819644;0.9387167 +10529;3;0.23925781;-0.006378174;0.11488342 +10530;0;0.25805664;5.3591156;8.889069 +10530;1;-0.5120365;4.5644407;8.668323 +10531;3;0.23864746;-0.006378174;0.116104126 +10532;4;14.292908;0.45928955;-66.89758 +10533;6;-0.4375151;-0.5423543;-0.029022632 +10533;7;0.91177183;-0.36288866;0.19231188;0.0;0.40994424;0.77582014;-0.4796339;0.0;0.024854274 +10533;0;0.3106079;5.4161377;8.917694 +10533;3;0.23925781;-0.006378174;0.11732483 +10534;12;0.22297364;0.08811581;0.24841015;0.9385152 +10535;0;0.3297119;5.5158997;8.951065 +10535;1;-0.50810623;4.5754285;8.662759 +10535;2;-0.73489773;-0.6586056;-0.21642494; +10536;3;0.23803711;-0.0039367676;0.119766235 +10537;0;0.34403992;5.5824127;9.003525 +10538;12;0.22357245;0.08815034;0.24862717;0.938312 +10538;3;0.23742676;0.0027923584;0.124053955 +10540;5;999.5982 +10540;0;0.35359192;5.625183;9.013062 +10540;1;-0.5042708;4.5864434;8.657156 +10540;3;0.23498535;0.013763428;0.12586975 +10542;4;12.942505;0.45928955;-66.89758 +10542;6;-0.4130347;-0.55761707;-0.039210945 +10542;7;0.92352927;-0.3405874;0.17633453;0.0;0.38208276;0.777164;-0.5000289;0.0;0.03326269 +10542;0;0.35836792;5.648926;9.094147 +10543;3;0.23010254;0.025985718;0.13015747 +10543;12;0.22428523;0.087889925;0.2475958;0.9384391 +10544;0;0.3058319;5.7106934;9.14183 +10545;1;-0.5011738;4.597241;8.6516075 +10545;3;0.22581482;0.045532227;0.13565063 +10548;0;0.27716064;5.7534485;9.170456 +10548;12;0.22485736;0.08797685;0.24785285;0.93822616 +10548;3;0.21482849;0.06692505;0.14237976 +10550;0;0.20072937;5.781952;9.237228 +10550;1;-0.49945587;4.6075654;8.646213 +10550;3;0.2038269;0.09196472;0.15153503 +10552;4;14.292908;-0.14038086;-66.44745 +10552;6;-0.42291152;-0.55916893;-0.021727057 +10552;7;0.91641265;-0.34790915;0.19785622;0.0;0.39981082;0.77301246;-0.49254757;0.0;0.018416496 +10552;0;0.119506836;5.834198;9.251541 +10552;3;0.18855286;0.1194458;0.15885925 +10553;12;0.22538267;0.088139504;0.24815491;0.938005 +10554;0;0.04786682;5.89122;9.299225 +10554;1;-0.49961558;4.616951;8.641195 +10555;2;-0.74595267;-1.1190252;-0.5059347; +10555;3;0.17207336;0.14694214;0.17108154 +10557;0;-0.10978699;5.914978;9.275375 +10557;12;0.22582915;0.088401325;0.24852236;0.9377756 +10557;3;0.15618896;0.17138672;0.17964172 +10559;0;-0.18144226;5.9339905;9.284912 +10559;1;-0.5018109;4.62509;8.636714 +10559;3;0.13479614;0.19459534;0.18513489 +10562;4;15.04364;-1.3412476;-68.24646 +10562;6;-0.36596805;-0.5685881;0.019539138 +10562;7;0.9298349;-0.3015495;0.21089084;0.0;0.36760846;0.7868591;-0.49569827;0.0;-0.016463842 +10564;0;-0.29130554;5.986252;9.351685 +10564;3;0.111587524;0.2147522;0.19367981 +10564;12;0.2261877;0.08873508;0.2488484;0.93757117 +10564;0;-0.37728882;5.9672394;9.413681 +10565;1;-0.5057905;4.631542;8.633024 +10565;3;0.083480835;0.233078;0.20162964 +10567;0;-0.49195862;5.948242;9.413681 +10567;12;0.22641596;0.089176506;0.24935672;0.9373391 +10567;3;0.051116943;0.24957275;0.20956421 +10569;0;-0.5922699;5.981491;9.423233 +10569;1;-0.51116157;4.63568;8.6304865 +10570;3;0.018737793;0.25994873;0.21690369 +10571;4;14.593506;-0.74157715;-66.44745 +10571;6;-0.28601468;-0.5646955;0.062769525 +10571;7;0.94801545;-0.23833068;0.21086752;0.0;0.31378132;0.8104344;-0.4947095;0.0;-0.052989848 +10572;0;-0.6687012;5.9434814;9.4470825 +10572;3;-0.016067505;0.2630005;0.2230072 +10572;12;0.22649927;0.08966736;0.24993075;0.93711925 +10575;17;1;38dead6d7725;1170;1278;-52; +10575;17;1;38dead6d60ff;3724;760;-58; +10576;17;1;1c1bb5efa29a;6313;3384;-70; +10577;17;0;1c1bb5ecd182;0;0;0; +10577;0;-0.7403717;5.9244843;9.4804535 +10577;1;-0.5172277;4.6370697;8.629378 +10577;2;-0.08147061;-1.3223028;-0.7516146; +10577;3;-0.055786133;0.2660675;0.22911072 +10577;0;-0.816803;5.8769684;9.532913 +10577;12;0.2264215;0.09016104;0.25056064;0.93692255 +10577;3;-0.09609985;0.2636261;0.23461914 +10579;1;-0.5233918;4.635173;8.630026 +10580;0;-0.91711426;5.8199615;9.504303 +10580;3;-0.13763428;0.25872803;0.2388916 +10580;5;999.5982 +10580;4;13.542175;-1.1901855;-67.64679 +10581;6;-0.19853462;-0.54738945;0.09619681 +10581;7;0.96596456;-0.16841449;0.19633904;0.0;0.24532852;0.83711296;-0.48893338;0.0;-0.08201449 +10581;0;-0.98876953;5.7296906;9.566299 +10581;3;-0.17857361;0.246521;0.24499512 +10582;12;0.22627887;0.09032718;0.2500442;0.93707895 +10583;0;-1.0413208;5.7059326;9.54245 +10583;1;-0.5289695;4.629788;8.632575 +10583;3;-0.22071838;0.22819519;0.24865723 +10585;0;-1.0604248;5.5871735;9.537689 +10586;12;0.22584388;0.09070197;0.25075063;0.9369588 +10586;3;-0.25798035;0.20680237;0.25294495 +10588;0;-1.0795288;5.4731293;9.532913 +10588;1;-0.53298324;4.6209164;8.637081 +10588;3;-0.29768372;0.17749023;0.254776 +10592;4;14.593506;-0.14038086;-67.196655 +10592;6;-0.20263165;-0.51843345;0.11276191 +10592;7;0.96209836;-0.17480318;0.20930994;0.0;0.25458643;0.8508254;-0.4596542;0.0;-0.09773717 +10592;0;-1.1225281;5.3923798;9.571075 +10592;12;0.22524218;0.09094279;0.2514756;0.936886 +10592;3;-0.33372498;0.14755249;0.25660706 +10593;0;-1.0747681;5.3733673;9.633072 +10593;1;-0.5346651;4.608736;8.643483 +10594;2;0.48313582;-1.0214396;-0.90328884; +10594;3;-0.36610413;0.11273193;0.25782776 +10596;0;-1.0652008;5.2926025;9.685532 +10596;12;0.22449824;0.09100663;0.25219932;0.93686384 +10597;3;-0.39419556;0.07974243;0.2596588 +10598;0;-1.0556488;5.221344;9.723679 +10598;1;-0.5335072;4.5937314;8.651538 +10599;3;-0.41864014;0.046157837;0.26148987 +10602;4;15.492249;-1.1901855;-66.89758 +10603;6;-0.2575756;-0.4903481;0.10814122 +10603;7;0.9484137;-0.22472098;0.2236332;0.0;0.3024001;0.8530666;-0.42524293;0.0;-0.095213 +10603;0;-1.0747681;5.1120605;9.761841 +10603;3;-0.43940735;0.0113220215;0.25782776 +10603;12;0.22365054;0.09085938;0.25283605;0.93690926 +10603;1;-0.529515;4.5763836;8.660973 +10604;0;-1.0174255;5.0360413;9.80954 +10604;3;-0.45651245;-0.022872925;0.254776 +10605;12;0.22271462;0.09053831;0.25352785;0.9369764 +10605;0;-0.9601135;4.969528;9.852463 +10605;3;-0.4669037;-0.05340576;0.25172424 +10608;0;-0.888443;4.86026;9.923996 +10608;1;-0.5227975;4.5575705;8.671294 +10608;3;-0.47239685;-0.0821228;0.24987793 +10609;4;15.942383;-0.14038086;-65.69672 +10609;6;-0.3307434;-0.45383793;0.08928669 +10609;7;0.92933834;-0.2918725;0.22614281;0.0;0.36042672;0.8500587;-0.38404766;0.0;-0.080141716 +10609;0;-0.86935425;4.7794952;9.981247 +10609;3;-0.47605896;-0.110839844;0.24865723 +10610;12;0.22174263;0.09004269;0.25417414;0.9370796 +10612;0;-0.7929077;4.7082367;10.119553 +10612;1;-0.5136561;4.537981;8.682108 +10612;2;0.45784497;-0.4693675;-1.1695957; +10612;3;-0.4717865;-0.13526917;0.24684143 +10614;0;-0.7738037;4.646469;10.176773 +10614;12;0.22076958;0.08940125;0.2547848;0.93720484 +10615;3;-0.46505737;-0.15542603;0.24377441 +10616;0;-0.73080444;4.5657043;10.243546 +10617;1;-0.502498;4.51841;8.692961 +10617;3;-0.4546814;-0.17558289;0.24072266 +10617;5;999.59143 +10619;4;13.243103;-0.14038086;-66.89758 +10619;6;-0.29949072;-0.41834188;0.071222246 +10619;7;0.94453526;-0.26959103;0.18754673;0.0;0.32190806;0.87308925;-0.36618334;0.0;-0.0650253 +10619;0;-0.65914917;4.4849396;10.276932 +10619;3;-0.4375763;-0.19268799;0.23461914 +10620;12;0.21994936;0.088354;0.2541181;0.937678 +10622;1;-0.48980036;4.4995494;8.703463 +10622;0;-0.64482117;4.4089203;10.310318 +10622;3;-0.41680908;-0.20368958;0.23217773 +10624;0;-0.63049316;4.389923;10.310318 +10624;12;0.2190784;0.08752743;0.25465217;0.9378145 +10624;3;-0.3911438;-0.21530151;0.23155212 +10626;0;-0.64482117;4.3186646;10.367554 +10626;1;-0.4761825;4.48231;8.713108 +10627;3;-0.36183167;-0.22567749;0.23277283 +10629;4;13.842773;-0.74157715;-67.196655 +10629;6;-0.36300406;-0.39401188;0.062116064 +10629;7;0.9245694;-0.32787627;0.19408336;0.0;0.37667716;0.8632039;-0.33614475;0.0;-0.05731963 +10629;0;-0.6161499;4.223633;10.415237 +10629;3;-0.33128357;-0.22872925;0.23399353 +10630;12;0.21831098;0.086669944;0.25515112;0.93793744 +10631;0;-0.5301666;4.123871;10.472473 +10631;1;-0.46174332;4.46724;8.721621 +10631;3;-0.296463;-0.2281189;0.23399353 +10631;2;0.19824532;0.06402016;-1.5956221; +10633;0;-0.48718262;4.0478516;10.477234 +10634;12;0.21767637;0.08579728;0.25563407;0.9380337 +10634;3;-0.26286316;-0.22445679;0.23461914 +10635;0;-0.4298401;3.9908295;10.491547 +10636;1;-0.4472135;4.4547887;8.728744 +10636;3;-0.22743225;-0.21774292;0.23095703 +10638;4;15.942383;-0.14038086;-68.096924 +10638;6;-0.49621212;-0.36320502;0.040947236 +10638;7;0.8717311;-0.44503877;0.20500112;0.0;0.48848823;0.8220234;-0.29267213;0.0;-0.038265266 +10638;0;-0.38208008;3.9765778;10.501083 +10639;3;-0.1938324;-0.20491028;0.22973633 +10639;12;0.2171905;0.08495461;0.2560808;0.93810105 +10640;0;-0.3390808;3.938568;10.48201 +10640;1;-0.4333015;4.4451427;8.734362 +10641;3;-0.15718079;-0.18902588;0.22789001 +10643;0;-0.25309753;3.9005737;10.467697 +10643;12;0.21684578;0.08419036;0.2565396;0.93812436 +10643;3;-0.11991882;-0.17131042;0.2242279 +10646;1;-0.4206444;4.4384174;8.738399 +10646;0;-0.19577026;3.8293152;10.439087 +10646;3;-0.08509827;-0.1481018;0.2205658 +10647;4;14.143372;-0.29144287;-67.49725 +10647;6;-0.5093137;-0.35152724;0.018751383 +10647;7;0.86977786;-0.45776173;0.18422976;0.0;0.4931293;0.81968874;-0.29143414;0.0;-0.017603666 +10648;0;-0.18621826;3.772293;10.400925 +10648;3;-0.05027771;-0.123062134;0.21690369 +10649;12;0.21663968;0.08353611;0.2569917;0.9381067 +10650;0;-0.147995;3.7342834;10.3246155 +10650;1;-0.4099607;4.4345574;8.740867 +10651;2;-0.10164514;0.5307522;-1.7043629; +10651;3;-0.016693115;-0.0967865;0.21200562 +10652;0;-0.11456299;3.6962738;10.2816925 +10653;12;0.2165624;0.083026275;0.25743696;0.93804777 +10653;3;0.019348145;-0.06990051;0.20895386 +10655;0;-0.12890625;3.6677704;10.210159 +10655;1;-0.40159976;4.433533;8.741775 +10655;3;0.051116943;-0.042419434;0.20407104 +10656;5;999.59143 +10657;4;13.542175;0.1586914;-68.39752 +10657;6;-0.4978154;-0.34484622;0.012624622 +10657;7;0.8765199;-0.44939515;0.17250144;0.0;0.48121884;0.8269007;-0.29096997;0.0;-0.011881063 +10658;0;-0.10978699;3.6345215;10.129074 +10658;3;0.08166504;-0.01675415;0.20040894 +10658;12;0.21670632;0.08241486;0.25673702;0.9382602 +10660;0;-0.09068298;3.639267;10.028931 +10660;1;-0.39564824;4.4352245;8.741187 +10660;3;0.11280823;0.0052337646;0.19552612 +10662;0;-0.08111572;3.606018;9.9049225 +10663;12;0.21686257;0.08223353;0.25717393;0.93812037 +10663;3;0.13969421;0.024765015;0.19184875 +10664;0;-0.057235718;3.5680084;9.799988 +10665;1;-0.39171076;4.4394307;8.739229 +10665;3;0.16595459;0.040649414;0.18818665 +10668;4;13.243103;-0.74157715;-68.096924 +10668;6;-0.5163483;-0.34915987;0.0058403206 +10668;7;0.8686266;-0.4639177;0.17397764;0.0;0.4954369;0.8171549;-0.2946186;0.0;-0.0054878867 +10668;0;-0.06201172;3.5965118;9.718933 +10668;3;0.1867218;0.052871704;0.18452454 +10669;12;0.2171253;0.0821933;0.25760308;0.9379455 +10669;0;-0.06201172;3.5822601;9.59491 +10670;1;-0.3892496;4.445788;8.736107 +10670;2;-0.29627132;0.82007456;-1.2213125; +10670;3;0.20811462;0.060806274;0.18025208 +10672;0;-0.06201172;3.5680084;9.513855 +10672;12;0.21748175;0.08226094;0.25802198;0.9377417 +10672;3;0.22581482;0.0663147;0.1729126 +10674;0;-0.033355713;3.5347595;9.375534 +10674;1;-0.38766983;4.4539165;8.732036 +10674;3;0.24047852;0.07180786;0.16864014 +10677;4;15.04364;0.7598877;-67.49725 +10677;6;-0.54277223;-0.36053798;0.003557725 +10677;7;0.8556264;-0.48330382;0.18525907;0.0;0.51758325;0.80122745;-0.30023697;0.0;-0.0033289818 +10677;0;-0.047683716;3.5822601;9.242004 +10677;3;0.25575256;0.07424927;0.16436768 +10678;12;0.21793191;0.08237423;0.25831965;0.9375453 +10679;0;-0.028564453;3.5394897;9.089371 +10679;1;-0.3866889;4.4633827;8.727244 +10679;3;0.26675415;0.07485962;0.15948486 +10681;0;0.009643555;3.525238;8.979691 +10682;12;0.2184349;0.08255604;0.2586934;0.93730915 +10682;3;0.27713013;0.073638916;0.15336609 +10684;1;-0.38593665;4.4738975;8.721892 +10687;0;-0.042907715;3.5585022;8.850922 +10687;3;0.28263855;0.07180786;0.14787292 +10688;17;1;38dead6d7725;546;695;-55; +10689;17;1;38dead6d60ff;3103;474;-62; +10689;17;1;1c1bb5efa29a;8615;4303;-67; +10690;17;1;1c1bb5ecd182;7043;2409;-67; +10691;4;15.492249;-0.74157715;-67.64679 +10691;6;-0.552891;-0.38226724;0.004847787 +10691;7;0.8500502;-0.48724505;0.20001717;0.0;0.52668244;0.78958505;-0.31489843;0.0;-0.004497862 +10691;0;-0.019012451;3.5537567;8.745987 +10691;3;0.29118347;0.0687561;0.14482117 +10691;12;0.2189929;0.08276461;0.2590395;0.93706495 +10691;1;-0.38524327;4.4851103;8.716163 +10691;0;-0.038131714;3.5585022;8.669678 +10691;2;-0.348859;0.9331765;-0.34238434; +10691;3;0.29486084;0.0687561;0.14175415 +10691;0;-0.042907715;3.5442505;8.607666 +10691;12;0.21958682;0.0829807;0.25935742;0.9368189 +10692;3;0.29852295;0.069366455;0.13565063 +10693;0;-0.07156372;3.5205078;8.517059 +10694;1;-0.38469654;4.496736;8.710195 +10694;3;0.30218506;0.069366455;0.13198853 +10694;5;999.59143 +10696;4;14.143372;-0.59051514;-66.596985 +10696;6;-0.49875113;-0.39194742;0.0084021995 +10696;7;0.8766144;-0.442056;0.19008854;0.0;0.48113084;0.8115855;-0.33142442;0.0;-0.007764944 +10696;0;-0.095443726;3.5394897;8.426437 +10696;3;0.30523682;0.07180786;0.12832642 +10697;12;0.22022425;0.08315169;0.25941804;0.9366373 +10698;0;-0.11933899;3.5585022;8.321533 +10698;1;-0.38446403;4.508726;8.704004 +10698;3;0.30950928;0.07546997;0.12586975 +10700;0;-0.143219;3.5774994;8.235672 +10701;12;0.2208582;0.08339681;0.25969413;0.9363897 +10701;3;0.31440735;0.077301025;0.12161255 +10703;0;-0.21487427;3.5774994;8.154587 +10703;1;-0.38471267;4.5211515;8.697545 +10703;3;0.3186798;0.07852173;0.11854553 +10707;4;14.892578;-0.440979;-68.096924 +10707;6;-0.45017138;-0.41329798;0.026344014 +10707;7;0.89545685;-0.39848328;0.19841403;0.0;0.44449422;0.82456225;-0.3500313;0.0;-0.02412309 +10707;0;-0.26264954;3.6012573;8.059219 +10707;3;0.32356262;0.07974243;0.11793518 +10707;12;0.22150904;0.08367268;0.25995502;0.936139 +10708;1;-0.38536122;4.5340357;8.690807 +10708;0;-0.3199768;3.591751;7.98291 +10708;2;-0.22360796;0.97261715;0.40153408; +10708;3;0.32783508;0.07974243;0.11427307 +10710;0;-0.40596008;3.6250305;7.944748 +10711;12;0.2221801;0.08397346;0.26020056;0.93588465 +10712;1;-0.3863146;4.5473967;8.683781 +10713;3;0.33395386;0.07913208;0.11244202 +10713;0;-0.42507935;3.639267;7.8684235 +10713;3;0.34127808;0.07913208;0.111831665 +10716;4;15.942383;0.1586914;-67.64679 +10716;6;-0.40241843;-0.43265793;0.05397098 +10716;7;0.90991837;-0.35555643;0.21360724;0.0;0.41188586;0.8353319;-0.36410236;0.0;-0.04897402 +10717;0;-0.47283936;3.6250305;7.8302765 +10717;3;0.3461609;0.07913208;0.111831665 +10717;12;0.22287752;0.084282674;0.26039618;0.93563664 +10717;0;-0.5445099;3.6915283;7.8016815 +10718;1;-0.38742766;4.561341;8.676415 +10718;3;0.35165405;0.076690674;0.11244202 +10720;12;0.22360389;0.084618166;0.2606184;0.9353711 +10720;0;-0.57315063;3.7105408;7.7492065 +10720;3;0.35960388;0.07546997;0.116104126 +10723;1;-0.38848493;4.5758767;8.668711 +10723;0;-0.6113739;3.7200317;7.7015076 +10723;3;0.36387634;0.07241821;0.115493774 +10725;4;14.292908;-2.8411865;-66.89758 +10725;6;-0.32175055;-0.44874778;0.07921754 +10725;7;0.9348516;-0.2849184;0.21183509;0.0;0.34780592;0.85475516;-0.38525924;0.0;-0.071299665 +10725;0;-0.6639252;3.7628021;7.639511 +10725;3;0.3705902;0.06814575;0.116104126 +10725;12;0.22436239;0.084960476;0.26084;0.9350967 +10728;0;-0.7021332;3.796051;7.6204376 +10729;3;0.37426758;0.065078735;0.11793518 +10729;2;0.1641835;0.89815474;0.8895321; +10729;1;-0.3894051;4.5909986;8.66067 +10730;0;-0.6925812;3.862564;7.525055 +10730;12;0.225156;0.08530365;0.2610576;0.934814 +10730;3;0.3803711;0.062026978;0.12098694 +10733;0;-0.71647644;3.872055;7.525055 +10733;3;0.38464355;0.05958557;0.124053955 +10733;1;-0.3899944;4.606688;8.6523075 +10733;5;999.59143 +10734;4;15.792847;-1.6403198;-66.29639 +10734;6;-0.31150612;-0.47339037;0.09492596 +10734;7;0.93434334;-0.27278692;0.22932471;0.0;0.34624547;0.84719336;-0.40296084;0.0;-0.08435991 +10734;0;-0.71170044;3.9243164;7.525055 +10735;3;0.3864746;0.057144165;0.12464905 +10736;12;0.22598177;0.08563562;0.26126176;0.9345273 +10736;0;-0.70692444;3.962326;7.525055 +10737;1;-0.3902513;4.622785;8.643707 +10737;3;0.38891602;0.056533813;0.12771606 +10739;0;-0.6925812;3.9433289;7.4535065 +10740;12;0.22683127;0.0859626;0.26148692;0.9342283 +10740;3;0.38954163;0.05531311;0.12832642 +10741;0;-0.68782043;3.9765778;7.4058075 +10741;1;-0.39029014;4.6391897;8.634912 +10741;3;0.39076233;0.053482056;0.12649536 +10744;4;14.892578;-2.5405884;-66.89758 +10744;6;-0.28212476;-0.49098414;0.09261014 +10745;7;0.94421136;-0.24550977;0.21952187;0.0;0.31908298;0.8470054;-0.42516783;0.0;-0.08155334 +10746;0;-0.63049316;3.9575806;7.3724365 +10746;3;0.39013672;0.047973633;0.12098694 +10746;12;0.22769903;0.08628533;0.26171973;0.93392235 +10747;1;-0.3900591;4.655542;8.626117 +10747;0;-0.57315063;4.024109;7.467819 +10747;2;0.2913065;0.718709;1.1494522; +10748;3;0.38891602;0.044311523;0.11122131 +10753;0;-0.47283936;4.0811005;7.563202 +10753;12;0.22856663;0.08658769;0.2619405;0.9336204 +10753;3;0.38710022;0.047973633;0.10632324 +10754;0;-0.5015106;4.1523743;7.529831 +10754;3;0.3815918;0.05958557;0.10510254 +10754;1;-0.3897627;4.6718006;8.617335 +10754;4;14.442444;-2.9907227;-66.596985 +10754;6;-0.3225318;-0.5030255;0.06650495 +10754;7;0.9361846;-0.27770525;0.21549523;0.0;0.3466531;0.83095133;-0.43514532;0.0;-0.05822391 +10755;0;-0.49195862;4.176132;7.429657 +10755;3;0.37243652;0.07119751;0.11244202 +10755;12;0.22944458;0.086858705;0.2620086;0.9333607 +10758;0;-0.5874939;4.233139;7.348587 +10758;1;-0.3903418;4.6877775;8.608628 +10758;3;0.36631775;0.080963135;0.12283325 +10759;0;-0.60661316;4.2188873;7.2818146 +10759;3;0.35960388;0.08708191;0.13259888 +10759;12;0.23028064;0.087205425;0.26220354;0.9330678 +10761;0;-0.65914917;4.2473907;7.2484283 +10762;3;0.35043335;0.088912964;0.14421082 +10762;1;-0.3914092;4.703292;8.600114 +10763;4;15.342712;-1.6403198;-66.596985 +10763;6;-0.2755323;-0.5282481;0.09068741 +10763;7;0.94590795;-0.2349752;0.22370726;0.0;0.31486523;0.83111346;-0.45837802;0.0;-0.07821862 +10763;0;-0.65914917;4.252136;7.2388916 +10763;3;0.34066772;0.08830261;0.15458679 +10764;12;0.2310792;0.08758007;0.26245227;0.9327652 +10766;0;-0.65914917;4.3091583;7.2961273 +10766;3;0.32600403;0.08647156;0.16436768 +10766;1;-0.39220092;4.718151;8.591934 +10766;2;0.19327405;0.5123191;1.223506; +10768;0;-0.64482117;4.389923;7.358124 +10769;12;0.23184198;0.08794166;0.26275557;0.93245655 +10769;3;0.30828857;0.0846405;0.17718506 +10771;0;-0.62094116;4.480179;7.348587 +10771;3;0.28874207;0.088912964;0.19062805 +10772;1;-0.3923096;4.7319736;8.584325 +10772;5;999.59143 +10773;4;14.442444;-1.6403198;-66.596985 +10773;6;-0.25509116;-0.54591626;0.08429779 +10773;7;0.95317334;-0.2156574;0.21202013;0.0;0.29373866;0.8269956;-0.47937024;0.0;-0.071959965 +10773;0;-0.60661316;4.52771;7.4058075 +10773;3;0.26309204;0.09013367;0.20407104 +10779;0;-0.63526917;4.5989685;7.339035 +10779;3;0.23742676;0.093185425;0.21690369 +10779;0;-0.63526917;4.627472;7.353348 +10779;3;0.21055603;0.09196472;0.22973633 +10779;1;-0.39193732;4.744259;8.5775585 +10779;12;0.23259795;0.08814621;0.26263237;0.93228364 +10779;12;0.23322448;0.08844279;0.26305678;0.93197936 +10780;0;-0.63049316;4.684494;7.3724365 +10780;3;0.18183899;0.09135437;0.24072266 +10781;1;-0.39110142;4.7545495;8.571897 +10782;4;15.942383;-4.1915894;-66.44745 +10782;6;-0.3038688;-0.5643997;0.08531275 +10782;7;0.93707776;-0.25280887;0.24077559;0.0;0.3416168;0.8062012;-0.4830503;0.0;-0.07199418 +10782;0;-0.6161499;4.7414856;7.4630585 +10783;12;0.23374045;0.08869869;0.26355177;0.93168586 +10787;3;0.14945984;0.09013367;0.24928284 +10787;2;0.23976347;0.17222452;1.172492; +10788;1;-0.38962734;4.762444;8.56758 +10788;12;0.23412871;0.08889715;0.26410735;0.93141204 +10789;1;-0.38755918;4.7674975;8.564862 +10790;0;-0.5922699;4.684494;7.515518 +10790;3;0.11465454;0.08647156;0.2559967 +10790;0;-0.5874939;4.7224884;7.5012054 +10790;3;0.07676697;0.0846405;0.26454163 +10792;0;-0.5922699;4.7700043;7.5441284 +10792;3;0.03767395;0.08279419;0.27249146 +10792;12;0.23437072;0.089030124;0.26469588;0.93117136 +10792;4;15.792847;-4.0405273;-66.29639 +10793;6;-0.3141786;-0.56243074;0.0783467 +10793;7;0.9352355;-0.26143202;0.23872124;0.0;0.3477797;0.80455214;-0.48139924;0.0;-0.06621051 +10793;0;-0.62094116;4.8127594;7.567978 +10793;3;-0.002029419;0.07974243;0.27859497 +10794;0;-0.6687012;4.841263;7.596588 +10794;1;-0.38503778;4.7694235;8.563905 +10796;3;-0.044174194;0.07546997;0.28471375 +10797;0;-0.67349243;4.8555145;7.6633606 +10797;12;0.23444375;0.08910265;0.26534396;0.93096155 +10797;3;-0.08387756;0.07119751;0.29081726 +10799;0;-0.70692444;4.86026;7.7969055 +10799;1;-0.38196707;4.767941;8.564867 +10799;3;-0.124816895;0.0675354;0.29570007 +10801;4;15.04364;-2.6901245;-66.29639 +10801;6;-0.26418528;-0.5555814;0.09042008 +10802;7;0.948926;-0.22184844;0.22432746;0.0;0.3060298;0.8201178;-0.48347974;0.0;-0.076715715 +10802;0;-0.7260437;4.8127594;7.854141 +10802;3;-0.16696167;0.065704346;0.29997253 +10802;12;0.23433612;0.08909748;0.26603234;0.9307927 +10803;0;-0.7642517;4.8222656;7.973358 +10803;1;-0.37846532;4.7629504;8.5678 +10804;2;0.29667252;-0.048936844;0.8807602; +10804;3;-0.20910645;0.06263733;0.30548096 +10806;0;-0.7594757;4.7794952;8.040131 +10806;12;0.23404635;0.08901834;0.26675692;0.93066585 +10807;3;-0.25248718;0.06263733;0.30914307 +10808;0;-0.7594757;4.784256;8.14505 +10809;1;-0.37460488;4.7543387;8.57275 +10809;3;-0.29768372;0.06263733;0.31341553 +10809;5;999.5713 +10811;4;16.093445;-4.6401978;-66.596985 +10811;6;-0.31476915;-0.5292017;0.092975 +10811;7;0.9322501;-0.26724732;0.24390288;0.0;0.3528273;0.82079905;-0.4492236;0.0;-0.08014141 +10811;0;-0.7881317;4.7652435;8.235672 +10811;3;-0.3422699;0.06263733;0.317688 +10812;12;0.23356718;0.0888661;0.2675118;0.93058413 +10813;0;-0.816803;4.703491;8.326294 +10813;1;-0.370595;4.7418323;8.579848 +10813;3;-0.38687134;0.05958557;0.32014465 +10816;0;-0.859787;4.693985;8.478897 +10816;12;0.23287798;0.088651165;0.26831612;0.9305457 +10816;3;-0.4277954;0.055923462;0.32563782 +10818;0;-0.89323425;4.693985;8.559982 +10818;1;-0.3663572;4.7256427;8.588958 +10818;3;-0.4699402;0.053482056;0.32929993 +10820;4;15.193176;-1.7913818;-67.196655 +10820;6;-0.2552485;-0.49930662;0.10397372 +10820;7;0.9498279;-0.22166106;0.22066548;0.0;0.29920697;0.84947085;-0.4345969;0.0;-0.09111569 +10821;0;-0.87890625;4.65123;8.669678 +10821;3;-0.50904846;0.049209595;0.33296204 +10821;12;0.2319977;0.088365726;0.26914728;0.9305527 +10823;0;-0.897995;4.57045;8.774612 +10823;2;0.47902754;7.472038E-4;0.19650078; +10823;1;-0.36170545;4.70588;8.599998 +10823;3;-0.54325867;0.04675293;0.3384552 +10825;0;-0.93621826;4.522949;8.865219 +10825;12;0.23093107;0.08800471;0.27001095;0.930602 +10826;3;-0.57562256;0.041870117;0.3403015 +10828;0;-0.9792175;4.4849396;8.960602 +10828;1;-0.3566999;4.6830244;8.612674 +10828;3;-0.60739136;0.036987305;0.34274292 +10830;4;14.743042;-2.9907227;-65.54718 +10830;6;-0.27156395;-0.4616902;0.10884841 +10830;7;0.9446706;-0.24015409;0.22343528;0.0;0.31326964;0.8624904;-0.39745748;0.0;-0.09725976 +10830;0;-0.9601135;4.4089203;9.017838 +10830;3;-0.6361084;0.029647827;0.34457397 +10831;12;0.22971691;0.08755287;0.27080634;0.930714 +10832;0;-0.9601135;4.3994293;9.127518 +10832;1;-0.35118568;4.6574044;8.626781 +10833;3;-0.6605377;0.024154663;0.34213257 +10834;0;-0.91711426;4.3519135;9.208603 +10835;12;0.22835712;0.08705275;0.27171594;0.93083054 +10835;3;-0.683136;0.014389038;0.34152222 +10837;0;-0.91233826;4.323395;9.299225 +10837;1;-0.34510925;4.6295323;8.642016 +10837;3;-0.70025635;0.006439209;0.3372345 +10839;4;14.743042;-3.2913208;-67.49725 +10839;6;-0.30329314;-0.43336362;0.0977961 +10839;7;0.9375523;-0.2710556;0.21800151;0.0;0.33636782;0.8661357;-0.36968303;0.0;-0.088614255 +10839;0;-0.89323425;4.275894;9.361221 +10840;3;-0.71551514;-0.004547119;0.3347931 +10840;12;0.22688903;0.08648448;0.27262452;0.93097675 +10844;0;-0.859787;4.214142;9.4470825 +10844;1;-0.33839893;4.5999675;8.658053 +10844;2;0.5994576;0.22870636;-0.50322056; +10844;3;-0.7259064;-0.014312744;0.32991028 +10844;0;-0.8215637;4.1713715;9.537689 +10845;12;0.22534509;0.085847884;0.2735184;0.9311485 +10845;3;-0.73568726;-0.025924683;0.3244171 +10849;1;-0.3309693;4.569225;8.674603 +10849;0;-0.7976837;4.1048584;9.599686 +10849;3;-0.7442322;-0.03692627;0.317688 +10849;5;999.5713 +10855;12;0.22376834;0.08511476;0.2742503;0.9313807 +10855;1;-0.32277188;4.537651;8.691469 +10856;4;14.442444;-2.241516;-65.097046 +10856;6;-0.3610731;-0.40283147;0.08290432 +10856;7;0.92083657;-0.3250001;0.21548787;0.0;0.38243508;0.8606345;-0.33623192;0.0;-0.07618088 +10856;12;0.22215566;0.08435235;0.27507922;0.93159163 +10856;0;-0.7738037;4.0621033;9.685532 +10856;3;-0.7466736;-0.054031372;0.31158447 +10856;0;-0.7881317;4.000351;9.723679 +10856;3;-0.7448425;-0.06867981;0.30485535 +10856;0;-0.7642517;3.9813385;9.785706 +10856;3;-0.74116516;-0.08578491;0.29814148 +10858;1;-0.31353262;4.5060053;8.708257 +10858;0;-0.71170044;3.9195862;9.804764 +10858;3;-0.73139954;-0.10227966;0.29081726 +10859;4;14.143372;-2.6901245;-67.796326 +10859;6;-0.3815805;-0.37939766;0.07246012 +10859;7;0.9156571;-0.34590653;0.20474577;0.0;0.3962951;0.8620798;-0.31586203;0.0;-0.06724845 +10859;0;-0.5827179;3.9195862;9.8572235 +10860;12;0.22056377;0.083519414;0.27586234;0.93181336 +10860;3;-0.71673584;-0.12184143;0.28349304 +10863;1;-0.30291107;4.474819;8.724697 +10863;2;0.43294635;0.47234297;-1.0184393; +10864;0;-0.5540619;3.8910675;9.938309 +10864;3;-0.70025635;-0.14382935;0.27798462 +10864;0;-0.6257019;3.8768158;9.990768 +10865;12;0.21902223;0.082619056;0.27659574;0.9320398 +10865;3;-0.6800842;-0.16825867;0.27064514 +10867;1;-0.2909357;4.445083;8.740292 +10867;0;-0.6687012;3.8197937;10.028931 +10867;3;-0.65504456;-0.18719482;0.25904846 +10869;4;15.792847;0.009155273;-66.596985 +10869;6;-0.44116893;-0.36317638;0.066578664 +10869;7;0.892158;-0.39914507;0.21151197;0.0;0.44742203;0.84527147;-0.29211202;0.0;-0.062189978 +10869;0;-0.6257019;3.7913055;10.028931 +10869;3;-0.6275635;-0.20735168;0.24865723 +10870;12;0.21759285;0.08164623;0.27721804;0.9322755 +10871;0;-0.55882263;3.7675476;10.038467 +10871;1;-0.27764305;4.417258;8.754819 +10871;3;-0.5963898;-0.22262573;0.24194336 +10874;0;-0.43463135;3.7485352;10.086151 +10874;12;0.2162906;0.08062742;0.27781108;0.9324906 +10874;3;-0.5621948;-0.22994995;0.24072266 +10876;0;-0.36775208;3.7913055;10.062302 +10876;1;-0.26319388;4.3919673;8.76798 +10876;3;-0.52493286;-0.23422241;0.23950195 +10878;4;13.542175;-1.1901855;-67.196655 +10878;6;-0.45364225;-0.3601129;0.03653125 +10878;7;0.892617;-0.41013214;0.18715379;0.0;0.4495182;0.84120154;-0.3005218;0.0;-0.034180425 +10878;0;-0.38685608;3.8103027;10.071854 +10879;3;-0.48460388;-0.23728943;0.23950195 +10879;12;0.21514642;0.07958757;0.27834934;0.932684 +10880;0;-0.37728882;3.8483124;10.090927 +10880;1;-0.24829881;4.3697124;8.779526 +10881;2;0.2695002;0.56953764;-1.2732038; +10881;3;-0.4424591;-0.23422241;0.23583984 +10883;0;-0.3199768;3.8340607;10.048004 +10883;3;-0.39604187;-0.22567749;0.22911072 +10883;12;0.21417107;0.07857168;0.27886686;0.9328401 +10885;0;-0.20533752;3.8150635;10.024155 +10885;1;-0.23377314;4.351178;8.7891245 +10886;3;-0.35144043;-0.21713257;0.22117615 +10886;5;999.5713 +10889;4;15.792847;-0.59051514;-67.04712 +10889;6;-0.5521213;-0.36359015;0.02048141 +10889;7;0.84741515;-0.4902062;0.20392482;0.0;0.5305856;0.79575354;-0.29198486;0.0;-0.01914112 +10889;0;-0.09068298;3.843567;10.009842 +10890;3;-0.30439758;-0.20246887;0.21385193 +10890;12;0.21339035;0.077623166;0.27933857;0.93295723 +10891;0;-0.042907715;3.872055;9.966934 +10891;3;-0.26042175;-0.18292236;0.2071228 +10891;1;-0.2202736;4.336604;8.796673 +10892;0;-0.0046844482;3.9148254;9.900162 +10893;12;0.21280447;0.076793864;0.27978304;0.9330265 +10894;3;-0.2133789;-0.15971375;0.19979858 +10895;0;0.04786682;3.9148254;9.833389 +10895;1;-0.20844077;4.325806;8.802276 +10896;3;-0.16818237;-0.1322174;0.1924591 +10898;4;14.743042;-0.59051514;-68.24646 +10898;6;-0.548567;-0.37887675;-0.0048677465 +10898;7;0.85420144;-0.48448312;0.1887222;0.0;0.5199226;0.7927592;-0.31814063;0.0;0.0045225113 +10898;0;0.07652283;4.009842;9.766617 +10899;3;-0.12541199;-0.10411072;0.18391418 +10899;12;0.2123933;0.07610875;0.2802044;0.93304986 +10900;0;0.07652283;4.019348;9.723679 +10900;1;-0.19918625;4.3190093;8.805827 +10900;2;-0.12976927;0.42476654;-1.1072998; +10901;3;-0.08692932;-0.07662964;0.1765747 +10902;0;0.062194824;4.0336;9.661682 +10903;3;-0.047836304;-0.050964355;0.16986084 +10903;12;0.21215208;0.0756177;0.28059882;0.9330262 +10904;1;-0.19255589;4.3156495;8.807622 +10904;0;0.07652283;4.095352;9.59491 +10905;3;-0.011199951;-0.025314331;0.16375732 +10907;4;13.842773;-2.090454;-66.89758 +10907;6;-0.5343286;-0.40340436;-0.007975188 +10907;7;0.8621777;-0.4683847;0.19304238;0.0;0.5065528;0.7915295;-0.3418849;0.0;0.007334941 +10908;0;0.09562683;4.1381226;9.494766 +10908;3;0.019348145;-8.69751E-4;0.15948486 +10908;12;0.21206215;0.07529361;0.28089043;0.93298507 +10909;0;0.09562683;4.185623;9.394608 +10909;1;-0.18827638;4.3154798;8.807797 +10910;3;0.048675537;0.015609741;0.15641785 +10912;0;0.119506836;4.266403;9.242004 +10912;12;0.21209775;0.07515953;0.28125;0.93287945 +10913;3;0.07493591;0.030273438;0.15336609 +10914;0;0.114746094;4.2949066;9.160919 +10914;3;0.09448242;0.04248047;0.14970398 +10914;1;-0.18562877;4.3179812;8.806627 +10920;12;0.21224512;0.07515346;0.28160128;0.93274045 +10920;1;-0.18406515;4.3224316;8.804477 +10920;2;-0.27075344;0.10284281;-0.51703453; +10920;4;14.743042;-1.0406494;-67.04712 +10921;6;-0.51649696;-0.43837133;-0.012524955 +10921;7;0.8721117;-0.4471419;0.19870946;0.0;0.48917553;0.787333;-0.37525195;0.0;0.01134035 +10921;0;0.09085083;4.375656;9.075058 +10921;3;0.11036682;0.049209595;0.14970398 +10921;0;0.124298096;4.4421844;8.912918 +10921;3;0.12257385;0.053482056;0.14482117 +10923;0;0.066970825;4.4849396;8.850922 +10923;12;0.2124768;0.075234815;0.28194395;0.93257767 +10923;3;0.13113403;0.05531311;0.14297485 +10924;1;-0.18301022;4.3281155;8.801706 +10924;0;0.10041809;4.53244;8.73645 +10924;3;0.13601685;0.05470276;0.14053345 +10924;5;999.5713 +10928;12;0.21276838;0.075346656;0.28222018;0.9324185 +10928;4;14.593506;-1.1901855;-67.196655 +10928;6;-0.47594705;-0.4785445;-0.011493646 +10928;7;0.89122546;-0.40671125;0.20075652;0.0;0.45344585;0.78901017;-0.4145477;0.0;0.010202295 +10928;0;0.10997009;4.594223;8.65538 +10928;3;0.13479614;0.05104065;0.13565063 +10930;17;1;38dead6d7725;3156;1134;-61; +10931;17;1;38dead6d60ff;3091;1066;-61; +10932;17;1;1c1bb5efa29a;9074;2459;-70; +10932;17;1;1c1bb5ecd182;10068;1757;-67; +10933;1;-0.18193126;4.3343744;8.798648 +10933;12;0.21308304;0.075477414;0.2825333;0.93224126 +10933;0;0.16729736;4.6559753;8.579071 +10933;3;0.13479614;0.044921875;0.13320923 +10933;0;0.1481781;4.6892242;8.483673 +10933;3;0.13113403;0.040649414;0.13015747 +10933;0;0.1720581;4.703491;8.407364 +10934;1;-0.1805251;4.3406925;8.795562 +10934;3;0.12319946;0.032104492;0.12527466 +10935;4;14.593506;-1.1901855;-66.89758 +10935;6;-0.46939132;-0.5099795;-0.020462312 +10935;7;0.8961752;-0.3947848;0.20252159;0.0;0.44334084;0.7783606;-0.4445261;0.0;0.017857326 +10936;0;0.1481781;4.7224884;8.369217 +10936;3;0.115249634;0.022323608;0.11732483 +10937;12;0.21340266;0.07558983;0.28282678;0.93207 +10938;1;-0.1786926;4.3465333;8.792715 +10938;0;0.1481781;4.7747498;8.311981 +10938;2;-0.30155826;-0.28990507;0.2395649; +10938;3;0.103652954;0.013763428;0.10876465 +10940;0;0.1625061;4.803253;8.254761 +10941;3;0.09020996;0.006439209;0.10206604 +10941;12;0.2137057;0.07566695;0.28309086;0.9319142 +10942;0;0.1481781;4.793747;8.249985 +10943;1;-0.17645834;4.3515234;8.790292 +10943;3;0.07676697;3.5095215E-4;0.09411621 +10945;4;14.593506;-0.440979;-66.14685 +10945;6;-0.4494598;-0.5263075;-0.017959084 +10945;7;0.9044562;-0.3756801;0.20204821;0.0;0.42628384;0.7787908;-0.46018162;0.0;0.015527809 +10945;0;0.1816101;4.8317566;8.2118225 +10945;3;0.06088257;-0.0039367676;0.08862305 +10946;12;0.21397576;0.07568262;0.28324124;0.93180525 +10948;0;0.19117737;4.879257;8.192749 +10949;1;-0.17397283;4.3554044;8.788419 +10949;3;0.04560852;-0.010040283;0.083114624 +10955;0;0.17684937;4.850769;8.135513 +10955;12;0.21418642;0.07567782;0.28343233;0.9316991 +10955;3;0.030960083;-0.014312744;0.07701111 +10955;1;-0.17129272;4.358062;8.787153 +10955;0;0.16729736;4.8555145;8.054443 +10955;12;0.21433643;0.07563692;0.2835989;0.93161726 +10956;3;0.012008667;-0.019195557;0.071517944 +10956;4;15.942383;-2.090454;-69.14673 +10956;6;-0.47573376;-0.54240733;-0.020767832 +10956;7;0.89367473;-0.3922547;0.2179032;0.0;0.4483628;0.76136357;-0.4682908;0.0;0.017785713 +10956;0;0.1625061;4.8365173;8.049683 +10956;3;-0.002029419;-0.026535034;0.06478882 +10957;0;0.1625061;4.841263;8.040131 +10957;1;-0.16844048;4.359312;8.786589 +10957;2;-0.32878536;-0.47097588;0.63502216; +10957;3;-0.016067505;-0.03263855;0.059906006 +10959;0;0.1720581;4.8222656;8.025818 +10960;12;0.2144164;0.075555764;0.28373837;0.9315629 +10960;3;-0.033798218;-0.03692627;0.055633545 +10962;0;0.1481781;4.817505;7.992447 +10962;1;-0.16531007;4.359296;8.786655 +10962;3;-0.04966736;-0.043029785;0.050750732 +10963;5;999.56244 +10964;4;15.04364;0.30975342;-66.596985 +10964;6;-0.4409028;-0.5423684;-0.018537642 +10964;7;0.90829456;-0.36551175;0.20347525;0.0;0.41802984;0.7745798;-0.47463372;0.0;0.01587637 +10964;0;0.1386261;4.827011;7.98291 +10964;3;-0.064941406;-0.050964355;0.047073364 +10965;12;0.21444201;0.07541933;0.28378573;0.9315537 +10966;0;0.1529541;4.8222656;8.011505 +10967;1;-0.161876;4.357924;8.7874 +10967;3;-0.07533264;-0.058303833;0.04219055 +10969;12;0.21439609;0.0752527;0.28388092;0.9315488 +10969;0;0.16729736;4.803253;7.98291 +10970;3;-0.088150024;-0.061965942;0.03730774 +10971;0;0.1529541;4.7890015;8.016281 +10972;1;-0.1580644;4.3554854;8.788679 +10972;3;-0.100982666;-0.06562805;0.031799316 +10973;4;15.193176;-1.7913818;-67.196655 +10974;6;-0.46583825;-0.5384323;-0.019078117 +10974;7;0.89767677;-0.38562018;0.21324508;0.0;0.44035;0.767035;-0.46663594;0.0;0.016377829 +10974;0;0.1481781;4.7557526;8.054443 +10974;3;-0.1113739;-0.06867981;0.029968262 +10975;12;0.21430032;0.07504413;0.28395343;0.9315655 +10976;0;0.1577301;4.7462463;8.059219 +10976;1;-0.15415852;4.3519263;8.790511 +10977;2;-0.301152;-0.44184303;0.77290535; +10977;3;-0.11930847;-0.071121216;0.02508545 +10978;0;0.1338501;4.7652435;8.059219 +10979;12;0.21415201;0.07480765;0.28400692;0.93160224 +10979;3;-0.12663269;-0.07296753;0.019592285 +10981;0;0.1338501;4.717743;8.097366 +10981;1;-0.1502576;4.347633;8.792703 +10981;3;-0.13519287;-0.074798584;0.016525269 +10983;4;15.193176;-1.7913818;-67.196655 +10983;6;-0.46932983;-0.52748764;-0.016528573 +10983;7;0.8955126;-0.39081106;0.2128941;0.0;0.4448069;0.77064335;-0.45635015;0.0;0.0142812645 +10983;0;0.1434021;4.670227;8.135513 +10984;3;-0.141922;-0.07418823;0.013473511 +10984;12;0.21396519;0.07454865;0.28402925;0.9316592 +10986;0;0.114746094;4.6892242;8.14505 +10986;1;-0.1464188;4.3425736;8.795267 +10986;3;-0.14680481;-0.07052612;0.00920105 +10988;0;0.1290741;4.6654816;8.159363 +10989;12;0.21374139;0.07428076;0.28404942;0.93172574 +10989;3;-0.14924622;-0.06806946;0.0043182373 +10991;0;0.10041809;4.622711;8.173676 +10991;1;-0.14299478;4.3370585;8.798044 +10991;3;-0.15229797;-0.066848755;-0.0018005371 +10993;4;14.892578;-1.4907837;-67.196655 +10993;6;-0.46043816;-0.5146792;-0.012284931 +10993;7;0.8984774;-0.38677663;0.20770742;0.0;0.43888968;0.77980006;-0.4464164;0.0;0.010693156 +10993;0;0.07652283;4.6322327;8.178452 +10993;3;-0.15596008;-0.06562805;-0.006072998 +10994;12;0.21348888;0.074023046;0.28405535;0.93180245 +10995;0;0.09562683;4.5799713;8.245209 +10995;1;-0.13996713;4.331214;8.800972 +10996;2;-0.24898118;-0.33411646;0.65060234; +10996;3;-0.1578064;-0.063186646;-0.010345459 +10998;0;0.062194824;4.5847015;8.302444 +10998;12;0.21321458;0.07377191;0.28404027;0.93188965 +10998;3;-0.1578064;-0.058914185;-0.013397217 +11000;0;0.07652283;4.5657043;8.335815 +11000;1;-0.13735016;4.3251133;8.804012 +11000;3;-0.15840149;-0.055252075;-0.01828003 +11001;5;999.56244 +11002;4;14.892578;-1.4907837;-67.196655 +11002;6;-0.46510908;-0.5010744;-0.009179747 +11002;7;0.8957128;-0.39338237;0.20724131;0.0;0.4445603;0.78389853;-0.43343908;0.0;0.00805114 +11003;0;0.052627563;4.53244;8.369217 +11003;3;-0.1578064;-0.050964355;-0.021942139 +11003;12;0.21292558;0.07352877;0.28399158;0.93198985 +11005;0;0.08129883;4.52771;8.435989 +11005;1;-0.13524409;4.3188996;8.807095 +11005;3;-0.15840149;-0.04547119;-0.023788452 +11009;0;0.04307556;4.52771;8.44075 +11009;12;0.21262485;0.073310554;0.2839481;0.932089 +11010;3;-0.1578064;-0.039978027;-0.02684021 +11010;1;-0.13370906;4.3126283;8.810191 +11011;0;0.057418823;4.5086975;8.521835 +11011;3;-0.1578064;-0.035705566;-0.029876709 +11014;4;13.842773;-2.8411865;-67.196655 +11014;6;-0.45978507;-0.48662746;-0.0067377454 +11014;7;0.8975258;-0.39224216;0.20147848;0.0;0.44092178;0.7921186;-0.42206174;0.0;0.0059555494 +11014;0;0.03352356;4.503952;8.531357 +11014;12;0.2123134;0.07311777;0.2838983;0.9321903 +11014;3;-0.1578064;-0.0332489;-0.031097412 +11016;0;0.019195557;4.4897003;8.588608 +11017;1;-0.13266262;4.306303;8.8133 +11017;2;-0.17956562;-0.22219276;0.37187195; +11017;3;-0.15962219;-0.028366089;-0.031097412 +11019;12;0.21199289;0.07294758;0.28384066;0.932294 +11019;0;-0.028564453;4.470688;8.650604 +11019;3;-0.15962219;-0.024093628;-0.031723022 +11020;1;-0.13205336;4.2998257;8.816471 +11020;0;-0.019012451;4.4754486;8.65538 +11020;3;-0.15962219;-0.021652222;-0.031097412 +11023;4;13.842773;-2.8411865;-67.196655 +11024;6;-0.44996336;-0.47721022;0.0021966014 +11024;7;0.90002203;-0.38634178;0.20174325;0.0;0.43584004;0.7998631;-0.4126289;0.0;-0.0019511951 +11024;0;-0.042907715;4.503952;8.698288 +11024;3;-0.1602478;-0.020431519;-0.031723022 +11024;12;0.21166451;0.072788775;0.28375205;0.9324081 +11024;1;-0.13170333;4.2932606;8.819675 +11024;0;-0.06678772;4.465927;8.78891 +11025;3;-0.1620636;-0.018600464;-0.031097412 +11031;12;0.21132468;0.07264873;0.28369868;0.93251234 +11031;1;-0.1314741;4.2867;8.82287 +11031;0;-0.06201172;4.4897003;8.745987 +11031;3;-0.1614685;-0.018600464;-0.031723022 +11031;0;-0.07156372;4.4991913;8.822296 +11032;3;-0.1620636;-0.020431519;-0.031097412 +11033;4;14.743042;-1.940918;-67.04712 +11033;6;-0.45826447;-0.47158608;0.008111511 +11033;7;0.89516187;-0.39410463;0.20824659;0.0;0.44568247;0.79893243;-0.40382403;0.0;-0.007226051 +11033;12;0.2109833;0.07251536;0.2836473;0.93261564 +11033;0;-0.08590698;4.465927;8.779373 +11034;17;1;38dead6d7725;2995;873;-58; +11035;17;1;38dead6d60ff;3019;807;-59; +11035;17;1;1c1bb5efa29a;8947;2571;-71; +11036;17;1;1c1bb5ecd182;11619;1541;-74; +11036;1;-0.13122286;4.2799935;8.826129 +11037;2;-0.06608631;-0.19912577;0.080311775; +11037;3;-0.16268921;-0.019195557;-0.031723022 +11037;0;-0.095443726;4.470688;8.822296 +11037;3;-0.164505;-0.020431519;-0.03416443 +11037;0;-0.09068298;4.470688;8.865219 +11037;12;0.21063568;0.07237731;0.28359464;0.93272084 +11037;3;-0.1632843;-0.024093628;-0.036605835 +11040;1;-0.13095236;4.2732277;8.82941 +11040;0;-0.095443726;4.4611816;8.884293 +11040;3;-0.16268921;-0.027755737;-0.042099 +11040;5;999.56244 +11042;4;14.743042;-1.940918;-67.04712 +11042;6;-0.4583339;-0.46533704;0.010742561 +11042;7;0.8946064;-0.39540854;0.20816217;0.0;0.44675186;0.8014354;-0.3976354;0.0;-0.009600123 +11043;0;-0.09068298;4.465927;8.936752 +11043;12;0.21028739;0.0722323;0.28352132;0.932833 +11045;3;-0.1614685;-0.030197144;-0.048828125 +11045;1;-0.13061209;4.2664976;8.832669 +11045;0;-0.10978699;4.456436;8.946289 +11045;3;-0.1620636;-0.0332489;-0.053710938 +11047;0;-0.10978699;4.4611816;8.936752 +11047;12;0.20994447;0.07208184;0.28343287;0.93294877 +11047;3;-0.15962219;-0.035079956;-0.0592041 +11052;0;-0.12890625;4.4611816;8.974915 +11052;1;-0.13030083;4.2598124;8.8359 +11052;3;-0.15534973;-0.035705566;-0.06715393 +11052;4;15.342712;-1.6403198;-66.596985 +11052;6;-0.47073182;-0.46126166;0.014361964 +11053;7;0.8882457;-0.4061401;0.2146388;0.0;0.45918864;0.798095;-0.39011565;0.0;-0.012860577 +11053;0;-0.13366699;4.4849396;8.984451 +11053;3;-0.15290833;-0.039367676;-0.072647095 +11053;12;0.20960596;0.071927436;0.2833167;0.9330721 +11053;0;-0.12890625;4.4279175;8.970154 +11053;1;-0.13013475;4.253392;8.838995 +11053;2;-0.013123453;-0.20705175;-0.09862137; +11054;3;-0.15046692;-0.042419434;-0.07875061 +11055;0;-0.16711426;4.456436;8.998749 +11056;12;0.20928124;0.07177716;0.28316748;0.93320185 +11056;3;-0.14924622;-0.04119873;-0.08547974 +11058;0;-0.147995;4.4516907;9.027374 +11058;1;-0.13006881;4.2471294;8.842007 +11058;3;-0.14251709;-0.04486084;-0.09158325 +11060;4;14.292908;-0.440979;-69.14673 +11060;6;-0.4098799;-0.45808515;0.016392557 +11060;7;0.9141568;-0.3574143;0.1912393;0.0;0.4050942;0.8226095;-0.39901426;0.0;-0.0147018405 +11060;0;-0.17666626;4.432678;9.03215 +11061;3;-0.13824463;-0.047302246;-0.097076416 +11061;12;0.20897517;0.07160024;0.28287;0.9333743 +11062;0;-0.16711426;4.44693;9.027374 +11063;1;-0.1300862;4.241243;8.844831 +11063;3;-0.13458252;-0.047302246;-0.10197449 +11065;0;-0.21009827;4.480179;9.036911 +11065;12;0.208683;0.07145502;0.28265876;0.93351465 +11065;3;-0.1278534;-0.0491333;-0.10746765 +11068;0;-0.25309753;4.4089203;9.051224 +11068;1;-0.13030046;4.2357407;8.8474655 +11069;3;-0.12113953;-0.0491333;-0.112350464 +11070;4;15.342712;-1.940918;-68.24646 +11070;6;-0.44295406;-0.45312676;0.027955512 +11070;7;0.8978916;-0.38535607;0.21281746;0.0;0.43949854;0.81231165;-0.3833936;0.0;-0.025131041 +11070;0;-0.24832153;4.4754486;9.075058 +11070;3;-0.113204956;-0.051574707;-0.116622925 +11071;12;0.20840935;0.07131922;0.28242102;0.9336581 +11072;0;-0.24354553;4.4754486;9.094147 +11072;1;-0.13063623;4.230845;8.849802 +11072;2;0.07731457;-0.22213125;-0.19321728; +11073;3;-0.10586548;-0.054031372;-0.120895386 +11077;0;-0.23876953;4.480179;9.041687 +11077;12;0.20816861;0.07119336;0.28215787;0.933801 +11077;1;-0.13097632;4.2266054;8.851823 +11078;3;-0.09793091;-0.054641724;-0.12701416 +11078;0;-0.22921753;4.465927;9.075058 +11078;3;-0.088760376;-0.05340576;-0.13128662 +11078;5;999.56244 +11079;4;13.842773;-1.1901855;-65.69672 +11079;6;-0.40928626;-0.45718944;0.0252526 +11079;7;0.912677;-0.35708338;0.19877668;0.0;0.40805316;0.82318455;-0.3947908;0.0;-0.022656666 +11079;0;-0.23399353;4.4754486;9.08461 +11079;3;-0.07777405;-0.055252075;-0.13618469 +11080;12;0.20796525;0.07106574;0.28183722;0.93395287 +11082;0;-0.25309753;4.480179;9.0607605 +11082;1;-0.1315233;4.2231536;8.853462 +11082;3;-0.07165527;-0.054641724;-0.14228821 +11084;0;-0.25309753;4.4991913;9.075058 +11084;12;0.20780057;0.070964575;0.2815229;0.934092 +11084;3;-0.061279297;-0.054641724;-0.14656067 +11087;0;-0.24832153;4.503952;9.051224 +11087;1;-0.1322794;4.2204394;8.854745 +11087;3;-0.05027771;-0.05708313;-0.15022278 +11089;4;15.04364;-1.0406494;-66.29639 +11089;6;-0.43076622;-0.46158132;0.027428254 +11089;7;0.9032041;-0.37386847;0.21081911;0.0;0.42850834;0.81355566;-0.39307478;0.0;-0.02455479 +11089;0;-0.26742554;4.494446;9.065521 +11090;3;-0.039901733;-0.05769348;-0.1557312 +11090;12;0.20767255;0.07088002;0.28118148;0.93422973 +11091;0;-0.25787354;4.5419617;9.027374 +11091;1;-0.13310532;4.2186565;8.855582 +11092;2;0.12112829;-0.2738967;-0.20453835; +11092;3;-0.03012085;-0.05647278;-0.1587677 +11094;0;-0.2817688;4.5752106;9.041687 +11094;3;-0.019134521;-0.058303833;-0.16183472 +11095;12;0.2075958;0.07081031;0.28081533;0.9343621 +11096;1;-0.13408802;4.217779;8.855985 +11096;0;-0.25309753;4.5419617;9.027374 +11097;3;-0.009353638;-0.058303833;-0.16610718 +11098;4;13.693237;0.009155273;-67.796326 +11098;6;-0.3673724;-0.46599245;0.028029328 +11099;7;0.9283851;-0.3208689;0.18746826;0.0;0.3707753;0.83376503;-0.40909863;0.0;-0.025037454 +11099;0;-0.24832153;4.556198;9.003525 +11099;3;-8.087158E-4;-0.05647278;-0.16793823 +11100;12;0.20757748;0.07071522;0.28024235;0.93454546 +11101;0;-0.2817688;4.5894623;8.994003 +11101;1;-0.135197;4.2177677;8.855973 +11101;3;0.007751465;-0.05708313;-0.1703949 +11104;0;-0.2817688;4.57045;8.955841 +11104;12;0.20759006;0.07068124;0.27983752;0.93466663 +11104;3;0.016906738;-0.05708313;-0.16976929 +11106;0;-0.30085754;4.603714;8.941528 +11106;1;-0.13641633;4.2185354;8.855589 +11106;3;0.02545166;-0.058303833;-0.17098999 +11108;4;14.593506;-0.440979;-67.64679 +11108;6;-0.38060832;-0.4752415;0.033634525 +11108;7;0.9221978;-0.33031812;0.20109987;0.0;0.38556075;0.8255513;-0.41207755;0.0;-0.029901583 +11109;0;-0.3056488;4.594223;8.898605 +11109;3;0.031570435;-0.058303833;-0.1728363 +11110;12;0.20764267;0.070663415;0.27942246;0.9347804 +11111;0;-0.30085754;4.61322;8.879532 +11111;3;0.038894653;-0.058303833;-0.1734314 +11111;1;-0.1376382;4.2200365;8.854855 +11111;2;0.15103908;-0.36111403;-0.11251259; +11113;0;-0.30085754;4.5894623;8.855682 +11114;12;0.20773318;0.07065511;0.27899978;0.9348872 +11114;3;0.046218872;-0.05769348;-0.1734314 +11115;0;-0.2960968;4.65123;8.779373 +11116;1;-0.13889939;4.222186;8.85381 +11116;3;0.051116943;-0.058303833;-0.17527771 +11117;5;999.5646 +11118;4;15.193176;-1.1901855;-67.64679 +11118;6;-0.39647037;-0.48696005;0.03371364 +11118;7;0.91581464;-0.34127694;0.21169248;0.0;0.40049505;0.8152061;-0.4183813;0.0;-0.029789105 +11118;0;-0.3199768;4.6322327;8.798447 +11119;3;0.055999756;-0.060134888;-0.1746521 +11119;12;0.2078584;0.07065857;0.27856517;0.9349886 +11120;0;-0.3390808;4.6417236;8.798447 +11120;1;-0.1401831;4.224825;8.852531 +11121;3;0.06149292;-0.06074524;-0.17527771 +11122;0;-0.30085754;4.6417236;8.7603 +11123;3;0.06333923;-0.06135559;-0.1728363 +11124;12;0.20800835;0.07066936;0.2781302;0.9350839 +11125;0;-0.2817688;4.65123;8.755524 +11125;1;-0.14132111;4.227869;8.85106 +11126;3;0.06639099;-0.06074524;-0.1728363 +11128;4;15.492249;-1.7913818;-67.196655 +11128;6;-0.41611737;-0.48810688;0.032170728 +11128;7;0.90809476;-0.35700917;0.21887949;0.0;0.41779986;0.8078526;-0.415713;0.0;-0.028409002 +11129;0;-0.26264954;4.6797333;8.774612 +11129;3;0.06578064;-0.058914185;-0.1703949 +11131;12;0.208181;0.07067927;0.27769536;0.9351741 +11132;0;-0.2960968;4.717743;8.726913 +11132;3;0.06515503;-0.06074524;-0.16732788 +11132;1;-0.14245194;4.231142;8.849477 +11132;2;0.16457637;-0.42116737;0.0692358; +11132;0;-0.28652954;4.7082367;8.70784 +11134;12;0.20836522;0.070695765;0.2772626;0.9352602 +11134;3;0.06455994;-0.06074524;-0.16610718 +11135;0;-0.24354553;4.717743;8.669678 +11135;1;-0.1434176;4.2343793;8.847914 +11136;3;0.06333923;-0.06135559;-0.16549683 +11137;4;16.242981;-1.1901855;-65.24658 +11137;6;-0.44329387;-0.49818742;0.028084261 +11137;7;0.89723235;-0.37678242;0.23023689;0.0;0.44086906;0.7935424;-0.41943395;0.0;-0.024667379 +11138;0;-0.2817688;4.7414856;8.664902 +11138;3;0.06210327;-0.063186646;-0.16610718 +11139;12;0.20854804;0.0707061;0.27684528;0.93534225 +11140;0;-0.30085754;4.7890015;8.621979 +11140;3;0.058441162;-0.06867981;-0.16549683 +11140;1;-0.1443434;4.23762;8.846347 +11142;0;-0.26742554;4.760498;8.612442 +11142;12;0.20873097;0.07071405;0.27642706;0.9354245 +11142;3;0.05722046;-0.071746826;-0.16427612 +11144;0;-0.25309753;4.803253;8.607666 +11144;1;-0.14487654;4.240701;8.844861 +11144;3;0.051116943;-0.07662964;-0.16305542 +11148;17;1;38dead6d7725;2775;540;-62; +11148;17;1;38dead6d60ff;2714;495;-59; +11149;17;1;1c1bb5efa29a;9888;1507;-70; +11149;17;1;1c1bb5ecd182;9167;3786;-69; +11151;4;14.442444;-1.3412476;-69.44733 +11151;6;-0.36080185;-0.5087962;0.029395264 +11152;7;0.9301556;-0.30830753;0.19939192;0.0;0.36626744;0.81710136;-0.44518957;0.0;-0.025668116 +11152;12;0.20891091;0.07069916;0.2760053;0.93551 +11152;1;-0.14497863;4.243433;8.84355 +11152;2;0.12717772;-0.5279527;0.21068573; +11152;0;-0.25309753;4.8079987;8.598129 +11152;3;0.046844482;-0.08029175;-0.1612091 +11152;0;-0.22921753;4.817505;8.593384 +11152;3;0.04194641;-0.08639526;-0.1581726 +11152;0;-0.20054626;4.841263;8.550446 +11152;12;0.20907784;0.07065742;0.27559;0.9355984 +11153;3;0.035232544;-0.09007263;-0.1545105 +11154;1;-0.1445057;4.245776;8.842432 +11154;0;-0.21487427;4.850769;8.588608 +11154;3;0.028518677;-0.094955444;-0.15266418 +11156;5;999.5646 +11156;4;14.143372;-1.0406494;-67.49725 +11156;6;-0.36644107;-0.5139942;0.025013305 +11156;7;0.92891043;-0.3119989;0.19945417;0.0;0.36966333;0.81297463;-0.44991243;0.0;-0.021779006 +11156;0;-0.18621826;4.869766;8.607666 +11157;3;0.019348145;-0.09983826;-0.14900208 +11158;12;0.20923133;0.07057787;0.27516013;0.93569654 +11159;1;-0.14350198;4.247524;8.84161 +11159;0;-0.18144226;4.907776;8.607666 +11159;3;0.0138549805;-0.10533142;-0.14595032 +11161;0;-0.147995;4.8887787;8.598129 +11162;3;0.0059051514;-0.10961914;-0.14472961 +11162;12;0.20935872;0.070469536;0.27476525;0.9357922 +11164;1;-0.14189665;4.248671;8.841084 +11165;0;-0.138443;4.893524;8.660141 +11165;3;-1.9836426E-4;-0.11206055;-0.14228821 +11166;4;14.143372;0.7598877;-67.49725 +11166;6;-0.36709476;-0.5142795;0.015984867 +11166;7;0.93043274;-0.3124799;0.19144492;0.0;0.36619827;0.8126396;-0.45333833;0.0;-0.01391659 +11166;0;-0.12411499;4.9315186;8.664902 +11166;3;-0.007537842;-0.115112305;-0.1404419 +11167;12;0.20946188;0.07032313;0.27437803;0.9358937 +11169;1;-0.13993844;4.24926;8.840832 +11169;0;-0.12411499;4.950531;8.693527 +11169;2;0.032540157;-0.6474047;0.22193432; +11169;3;-0.014846802;-0.115112305;-0.13922119 +11171;0;-0.10978699;4.950531;8.6839905 +11171;12;0.2095395;0.070152774;0.27400142;0.9359996 +11172;3;-0.021575928;-0.115112305;-0.13677979 +11173;0;-0.12411499;4.9457855;8.745987 +11173;1;-0.13783981;4.2492304;8.84088 +11174;3;-0.027679443;-0.11328125;-0.1374054 +11177;4;15.342712;0.009155273;-67.04712 +11177;6;-0.40995145;-0.51461625;0.014190127 +11177;7;0.9142642;-0.34694335;0.20916808;0.0;0.4049301;0.7983537;-0.44571623;0.0;-0.0123518305 +11177;0;-0.12411499;4.917267;8.774612 +11177;12;0.2095843;0.06996574;0.27362847;0.9361125 +11177;3;-0.03501892;-0.11021423;-0.13677979 +11178;1;-0.13586673;4.248587;8.841219 +11178;0;-0.10978699;4.9362793;8.784149 +11178;3;-0.039901733;-0.106552124;-0.13494873 +11181;0;-0.10499573;4.94104;8.779373 +11181;3;-0.044174194;-0.10166931;-0.13311768 +11181;12;0.20959713;0.06977746;0.27326724;0.9362293 +11183;1;-0.13416229;4.2474847;8.841775 +11183;0;-0.138443;4.94104;8.865219 +11183;3;-0.049057007;-0.095565796;-0.13067627 +11185;4;14.593506;-1.7913818;-65.69672 +11185;6;-0.41822648;-0.5084177;0.015615152 +11185;7;0.91061217;-0.35477012;0.21195203;0.0;0.41303688;0.79822814;-0.4384432;0.0;-0.013639529 +11185;0;-0.095443726;4.9362793;8.846146 +11186;3;-0.053344727;-0.09007263;-0.13128662 +11186;12;0.20957972;0.06959747;0.2729185;0.9363482 +11188;2;-0.011801526;-0.69627714;0.05447769; +11188;0;-0.100234985;4.917267;8.850922 +11188;1;-0.13284251;4.245968;8.842523 +11188;3;-0.056396484;-0.082733154;-0.13128662 +11190;0;-0.143219;4.9315186;8.908142 +11191;12;0.2095338;0.069435045;0.27258378;0.93646806 +11191;3;-0.057617188;-0.07846069;-0.13128662 +11192;0;-0.18621826;4.9030304;8.931976 +11193;3;-0.059448242;-0.07234192;-0.13128662 +11193;1;-0.13213457;4.244157;8.843403 +11195;5;999.5646 +11196;12;0.20946422;0.069298185;0.2722538;0.9365898 +11196;4;15.492249;-1.7913818;-66.44745 +11196;6;-0.43254837;-0.50192976;0.020845475 +11196;7;0.9034994;-0.36748168;0.22055835;0.0;0.42819956;0.7959162;-0.427975;0.0;-0.018272983 +11196;0;-0.171875;4.9030304;8.960602 +11196;3;-0.060058594;-0.066848755;-0.13128662 +11197;1;-0.13192283;4.2422047;8.844343 +11202;0;-0.20533752;4.9125214;8.941528 +11202;3;-0.055786133;-0.061965942;-0.13189697 +11202;0;-0.18621826;4.893524;8.994003 +11202;12;0.20938073;0.0691852;0.27193078;0.93671066 +11203;3;-0.055160522;-0.05647278;-0.13189697 +11203;0;-0.21487427;4.86026;8.998749 +11203;1;-0.13217647;4.2403774;8.845216 +11203;3;-0.05088806;-0.050354004;-0.13128662 +11204;4;14.593506;-1.4907837;-67.64679 +11204;6;-0.3965575;-0.49509466;0.023873702 +11204;7;0.91775256;-0.33986643;0.20547754;0.0;0.3965968;0.8116383;-0.42889905;0.0;-0.021005044 +11204;0;-0.21966553;4.8555145;9.022598 +11205;3;-0.049057007;-0.046691895;-0.13555908 +11205;12;0.20929708;0.06909832;0.27161086;0.93682855 +11207;0;-0.22442627;4.841263;9.041687 +11207;1;-0.13294002;4.2387333;8.845993 +11207;2;0.06889418;-0.6567116;-0.12504005; +11207;3;-0.04295349;-0.04486084;-0.1386261 +11210;12;0.20921735;0.069039635;0.27129197;0.9369431 +11210;0;-0.22921753;4.8555145;9.056 +11210;3;-0.035614014;-0.042419434;-0.144104 +11211;0;-0.22921753;4.827011;9.117996 +11211;1;-0.13407739;4.2374988;8.846566 +11211;3;-0.027679443;-0.03753662;-0.14900208 +11213;4;14.892578;-1.1901855;-68.096924 +11213;6;-0.40230674;-0.48675466;0.02513373 +11213;7;0.91526693;-0.34606653;0.20621443;0.0;0.4022351;0.8132888;-0.4204383;0.0;-0.02221225 +11214;0;-0.24832153;4.850769;9.079834 +11214;3;-0.021575928;-0.029586792;-0.15144348 +11214;12;0.20915595;0.069001526;0.270951;0.93705827 +11216;0;-0.2817688;4.86026;9.108459 +11216;1;-0.13586482;4.2368927;8.846829 +11216;3;-0.013031006;-0.023483276;-0.15388489 +11218;0;-0.2960968;4.817505;9.070297 +11219;12;0.20911904;0.06900394;0.27059704;0.9371686 +11219;3;-0.0026397705;-0.017974854;-0.1545105 +11222;1;-0.13832189;4.2369742;8.846752 +11222;0;-0.3056488;4.8317566;9.065521 +11222;3;0.008972168;-0.01675415;-0.1557312 +11223;4;14.442444;-1.0406494;-67.49725 +11223;6;-0.37353176;-0.48944774;0.033702757 +11223;7;0.92473483;-0.32206327;0.20283175;0.0;0.37944826;0.8217329;-0.42517525;0.0;-0.029740175 +11224;0;-0.3056488;4.8127594;9.070297 +11224;3;0.018127441;-0.014312744;-0.1557312 +11224;12;0.20911053;0.06904878;0.27023757;0.93727094 +11226;0;-0.35820007;4.8079987;9.0607605 +11226;2;0.14895612;-0.6039586;-0.22799397; +11226;3;0.024841309;-0.011871338;-0.1569519 +11226;1;-0.14106847;4.237945;8.846244 +11229;0;-0.3534088;4.8079987;9.117996 +11229;12;0.20914498;0.069121964;0.26987323;0.93736285 +11229;3;0.036453247;-0.007598877;-0.157547 +11230;0;-0.34864807;4.8079987;9.127518 +11230;1;-0.1441115;4.239599;8.845402 +11231;3;0.04499817;-0.0051574707;-0.1587677 +11232;5;999.5646 +11232;4;14.292908;-0.74157715;-67.196655 +11232;6;-0.36273196;-0.4845241;0.03817891 +11232;7;0.9279412;-0.31398767;0.20084073;0.0;0.37119323;0.8273173;-0.42161793;0.0;-0.033776183 +11233;0;-0.36775208;4.8317566;9.089371 +11233;3;0.054779053;-0.0039367676;-0.16061401 +11233;12;0.20921461;0.06921742;0.26949453;0.9374492 +11235;0;-0.34864807;4.8365173;9.051224 +11235;1;-0.14745149;4.242131;8.844133 +11235;3;0.06271362;-0.003326416;-0.1599884 +11237;0;-0.40119934;4.8365173;9.070297 +11237;12;0.20932496;0.06934293;0.269118;0.9375235 +11238;3;0.07371521;-0.002090454;-0.16061401 +11239;0;-0.41073608;4.8460083;9.056 +11240;1;-0.1509225;4.2454295;8.842491 +11240;3;0.08166504;-0.0027160645;-0.1612091 +11242;4;13.693237;-1.940918;-67.796326 +11242;6;-0.33460298;-0.4909167;0.045324072 +11242;7;0.9365563;-0.2896112;0.19745317;0.0;0.34823236;0.83299154;-0.4299528;0.0;-0.039957665 +11242;0;-0.4202881;4.8365173;9.079834 +11242;3;0.09082031;-0.003326416;-0.16610718 +11243;12;0.2094742;0.06948603;0.26873982;0.937588 +11244;0;-0.43940735;4.827011;9.0607605 +11244;1;-0.1544782;4.249467;8.840491 +11245;2;0.24071011;-0.58930445;-0.23620415; +11245;3;0.09754944;-0.003326416;-0.16610718 +11247;0;-0.44418335;4.879257;9.065521 +11248;12;0.20966382;0.06964321;0.2683506;0.9376455 +11248;3;0.10546875;-0.004547119;-0.16610718 +11250;0;-0.46328735;4.869766;9.079834 +11250;3;0.11036682;-0.004547119;-0.16671753 +11250;1;-0.15807347;4.254181;8.8381605 +11252;4;15.342712;-1.0406494;-67.49725 +11252;6;-0.363058;-0.4917444;0.05097956 +11252;7;0.92505604;-0.3130549;0.21509986;0.0;0.37716517;0.82404953;-0.42271614;0.0;-0.044919558 +11252;0;-0.47763062;4.879257;9.075058 +11252;3;0.11647034;-0.0069885254;-0.16732788 +11253;12;0.20988819;0.06981028;0.2679499;0.9376974 +11254;0;-0.49195862;4.9315186;9.027374 +11254;1;-0.16164999;4.2594295;8.8355665 +11254;3;0.12319946;-0.011260986;-0.16732788 +11257;12;0.21014352;0.06998387;0.26754633;0.93774253 +11266;17;1;38dead6d7725;2412;759;-59; +11267;17;1;38dead6d60ff;2954;316;-54; +11267;17;1;1c1bb5efa29a;8499;1379;-72; +11268;17;1;1c1bb5ecd182;11260;1403;-69; +11273;1;-0.16488798;4.2652836;8.832683 +11274;0;-0.46328735;4.9552917;9.051224 +11274;3;0.12930298;-0.016159058;-0.16793823 +11274;0;-0.48718262;4.998047;9.051224 +11274;3;0.13357544;-0.02104187;-0.1716156 +11274;4;13.243103;-1.1901855;-66.14685 +11274;6;-0.30055755;-0.50391555;0.05377317 +11274;7;0.94610775;-0.25925305;0.19408274;0.0;0.32041383;0.8364425;-0.44463366;0.0;-0.047066398 +11274;0;-0.5206146;4.974289;9.041687 +11274;3;0.13664246;-0.026535034;-0.1722107 +11274;12;0.21043374;0.07014999;0.26713473;0.9377823 +11274;2;0.32437742;-0.6736078;-0.22018814; +11274;1;-0.1678418;4.271501;8.829621 +11274;0;-0.5110626;4.98378;9.051224 +11274;3;0.14213562;-0.0332489;-0.1746521 +11274;0;-0.5206146;4.9933014;9.065521 +11274;3;0.14335632;-0.038757324;-0.17649841 +11274;1;-0.1703581;4.278045;8.826406 +11274;12;0.21074903;0.07030152;0.26670685;0.93782204 +11274;0;-0.5158386;5.007553;9.03215 +11274;3;0.14762878;-0.04547119;-0.17893982 +11274;5;999.57764 +11274;4;15.342712;-1.0406494;-69.7464 +11274;6;-0.32884666;-0.5055358;0.057049412 +11274;7;0.9359582;-0.28255534;0.2101066;0.0;0.3485594;0.8280332;-0.43916672;0.0;-0.049886324 +11274;0;-0.54927063;5.050308;9.075058 +11274;3;0.15008545;-0.05340576;-0.18077087 +11274;12;0.21109028;0.07043254;0.26625752;0.9378631 +11275;0;-0.5301666;5.0550537;9.03215 +11275;1;-0.17242372;4.2848806;8.823048 +11275;3;0.15190125;-0.059524536;-0.18260193 +11276;0;-0.5158386;5.040802;9.03215 +11276;12;0.21145363;0.070540436;0.26579607;0.93790406 +11276;3;0.15556335;-0.07052612;-0.18565369 +11279;0;-0.43940735;5.0027924;9.03215 +11279;1;-0.17384392;4.291886;8.819614 +11279;3;0.15863037;-0.08151245;-0.1917572 +11280;4;13.842773;-0.14038086;-68.096924 +11280;6;-0.30740795;-0.5053219;0.048610926 +11280;7;0.9448775;-0.26477116;0.19262093;0.0;0.32465175;0.83399886;-0.4461472;0.0;-0.04251872 +11281;0;-0.43940735;5.040802;9.051224 +11281;3;0.15802002;-0.09310913;-0.20092773 +11281;12;0.21183589;0.07061285;0.2653174;0.93794787 +11283;0;-0.48239136;5.0455627;9.098923 +11283;1;-0.17455615;4.29906;8.816106 +11283;3;0.15924072;-0.10411072;-0.20397949 +11283;2;0.3353039;-0.7430358;-0.22998333; +11285;0;-0.5253906;5.15007;9.13707 +11286;12;0.21224107;0.07064812;0.26479822;0.93800026 +11286;3;0.16168213;-0.11265564;-0.2076416 +11289;1;-0.17465615;4.3064184;8.812511 +11289;0;-0.5206146;5.2070923;9.08461 +11289;3;0.16595459;-0.118774414;-0.2064209 +11291;4;15.342712;-0.29144287;-67.796326 +11291;6;-0.3263231;-0.51975644;0.057244703 +11291;7;0.9365667;-0.27822897;0.21314669;0.0;0.34695387;0.8221368;-0.45134717;0.0;-0.04965785 +11291;0;-0.5253906;5.2260895;9.041687 +11291;12;0.21266867;0.07064508;0.26424137;0.9380607 +11292;3;0.17144775;-0.12672424;-0.20336914 +11292;0;-0.5253906;5.2736053;9.008301 +11293;1;-0.17414625;4.3142323;8.8087 +11293;3;0.17756653;-0.13465881;-0.19726562 +11296;12;0.21312575;0.07061779;0.26368156;0.93811655 +11296;0;-0.55882263;5.2260895;9.003525 +11296;3;0.1879425;-0.14382935;-0.1905365 +11299;0;-0.54927063;5.2688446;9.03215 +11299;3;0.19589233;-0.15298462;-0.18504333 +11299;1;-0.17276284;4.3226366;8.8046055 +11301;4;13.693237;-1.0406494;-66.596985 +11301;6;-0.28407183;-0.527279;0.06073803 +11301;7;0.9495918;-0.24220067;0.1990335;0.0;0.30906934;0.82954514;-0.46511427;0.0;-0.052456293 +11301;0;-0.5683899;5.302109;9.051224 +11301;3;0.20748901;-0.16275024;-0.1758728 +11301;12;0.21362661;0.070557594;0.26313528;0.93816054 +11303;1;-0.1702957;4.3319397;8.80008 +11303;0;-0.5206146;5.321106;9.03215 +11304;2;0.37820512;-0.9292526;-0.24151611; +11304;3;0.2160492;-0.17314148;-0.16976929 +11305;0;-0.40596008;5.3401184;9.022598 +11306;12;0.21418947;0.07045527;0.26260403;0.93818873 +11306;3;0.22949219;-0.18292236;-0.16610718 +11308;1;-0.16650592;4.3421545;8.795116 +11308;0;-0.30085754;5.4398804;9.046463 +11308;3;0.23864746;-0.19207764;-0.16610718 +11310;4;15.04364;-1.6403198;-68.24646 +11310;6;-0.35932794;-0.54115045;0.033244673 +11310;7;0.9295953;-0.30140093;0.21215592;0.0;0.3674793;0.8023755;-0.47026867;0.0;-0.028489314 +11311;0;-0.20533752;5.47789;9.075058 +11311;3;0.24964905;-0.20002747;-0.16854858 +11312;5;999.57764 +11312;12;0.21481638;0.07030467;0.26208928;0.93820065 +11312;0;-0.08111572;5.558655;9.11322 +11312;1;-0.16169153;4.353348;8.789672 +11314;3;0.26187134;-0.20491028;-0.1728363 +11315;0;0.019195557;5.6726837;9.117996 +11315;12;0.21550792;0.07011729;0.26156837;0.9382015 +11315;3;0.27468872;-0.20491028;-0.17649841 +11318;0;0.119506836;5.724945;9.160919 +11318;1;-0.1564103;4.365677;8.78365 +11318;3;0.286911;-0.20307922;-0.18077087 +11320;4;15.04364;-1.3412476;-68.696594 +11320;6;-0.4256102;-0.5585116;-0.013044549 +11320;7;0.91356343;-0.35013783;0.2068944;0.0;0.4065457;0.77238804;-0.48799294;0.0;0.011062047 +11320;0;0.21505737;5.829468;9.14183 +11320;3;0.29730225;-0.19696045;-0.18260193 +11320;12;0.21626367;0.0699206;0.26102406;0.9381938 +11322;2;-0.09335159;-1.2531729;-0.31817722; +11322;1;-0.15129203;4.3791265;8.777042 +11322;0;0.26760864;5.881729;9.151382 +11322;3;0.30950928;-0.18902588;-0.18626404 +11324;12;0.21707325;0.069748;0.26046357;0.93817544 +11325;0;0.34883118;5.9529877;9.208603 +11325;3;0.32234192;-0.17681885;-0.1887207 +11328;1;-0.14689133;4.39363;8.769866 +11328;0;0.38226318;6.048004;9.256302 +11328;3;0.33210754;-0.15971375;-0.19116211 +11329;4;12.792969;-0.59051514;-67.796326 +11329;6;-0.4059447;-0.5783668;-0.04127416 +11329;7;0.9268546;-0.33066115;0.17777483;0.0;0.37382734;0.76930445;-0.51809645;0.0;0.03455138 +11330;0;0.38703918;6.0907745;9.19429 +11330;3;0.33883667;-0.14076233;-0.19116211 +11330;12;0.21793891;0.06959724;0.25975537;0.9381823 +11331;1;-0.14394885;4.409028;8.762183 +11331;0;0.37271118;6.1192627;9.232452 +11331;3;0.34188843;-0.12487793;-0.19238281 +11334;12;0.21881692;0.06956421;0.25919273;0.938136 +11335;0;0.48257446;6.1192627;9.327835 +11335;3;0.33944702;-0.10533142;-0.19419861 +11336;1;-0.14238335;4.42455;8.754381 +11337;0;0.55900574;6.1572723;9.399368 +11337;3;0.3357849;-0.0821228;-0.19419861 +11339;4;13.693237;-2.241516;-67.796326 +11339;6;-0.47133777;-0.5791243;-0.05940272 +11339;7;0.90414375;-0.38003752;0.19518042;0.0;0.42432895;0.7456834;-0.513713;0.0;0.04968741 +11339;0;0.616333;6.2237854;9.466141 +11339;3;0.3290558;-0.05340576;-0.1905365 +11340;12;0.21968313;0.069605425;0.2586447;0.93808174 +11341;1;-0.14270163;4.4397264;8.74669 +11341;2;-0.60225433;-1.7020111;-0.5633688; +11342;0;0.606781;6.266556;9.4756775 +11342;3;0.32173157;-0.019195557;-0.18321228 +11343;12;0.2205025;0.06974671;0.25812504;0.9380222 +11344;0;0.616333;6.261795;9.466141 +11344;3;0.31318665;0.011947632;-0.17771912 +11345;1;-0.14550085;4.454277;8.739243 +11346;0;0.544693;6.2475433;9.40892 +11346;3;0.30033875;0.041870117;-0.1758728 +11352;5;999.57764 +11352;4;14.593506;-1.4907837;-67.64679 +11352;6;-0.47872362;-0.585385;-0.057826586 +11352;7;0.9008097;-0.3839487;0.2027939;0.0;0.43153384;0.7398004;-0.5162111;0.0;0.048171565 +11352;0;0.28671265;6.21904;9.308762 +11352;3;0.28385925;0.060195923;-0.1746521 +11352;12;0.22125052;0.07002557;0.2576612;0.9379528 +11352;1;-0.15110564;4.4678535;8.732214 +11353;0;-0.10978699;6.1857758;9.265839 +11353;3;0.25636292;0.049819946;-0.18321228 +11353;0;0.114746094;6.0432434;9.613998 +11353;12;0.22190273;0.07043041;0.2572398;0.9378841 +11354;3;0.21788025;0.016220093;-0.19909668 +11355;1;-0.15597434;4.47851;8.726667 +11355;0;0.49690247;6.048004;10.014618 +11355;3;0.17634583;0.0113220215;-0.19848633 +11357;4;13.392639;-1.940918;-66.596985 +11357;6;-0.4759743;-0.54275125;-0.04957706 +11357;7;0.89948267;-0.39235646;0.19232069;0.0;0.43489093;0.7611113;-0.48122686;0.0;0.042434998 +11358;0;0.48735046;6.138275;10.009842 +11358;3;0.14335632;0.04309082;-0.17771912 +11359;12;0.22242106;0.07073262;0.25679526;0.9378603 +11360;0;0.23416138;6.1810455;9.89061 +11361;1;-0.16051267;4.4860096;8.722733 +11361;3;0.11280823;0.080963135;-0.1599884 +11361;2;-0.48575136;-1.701488;-0.8882246; +11362;0;-0.009475708;6.071762;9.80954 +11362;12;0.22277533;0.07099563;0.25635967;0.9378756 +11363;3;0.07676697;0.10723877;-0.157547 +11365;0;-0.0046844482;5.829468;9.742767 +11365;1;-0.16763633;4.490705;8.720182 +11365;3;0.038894653;0.1164093;-0.16915894 +11367;4;14.442444;-1.940918;-67.04712 +11367;6;-0.41436434;-0.5391965;4.8081286E-4 +11367;7;0.91527295;-0.34548667;0.20715787;0.0;0.402834;0.7855007;-0.46980128;0.0;-4.125958E-4 +11367;0;0.10517883;5.5206604;9.656921 +11374;3;-0.007537842;0.109680176;-0.1887207 +11374;0;0.119506836;5.3163605;9.642624 +11374;1;-0.1758297;4.4916487;8.719535 +11374;3;-0.05088806;0.089523315;-0.20031738 +11377;0;-0.023803711;5.2736053;9.814301 +11378;12;0.2229337;0.07134822;0.2560328;0.93790054 +11378;12;0.22288354;0.0716989;0.25569057;0.937979 +11378;3;-0.0942688;0.06324768;-0.2088623 +11378;0;-0.138443;5.264099;10.071854 +11383;17;1;38dead6d7725;1423;761;-61; +11383;17;1;38dead6d60ff;2123;1172;-53; +11384;17;1;1c1bb5efa29a;7861;3369;-71; +11384;17;1;1c1bb5ecd182;9557;3331;-68; +11384;1;-0.18331532;4.4885645;8.720968 +11384;3;-0.13946533;0.037597656;-0.21864319 +11384;4;14.593506;-2.5405884;-67.196655 +11384;6;-0.4409589;-0.48156768;0.013744666 +11384;7;0.9015404;-0.37826607;0.21009457;0.0;0.4325235;0.80149186;-0.41295797;0.0;-0.0121811 +11385;0;-0.21009827;5.230835;10.276932 +11385;3;-0.18101501;0.020492554;-0.22535706 +11385;0;-0.20054626;5.1168213;10.400925 +11385;1;-0.18927932;4.481542;8.724451 +11385;3;-0.22193909;0.008880615;-0.23452759 +11385;0;-0.21009827;4.950531;10.415237 +11385;3;-0.25675964;-0.003326416;-0.2394104 +11385;12;0.22263943;0.07193421;0.25528213;0.93813014 +11385;2;-0.13568705;-0.9939313;-1.1908293; +11385;12;0.22221325;0.072012514;0.2548279;0.93834865 +11385;0;-0.21966553;4.803253;10.410461 +11385;1;-0.19446263;4.470891;8.729801 +11385;3;-0.28729248;-0.01675415;-0.24551392 +11386;5;999.57764 +11386;4;13.542175;-0.440979;-66.14685 +11386;6;-0.41691822;-0.43219835;0.02109733 +11387;7;0.91055954;-0.3677087;0.18886927;0.0;0.41293377;0.8302648;-0.37436044;0.0;-0.019155947 +11387;0;-0.27697754;4.65123;10.420013 +11387;3;-0.3123474;-0.033859253;-0.25224304 +11388;12;0.2216133;0.071980536;0.2543089;0.93863386 +11388;0;-0.2817688;4.53244;10.424774 +11389;1;-0.1987854;4.4574265;8.736586 +11389;3;-0.33189392;-0.050964355;-0.26078796 +11391;0;-0.25309753;4.413666;10.477234 +11391;12;0.22087975;0.071858324;0.25379047;0.93895626 +11391;3;-0.34594727;-0.06929016;-0.27178955 +11393;0;-0.20533752;4.323395;10.582169 +11395;1;-0.20193939;4.4420514;8.744342 +11395;3;-0.3557129;-0.083343506;-0.2846222 +11395;4;14.143372;-1.6403198;-68.696594 +11395;6;-0.48073477;-0.3877934;0.019401671 +11395;7;0.88309604;-0.42809328;0.19203521;0.0;0.46884838;0.82081735;-0.32625127;0.0;-0.017959887 +11396;0;-0.16233826;4.2046356;10.696625 +11396;3;-0.36244202;-0.094955444;-0.29499817 +11396;12;0.22006603;0.07163347;0.2532231;0.93931764 +11398;0;-0.171875;4.1143646;10.820633 +11398;1;-0.20427524;4.4255214;8.752665 +11398;2;0.026766807;-0.09436989;-1.7676067; +11398;3;-0.36610413;-0.102890015;-0.3047638 +11403;0;-0.15278625;3.9765778;10.901703 +11403;12;0.2192091;0.071336746;0.252592;0.93971044 +11403;3;-0.36610413;-0.10899353;-0.31393433 +11403;0;-0.17666626;3.8863068;10.916 +11403;1;-0.20628795;4.4084063;8.7612505 +11406;3;-0.3600006;-0.10899353;-0.3212738 +11406;4;15.193176;-2.5405884;-67.196655 +11406;6;-0.6090348;-0.34198573;0.016182743 +11406;7;0.8169887;-0.53894746;0.20509796;0.0;0.57645226;0.7727033;-0.26576787;0.0;-0.015244945 +11406;0;-0.21487427;3.772293;10.958939 +11406;3;-0.34777832;-0.10961914;-0.32676697 +11406;12;0.21833394;0.07100541;0.25190836;0.94012266 +11409;0;-0.21966553;3.6677704;10.887405 +11409;1;-0.20849901;4.3915796;8.769645 +11409;3;-0.33006287;-0.10961914;-0.33042908 +11410;0;-0.2817688;3.5774994;10.868317 +11410;12;0.2174785;0.070681445;0.2511884;0.94053805 +11410;3;-0.3062439;-0.110839844;-0.3322754 +11412;0;-0.34864807;3.4777374;10.85878 +11412;1;-0.2109126;4.376078;8.777332 +11413;3;-0.2781372;-0.11021423;-0.3340912 +11415;4;15.193176;-1.1901855;-68.096924 +11415;6;-0.58179396;-0.3097979;0.032096457 +11415;7;0.8296717;-0.5233637;0.19425619;0.0;0.5574145;0.79570544;-0.23694314;0.0;-0.030563261 +11415;0;-0.3534088;3.3874664;10.815857 +11415;3;-0.24453735;-0.110839844;-0.33287048 +11416;12;0.21669552;0.070382945;0.2504443;0.94093937 +11417;0;-0.39163208;3.29245;10.80632 +11417;1;-0.21340059;4.3627954;8.783882 +11417;2;0.06259756;0.7160883;-2.0841808; +11418;3;-0.2084961;-0.10961914;-0.33103943 +11419;0;-0.40596008;3.2259216;10.768173 +11420;12;0.2160341;0.07011879;0.2496853;0.94131285 +11420;3;-0.16818237;-0.10839844;-0.32676697 +11422;0;-0.43940735;3.135666;10.796783 +11422;1;-0.21589582;4.3524384;8.788958 +11422;3;-0.128479;-0.10227966;-0.3206482 +11424;5;999.57764 +11424;4;12.792969;-1.940918;-67.796326 +11424;6;-0.5287627;-0.28242868;0.040675536 +11425;7;0.85700077;-0.4844792;0.17558354;0.0;0.51383317;0.82922393;-0.21991614;0.0;-0.039053258 +11425;0;-0.44418335;3.1166687;10.7109375 +11425;3;-0.08570862;-0.09251404;-0.31393433 +11426;12;0.21553421;0.069892816;0.24889556;0.9416534 +11427;0;-0.46806335;3.0691528;10.672775 +11427;1;-0.21866445;4.3454523;8.792346 +11428;3;-0.04234314;-0.08151245;-0.30599976 +11430;0;-0.46806335;3.0263977;10.653702 +11430;12;0.21520823;0.06974286;0.24815314;0.94193494 +11431;3;0.002243042;-0.066848755;-0.2980652 +11432;0;-0.47763062;3.0168915;10.567856 +11432;1;-0.22212523;4.3420906;8.79392 +11432;3;0.04928589;-0.051574707;-0.2870636 +11434;4;13.842773;-0.440979;-66.44745 +11434;6;-0.5427612;-0.2778121;0.045165814 +11434;7;0.8490169;-0.49669853;0.1801692;0.0;0.5265787;0.8234539;-0.21127853;0.0;-0.04341929 +11435;0;-0.5110626;2.9978943;10.448624 +11435;3;0.09814453;-0.03630066;-0.28155518 +11435;12;0.21506712;0.06969078;0.24743737;0.9421593 +11437;0;-0.5206146;2.8933716;10.2912445 +11437;1;-0.22653064;4.34269;8.79351 +11437;3;0.14518738;-0.023483276;-0.2772827 +11437;2;0.24958572;1.2701893;-1.8139734; +11439;0;-0.43940735;2.9028778;10.210159 +11439;12;0.21512125;0.06975249;0.24676615;0.94231844 +11440;3;0.19345093;-0.016159058;-0.27850342 +11441;1;-0.2316983;4.3473167;8.79109 +11442;0;-0.39163208;2.898117;10.186325 +11442;3;0.23986816;-0.007598877;-0.2834015 +11444;4;14.143372;-1.3412476;-66.29639 +11444;6;-0.59891105;-0.2769921;0.03842792 +11444;7;0.81941754;-0.5422548;0.18578123;0.0;0.5720047;0.79446673;-0.20404242;0.0;-0.03695404 +11446;12;0.21538018;0.06991537;0.2461042;0.94242024 +11446;0;-0.3438568;2.9361267;10.172012 +11446;3;0.27957153;0.009506226;-0.2870636 +11447;1;-0.23788695;4.355842;8.786704 +11448;0;-0.41073608;2.9123688;10.043243 +11448;3;0.31622314;0.026611328;-0.286438 +11449;0;-0.49671936;2.855362;9.895386 +11449;12;0.21583301;0.070190184;0.24541833;0.9424751 +11450;3;0.34921265;0.046157837;-0.28767395 +11452;1;-0.24552639;4.3673797;8.780765 +11452;0;-0.23876953;3.0026398;9.575851 +11452;3;0.37426758;0.05836487;-0.28767395 +11455;4;14.292908;-1.7913818;-66.89758 +11455;6;-0.60118693;-0.30376497;0.024929384 +11455;7;0.8201913;-0.5397259;0.18968958;0.0;0.57159466;0.7869093;-0.23249376;0.0;-0.02378558 +11455;12;0.21643674;0.07057788;0.24474455;0.942483 +11456;0;-0.22921753;3.102417;9.413681 +11456;3;0.39808655;0.057144165;-0.28767395 +11458;1;-0.25409502;4.381682;8.773392 +11458;2;0.119085476;1.4020572;-1.0730877; +11458;0;-0.35820007;3.1641693;9.308762 +11458;3;0.4206848;0.051651;-0.29133606 +11459;12;0.21716398;0.07106635;0.24405895;0.9424567 +11461;0;-0.49195862;3.1261597;9.179993 +11461;3;0.44267273;0.04675293;-0.29743958 +11463;1;-0.26271638;4.397797;8.765071 +11464;0;-0.5349426;3.08815;9.079834 +11464;3;0.45796204;0.041870117;-0.3041687 +11465;5;999.5962 +11465;4;14.292908;-1.1901855;-66.89758 +11465;6;-0.46469432;-0.3273101;0.05884744 +11465;7;0.8839373;-0.4243575;0.19640619;0.0;0.46427703;0.8464987;-0.26055032;0.0;-0.055691104 +11465;0;-0.41073608;3.0976562;9.013062 +11465;12;0.21799226;0.07156442;0.24334547;0.9424123 +11465;3;0.46650696;0.03515625;-0.3090515 +11466;1;-0.27097598;4.4151974;8.756067 +11466;0;-0.3438568;3.1071625;8.879532 +11467;3;0.47138977;0.025375366;-0.31027222 +11470;12;0.21889892;0.072059534;0.24259794;0.9423571 +11470;0;-0.40596008;3.178421;8.769836 +11470;3;0.47628784;0.011947632;-0.3090515 +11471;1;-0.27853027;4.4332614;8.746698 +11471;0;-0.40119934;3.244934;8.6410675 +11471;3;0.4793396;0.0027923584;-0.30966187 +11473;4;12.942505;-0.74157715;-66.14685 +11473;6;-0.40941778;-0.35887638;0.04639605 +11473;7;0.9098812;-0.37271476;0.18220879;0.0;0.41259018;0.85891014;-0.30338565;0.0;-0.043424673 +11473;0;-0.44895935;3.278183;8.49321 +11473;3;0.48117065;-0.010040283;-0.31393433 +11473;12;0.2198518;0.07252584;0.241829;0.94229716 +11476;0;-0.4202881;3.3209534;8.350128 +11476;1;-0.28527412;4.4517727;8.737073 +11477;3;0.4830017;-0.025314331;-0.31698608 +11477;2;0.1571339;1.2668495;-0.06104088; +11478;12;0.22083841;0.07294929;0.24104138;0.94223565 +11478;0;-0.41073608;3.335205;8.311981 +11478;3;0.48483276;-0.04058838;-0.31576538 +11480;1;-0.29086858;4.470508;8.727317 +11480;0;-0.39163208;3.3399658;8.187988 +11481;3;0.48544312;-0.054031372;-0.31576538 +11483;4;14.143372;-1.0406494;-66.596985 +11483;6;-0.4218106;-0.38690764;0.04779365 +11483;7;0.9039269;-0.37914938;0.19789387;0.0;0.42539245;0.84490865;-0.3243005;0.0;-0.04424391 +11483;0;-0.38208008;3.368454;8.083054 +11484;3;0.4842224;-0.0650177;-0.316391 +11484;12;0.22185402;0.07330975;0.24022074;0.94217855 +11485;0;-0.34864807;3.425476;7.987671 +11486;1;-0.29532668;4.489414;8.717457 +11486;3;0.481781;-0.075408936;-0.31454468 +11487;0;-0.3295288;3.4872284;7.887512 +11488;12;0.22289522;0.07361268;0.23939206;0.94212013 +11489;3;0.4830017;-0.083343506;-0.31454468 +11490;1;-0.29883376;4.5084147;8.707525 +11491;0;-0.24354553;3.525238;7.7921295 +11491;3;0.47872925;-0.091293335;-0.31393433 +11492;4;14.892578;-1.4907837;-67.196655 +11493;6;-0.44945058;-0.42467302;0.031245152 +11493;7;0.89465404;-0.39587823;0.207062;0.0;0.44585192;0.82068115;-0.3573492;0.0;-0.02846512 +11493;0;-0.19577026;3.548996;7.7635193 +11495;3;0.47506714;-0.0967865;-0.31210327 +11495;12;0.22395;0.073863246;0.2385576;0.9420621 +11495;2;0.01621914;1.0721164;0.73630905; +11495;1;-0.30155382;4.5272813;8.697638 +11495;0;-0.157547;3.5870209;7.691971 +11495;3;0.47077942;-0.09983826;-0.3090515 +11498;0;-0.147995;3.6582794;7.596588 +11498;3;0.4671173;-0.099227905;-0.3047638 +11498;12;0.22500794;0.074074864;0.23771983;0.94200516 +11503;0;-0.08590698;3.6725311;7.548889 +11503;3;0.4634552;-0.10044861;-0.3005066 +11503;4;14.743042;-2.6901245;-65.54718 +11503;6;-0.48864186;-0.45276353;0.011379591 +11503;7;0.8805774;-0.42212844;0.21538633;0.0;0.4737921;0.79400456;-0.38089105;0.0;-0.010232781 +11503;0;0.0048675537;3.6772919;7.467819 +11503;3;0.45918274;-0.0980072;-0.29499817 +11503;1;-0.30384868;4.5459948;8.687792 +11503;5;999.5962 +11504;12;0.22605792;0.07426009;0.23689428;0.94194716 +11504;0;0.0048675537;3.7010345;7.429657 +11504;3;0.45367432;-0.09434509;-0.28889465 +11504;1;-0.30578944;4.5644665;8.678033 +11507;12;0.22709435;0.07443358;0.23609246;0.9418855 +11512;0;0.028747559;3.6867828;7.415344 +11512;3;0.4500122;-0.09007263;-0.28277588 +11512;0;0.09562683;3.7390442;7.3771973 +11512;3;0.44573975;-0.08029175;-0.2772827 +11512;4;15.193176;-1.1901855;-65.69672 +11512;6;-0.5120328;-0.46906915;-0.012961762 +11512;7;0.8745479;-0.43703055;0.21016738;0.0;0.4848013;0.77759206;-0.40039745;0.0;0.01156143 +11512;0;0.1529541;3.7580414;7.339035 +11512;3;0.43841553;-0.071121216;-0.2699585 +11512;1;-0.30769485;4.5825768;8.668415 +11512;12;0.2281117;0.07460457;0.23532434;0.94181836 +11513;1;-0.30989936;4.60051;8.658833 +11514;2;-0.3281393;0.8833885;1.2218447; +11514;0;0.16729736;3.8245544;7.3342896 +11514;3;0.4304657;-0.059524536;-0.26567078 +11516;0;0.21984863;3.8483124;7.319977 +11516;12;0.22911096;0.07479875;0.23459038;0.94174343 +11517;3;0.42190552;-0.046081543;-0.25956726 +11518;17;1;38dead6d7725;2365;903;-63; +11519;17;1;38dead6d60ff;610;2622;-53; +11519;17;1;1c1bb5efa29a;8692;2172;-78; +11519;17;0;1c1bb5ecd182;0;0;0; +11520;0;0.23893738;3.8293152;7.2913513 +11520;1;-0.31270117;4.6177235;8.649565 +11520;3;0.41030884;-0.030197144;-0.2528534 +11522;12;0.23005867;0.075022064;0.23389658;0.9416672 +11522;4;13.693237;-2.6901245;-66.29639 +11522;6;-0.51216483;-0.48337188;-0.03275825 +11522;7;0.87867785;-0.43392003;0.19909446;0.0;0.4765335;0.77181906;-0.4209645;0.0;0.029000042 +11522;0;0.27716064;3.8578186;7.262741 +11523;1;-0.3163849;4.63405;8.640694 +11525;12;0.23094252;0.075289436;0.233256;0.9415884 +11529;1;-0.3210206;4.6492558;8.632351 +11529;3;0.3986969;-0.016159058;-0.24919128 +11530;0;0.3106079;3.843567;7.2865753 +11530;3;0.3852539;-0.0014953613;-0.24429321 +11530;0;0.34883118;3.8815765;7.2913513 +11531;3;0.3669281;0.014389038;-0.2418518 +11531;0;0.37747192;3.9575806;7.267517 +11531;3;0.35043335;0.029052734;-0.2406311 +11531;4;13.243103;-3.440857;-67.64679 +11531;6;-0.5245061;-0.4980895;-0.05189297 +11531;7;0.876816;-0.43993855;0.19403036;0.0;0.47866198;0.7604017;-0.43894395;0.0;0.045567352 +11531;0;0.38703918;3.962326;7.2722626 +11531;3;0.32783508;0.04309082;-0.23880005 +11531;12;0.23175225;0.07560139;0.23265527;0.9415132 +11532;0;0.4013672;4.009842;7.300888 +11532;1;-0.3267668;4.6629806;8.624729 +11533;2;-0.6396594;0.7617736;1.3397245; +11533;3;0.30706787;0.05897522;-0.23757935 +11534;0;0.4156952;4.0668488;7.31044 +11535;12;0.23246497;0.07595658;0.23208533;0.9414494 +11535;3;0.2844696;0.073028564;-0.23513794 +11537;0;0.4013672;4.085861;7.300888 +11537;1;-0.33365998;4.674982;8.617966 +11537;3;0.26246643;0.085861206;-0.23635864 +11539;4;14.143372;-2.6901245;-66.596985 +11539;6;-0.53922147;-0.50957066;-0.054919835 +11539;7;0.8705638;-0.44823402;0.20298986;0.0;0.4897167;0.7490894;-0.44614184;0.0;0.047918394 +11540;0;0.4204712;4.123871;7.2913513 +11540;3;0.23803711;0.09867859;-0.23513794 +11540;12;0.23306717;0.076353036;0.23154312;0.94140196 +11541;5;999.5962 +11542;0;0.4061432;4.1523743;7.2961273 +11542;1;-0.3416172;4.685162;8.6121235 +11542;3;0.21360779;0.109680176;-0.23391724 +11544;0;0.36791992;4.1951294;7.2818146 +11545;12;0.23355485;0.0767868;0.23102872;0.9413722 +11545;3;0.1879425;0.1194458;-0.22903442 +11547;0;0.33448792;4.2426453;7.31044 +11547;1;-0.35049638;4.693375;8.607293 +11547;3;0.16107178;0.12678528;-0.22657776 +11549;4;14.743042;-2.6901245;-66.596985 +11549;6;-0.52471834;-0.525395;-0.04572294 +11549;7;0.8760451;-0.43340144;0.2114431;0.0;0.48060519;0.7487362;-0.4565223;0.0;0.039542314 +11549;0;0.36791992;4.2616425;7.348587 +11549;3;0.13357544;0.13105774;-0.22413635 +11550;12;0.23392141;0.07724427;0.23054466;0.94136244 +11552;1;-0.3598209;4.6994104;8.603615 +11552;2;-0.7371216;0.5167723;1.292016; +11552;0;0.34403992;4.3091583;7.3676605 +11552;3;0.10546875;0.13595581;-0.22169495 +11554;0;0.31536865;4.313904;7.4439697 +11554;12;0.23416083;0.077702515;0.23009191;0.941376 +11554;3;0.07798767;0.14021301;-0.21803284 +11556;0;0.28671265;4.323395;7.4964294 +11556;1;-0.36948305;4.703107;8.601185 +11557;3;0.04989624;0.14389038;-0.21376038 +11558;4;13.693237;-1.940918;-66.29639 +11558;6;-0.48018256;-0.5228151;-0.038227927 +11558;7;0.895078;-0.4002336;0.19659194;0.0;0.44467837;0.7684344;-0.46018445;0.0;0.03311326 +11559;0;0.29148865;4.3614197;7.5393524 +11559;12;0.23426972;0.07814594;0.22965285;0.9414195 +11560;3;0.019348145;0.1506195;-0.21008301 +11561;1;-0.37939733;4.70446;8.600013 +11561;0;0.23416138;4.404175;7.596588 +11562;3;-0.011199951;0.15731812;-0.20153809 +11563;0;0.21505737;4.456436;7.6204376 +11564;12;0.23424624;0.07858236;0.22925991;0.9414847 +11564;3;-0.041122437;0.1646576;-0.19238281 +11566;0;0.16729736;4.513443;7.7015076 +11566;1;-0.389641;4.703381;8.600144 +11566;3;-0.068603516;0.17260742;-0.18260193 +11569;4;15.04364;-3.2913208;-66.29639 +11569;6;-0.49535927;-0.52999365;-0.021719262 +11569;7;0.8848093;-0.41013497;0.22113782;0.0;0.46557653;0.7590988;-0.4549809;0.0;0.01873813 +11569;0;0.1529541;4.5181885;7.773056 +11569;3;-0.096710205;0.17993164;-0.17098999 +11570;12;0.23408104;0.07901216;0.22891878;0.94157284 +11570;0;0.10041809;4.503952;7.7921295 +11571;2;-0.61745226;0.27198792;0.9832115; +11571;1;-0.4001448;4.6999545;8.601536 +11571;3;-0.12541199;0.18664551;-0.16061401 +11573;0;0.071746826;4.465927;7.882736 +11573;12;0.23377922;0.07943672;0.22864152;0.9416795 +11574;3;-0.15046692;0.19337463;-0.14961243 +11575;0;0.052627563;4.470688;7.9542847 +11576;3;-0.17857361;0.1976471;-0.13922119 +11576;1;-0.41080835;4.6941524;8.604201 +11578;4;15.193176;-3.741455;-66.14685 +11578;6;-0.49294683;-0.51203644;-0.006616157 +11578;7;0.8824569;-0.41253224;0.22602428;0.0;0.47035787;0.76796;-0.4347422;0.0;0.0057675825 +11578;0;0.028747559;4.52771;8.025818 +11578;3;-0.20422363;0.19947815;-0.13067627 +11579;12;0.23334587;0.07985063;0.22842994;0.9418033 +11579;5;999.5962 +11580;0;-0.028564453;4.546707;8.125992 +11580;1;-0.42144644;4.686161;8.608042 +11581;3;-0.23170471;0.2025299;-0.1227417 +11582;0;-0.06678772;4.5657043;8.197525 +11583;12;0.23278892;0.08024802;0.22827859;0.941944 +11584;3;-0.25798035;0.20375061;-0.11784363 +11585;0;-0.08111572;4.57045;8.316757 +11585;1;-0.4321052;4.675853;8.613117 +11585;3;-0.27996826;0.20375061;-0.11174011 +11587;4;14.743042;-1.940918;-65.097046 +11587;6;-0.44322222;-0.5024754;0.009752979 +11587;7;0.9013173;-0.37584347;0.21533449;0.0;0.4330753;0.7917113;-0.43085873;0.0;-0.008547308 +11587;0;-0.16711426;4.5752106;8.364441 +11588;3;-0.3062439;0.20375061;-0.10441589 +11588;12;0.2321035;0.08062355;0.2281715;0.9421071 +11590;0;-0.20054626;4.594223;8.431213 +11590;1;-0.4425836;4.6635785;8.619238 +11591;2;-0.39165428;0.12016487;0.45907688; +11592;3;-0.33250427;0.2000885;-0.097076416 +11592;0;-0.2817688;4.5086975;8.49321 +11592;12;0.23131126;0.08096994;0.22810072;0.94228923 +11593;3;-0.3569336;0.19459534;-0.0897522 +11596;0;-0.3199768;4.4754486;8.559982 +11596;1;-0.4526183;4.6490273;8.6265745 +11596;3;-0.38259888;0.18481445;-0.08302307 +11598;4;14.143372;-1.6403198;-66.596985 +11598;6;-0.37473854;-0.48146075;0.03736315 +11598;7;0.9236223;-0.32441878;0.20414263;0.0;0.38187116;0.82481176;-0.41696495;0.0;-0.033107977 +11598;0;-0.3438568;4.432678;8.650604 +11598;3;-0.4094696;0.17016602;-0.07569885 +11598;12;0.23040219;0.08126377;0.22805414;0.94249797 +11601;1;-0.46160215;4.632197;8.635149 +11601;0;-0.40119934;4.380417;8.755524 +11601;3;-0.4351349;0.15306091;-0.072647095 +11602;0;-0.4298401;4.313904;8.865219 +11603;12;0.22938009;0.08148106;0.22805218;0.942729 +11603;3;-0.46017456;0.1347351;-0.07081604 +11605;1;-0.46908185;4.6130214;8.645005 +11605;0;-0.4202881;4.290146;8.970154 +11605;3;-0.48460388;0.11456299;-0.07081604 +11608;12;0.22825333;0.08158632;0.22805949;0.94299155 +11610;4;13.693237;-2.241516;-65.097046 +11610;6;-0.38435757;-0.44568548;0.046819814 +11610;7;0.91845846;-0.33833545;0.20484886;0.0;0.39325628;0.836482;-0.38163766;0.0;-0.042230807 +11610;0;-0.42507935;4.2378845;9.094147 +11610;3;-0.50660706;0.09440613;-0.068984985 +11610;0;-0.43940735;4.209381;9.227692 +11610;1;-0.4748792;4.5916576;8.6560545 +11610;2;-0.09037694;0.23263025;-0.16935444; +11611;3;-0.530426;0.07546997;-0.07020569 +11612;0;-0.42507935;4.1618805;9.299225 +11612;12;0.22703262;0.081571944;0.228059;0.94328755 +11612;3;-0.5518036;0.05531311;-0.06774902 +11614;0;-0.39640808;4.0763702;9.451843 +11615;1;-0.47899026;4.568194;8.668235 +11615;3;-0.5701294;0.0357666;-0.06593323 +11617;4;14.143372;-1.6403198;-63.89618 +11617;6;-0.44540894;-0.40685654;0.041915204 +11617;7;0.894498;-0.39565828;0.20815367;0.0;0.44541276;0.82876825;-0.33874884;0.0;-0.038482364 +11618;12;0.22572108;0.08143665;0.22804335;0.9436177 +11618;0;-0.43463135;4.0050964;9.532913 +11618;3;-0.5860138;0.01927185;-0.064697266 +11618;5;999.59076 +11619;0;-0.41552734;3.9100647;9.618759 +11619;1;-0.4814533;4.5429387;8.68136 +11619;3;-0.6018982;3.5095215E-4;-0.06347656 +11621;0;-0.39163208;3.8673248;9.709381 +11622;12;0.22433794;0.081190094;0.2280287;0.9439723 +11622;3;-0.6116791;-0.01737976;-0.05859375 +11624;0;-0.41073608;3.843567;9.790451 +11624;3;-0.62083435;-0.035705566;-0.055541992 +11625;1;-0.48227894;4.5163116;8.695196 +11627;4;13.693237;-0.59051514;-66.596985 +11627;6;-0.42664075;-0.3737973;0.04192814 +11627;7;0.9032272;-0.38524002;0.1891316;0.0;0.427385;0.84749824;-0.31478363;0.0;-0.039021455 +11628;0;-0.38685608;3.7770538;9.819077 +11628;3;-0.6306;-0.054031372;-0.052490234 +11629;12;0.22290541;0.08084144;0.22800986;0.944346 +11629;0;-0.37728882;3.7152863;9.89061 +11629;1;-0.48140326;4.4887495;8.709506 +11631;2;-0.075095;0.5687084;-0.92921257; +11631;3;-0.6318207;-0.075408936;-0.044540405 +11632;12;0.22144522;0.080392994;0.22799121;0.9447323 +11632;0;-0.39163208;3.6772919;9.966934 +11632;3;-0.6293793;-0.09373474;-0.037216187 +11634;1;-0.4785868;4.460839;8.723989 +11635;0;-0.38685608;3.606018;10.028931 +11635;3;-0.62449646;-0.11021423;-0.028060913 +11636;4;14.892578;-2.5405884;-67.196655 +11636;6;-0.53994775;-0.34493074;0.038554896 +11636;7;0.85039777;-0.4838106;0.20676297;0.0;0.5248883;0.8072139;-0.26999602;0.0;-0.036274977 +11637;0;-0.39640808;3.5537567;10.057541 +11637;3;-0.6134949;-0.12731934;-0.01828003 +11637;12;0.21999228;0.07984247;0.22797938;0.9451212 +11638;0;-0.3534088;3.5109863;10.129074 +11638;1;-0.47393775;4.4332957;8.738271 +11638;3;-0.5982361;-0.14260864;-0.008514404 +11640;0;-0.34864807;3.458725;10.176773 +11641;12;0.21858267;0.07920796;0.22799005;0.94549894 +11641;3;-0.57806396;-0.15481567;0.0024871826 +11642;1;-0.46753147;4.406953;8.751931 +11644;0;-0.28652954;3.415985;10.181549 +11644;3;-0.55363464;-0.16337585;0.012252808 +11645;4;14.593506;-2.090454;-66.14685 +11645;6;-0.5860149;-0.32358658;0.028134612 +11645;7;0.82787466;-0.52434283;0.199219;0.0;0.5602788;0.78991157;-0.24925381;0.0;-0.026670938 +11645;0;-0.25309753;3.4064636;10.21492 +11645;3;-0.5231018;-0.16947937;0.020812988 +11646;12;0.21726064;0.07850651;0.2280255;0.94585365 +11652;0;-0.18144226;3.368454;10.21492 +11652;1;-0.45984456;4.3826737;8.764522 +11652;2;-0.13406387;0.8860836;-1.3583021; +11652;3;-0.48950195;-0.17131042;0.028137207 +11652;12;0.21606325;0.077776216;0.22808735;0.9461732 +11652;0;-0.16711426;3.3447113;10.238785 +11652;3;-0.45039368;-0.16886902;0.036697388 +11652;0;-0.10499573;3.358963;10.257843 +11652;3;-0.4094696;-0.16275024;0.04585266 +11653;1;-0.45157218;4.361251;8.77563 +11655;4;15.04364;-2.241516;-66.596985 +11655;6;-0.6564573;-0.31643358;0.010235296 +11655;7;0.79017407;-0.5800129;0.19801502;0.0;0.61280525;0.7528296;-0.24024397;0.0;-0.0097269565 +11655;0;-0.095443726;3.3494568;10.243546 +11655;3;-0.36488342;-0.15115356;0.05319214 +11655;5;999.59076 +11656;12;0.2150268;0.077063054;0.22816992;0.9464478 +11657;0;-0.047683716;3.358963;10.186325 +11657;1;-0.4434207;4.3433623;8.784913 +11657;3;-0.31906128;-0.13710022;0.059906006 +11659;0;-0.033355713;3.3637238;10.186325 +11659;3;-0.27018738;-0.12060547;0.067230225 +11660;12;0.21417612;0.07641433;0.22828393;0.94666564 +11661;0;0.014419556;3.3922272;10.110016 +11662;1;-0.43604636;4.329372;8.792184 +11662;3;-0.21949768;-0.099227905;0.0745697 +11664;4;15.04364;-2.241516;-66.596985 +11664;6;-0.6714175;-0.32372716;-0.0014262635 +11664;7;0.78322196;-0.5897825;0.19677342;0.0;0.6217406;0.74227184;-0.24994223;0.0;0.0013521778 +11664;0;0.066970825;3.415985;10.019394 +11664;3;-0.17489624;-0.07785034;0.08128357 +11665;12;0.21352364;0.075867265;0.22842856;0.94682217 +11666;0;0.07652283;3.425476;9.952621 +11667;1;-0.43001944;4.319703;8.7972355 +11667;2;-0.39389107;0.950191;-1.3554096; +11667;3;-0.12663269;-0.05708313;0.08677673 +11669;0;0.114746094;3.4444885;9.876312 +11669;12;0.21308093;0.07545959;0.22860804;0.94691116 +11670;3;-0.07899475;-0.033859253;0.09106445 +11672;1;-0.42550844;4.3141494;8.8001795 +11672;0;0.1481781;3.4824982;9.75708 +11672;3;-0.036834717;-0.010650635;0.09472656 +11676;4;14.892578;-1.1901855;-67.64679 +11676;6;-0.63647777;-0.34278986;-0.015185558 +11676;7;0.80713516;-0.5597867;0.1875414;0.0;0.5901935;0.7574067;-0.27929682;0.0;0.014301522 +11676;0;0.1481781;3.5299988;9.685532 +11676;3;0.0034637451;0.010726929;0.09899902 +11676;12;0.2128379;0.075195126;0.2288156;0.9469367 +11677;0;0.1434021;3.6202698;9.509079 +11677;1;-0.4227342;4.312454;8.801145 +11677;3;0.0382843;0.029052734;0.10266113 +11678;0;0.1290741;3.6725311;9.399368 +11679;3;0.0712738;0.04737854;0.10694885 +11679;12;0.21277782;0.07508287;0.22904979;0.9469026 +11681;0;0.124298096;3.7342834;9.256302 +11681;1;-0.4214286;4.3140435;8.800428 +11681;3;0.09877014;0.06324768;0.11244202 +11683;4;14.892578;-1.1901855;-67.64679 +11683;6;-0.5797949;-0.38342974;-0.013427676 +11683;7;0.83925164;-0.5080712;0.19370203;0.0;0.5436007;0.77582884;-0.32029352;0.0;0.012452277 +11683;0;0.114746094;3.8150635;9.117996 +11683;3;0.12135315;0.07485962;0.11671448 +11684;12;0.21287125;0.07509791;0.22930758;0.94681793 +11685;0;0.08129883;3.8768158;9.027374 +11686;1;-0.421255;4.3182554;8.79837 +11686;2;-0.5485231;0.6801362;-0.65970135; +11686;3;0.13786316;0.0846405;0.12220764 +11688;0;0.052627563;3.9670868;8.889069 +11689;12;0.21308598;0.075216234;0.22959174;0.9466914 +11689;3;0.15190125;0.09135437;0.12771606 +11690;0;0.057418823;4.043091;8.7603 +11690;1;-0.42171744;4.3242507;8.7954035 +11691;3;0.15802002;0.09562683;0.13259888 +11693;4;13.842773;-0.14038086;-64.497375 +11693;6;-0.48819873;-0.4323879;-0.0065543423 +11693;7;0.8844484;-0.42586938;0.19075198;0.0;0.46660006;0.8018982;-0.37315375;0.0;0.0059510884 +11694;0;0.028747559;4.095352;8.688751 +11694;3;0.16046143;0.097457886;0.13687134 +11695;5;999.59076 +11695;0;0.019195557;4.1618805;8.607666 +11695;12;0.21338327;0.07539643;0.22989605;0.94653624 +11695;1;-0.42237407;4.3310947;8.792004 +11696;3;0.16046143;0.0993042;0.14053345 +11697;0;-0.023803711;4.2616425;8.54567 +11698;12;0.2137193;0.07560715;0.23022842;0.9463628 +11698;3;0.15740967;0.09806824;0.14482117 +11700;0;7.6293945E-5;4.3091583;8.455063 +11700;1;-0.42300013;4.338191;8.788474 +11700;3;0.14823914;0.09623718;0.14665222 +11702;4;13.842773;-0.14038086;-64.497375 +11702;6;-0.44320863;-0.47134107;-9.023463E-6 +11702;7;0.90338206;-0.38207957;0.19472031;0.0;0.42883652;0.8048758;-0.4102122;0.0;8.039545E-6 +11702;0;7.6293945E-5;4.389923;8.41214 +11703;3;0.13542175;0.096847534;0.14848328 +11703;12;0.21406461;0.07582235;0.23057926;0.9461822 +11705;0;-0.047683716;4.4611816;8.316757 +11705;1;-0.42344457;4.344804;8.785186 +11705;2;-0.4372911;0.14247131;0.19622326; +11705;3;0.12503052;0.09257507;0.14665222 +11707;0;-0.028564453;4.5086975;8.245209 +11708;12;0.2143829;0.076027356;0.23094176;0.94600517 +11708;3;0.11097717;0.09013367;0.14360046 +11710;0;0.0048675537;4.537201;8.192749 +11710;1;-0.4236989;4.3506;8.782304 +11710;3;0.09877014;0.0834198;0.13809204 +11712;4;14.593506;-0.14038086;-67.64679 +11712;6;-0.42140016;-0.5057612;-5.941294E-4 +11712;7;0.9126347;-0.35782933;0.19762613;0.0;0.4087758;0.7982754;-0.44233328;0.0;5.197479E-4 +11712;0;0.028747559;4.627472;8.192749 +11712;3;0.08470154;0.07852173;0.13137817 +11713;12;0.21465728;0.07620636;0.23129411;0.94584244 +11714;0;-0.019012451;4.6797333;8.1689 +11715;1;-0.42370483;4.355433;8.779908 +11715;3;0.0688324;0.07424927;0.124053955 +11717;0;-0.028564453;4.684494;8.08783 +11717;12;0.21488136;0.07635939;0.2316279;0.9456976 +11717;3;0.05355835;0.073638916;0.11793518 +11719;0;-0.06201172;4.760498;7.997223 +11719;1;-0.423775;4.3591313;8.7780695 +11720;3;0.0382843;0.07241821;0.11305237 +11721;4;14.593506;-0.14038086;-67.64679 +11722;6;-0.38682374;-0.53692025;0.0077540013 +11722;7;0.92458797;-0.32416534;0.20013495;0.0;0.38091046;0.79579693;-0.4707595;0.0;-0.0066628535 +11722;0;-0.057235718;4.7557526;7.98291 +11722;3;0.023620605;0.07119751;0.10939026 +11723;12;0.21504536;0.07649289;0.23193327;0.9455746 +11724;0;-0.07635498;4.7700043;7.9256744 +11724;1;-0.4239854;4.3616185;8.776823 +11724;2;-0.39834356;-0.29668665;0.67390156; +11724;3;0.007751465;0.0675354;0.10266113 +11727;0;-0.11456299;4.7747498;7.9256744 +11727;12;0.21514162;0.076612264;0.23221827;0.9454731 +11728;3;-0.0063171387;0.062026978;0.095336914 +11729;1;-0.42423615;4.36285;8.776199 +11733;12;0.21517219;0.0767071;0.23247738;0.94539475 +11734;0;-0.12411499;4.7794952;7.906601 +11734;3;-0.021575928;0.05897522;0.08862305 +11734;4;15.04364;-1.940918;-66.596985 +11734;6;-0.40216827;-0.5436631;0.015696352 +11734;7;0.9169232;-0.33498025;0.21688719;0.0;0.39883757;0.78753763;-0.46980122;0.0;-0.0134326955 +11734;0;-0.100234985;4.7794952;7.8779755 +11735;3;-0.036834717;0.055923462;0.08067322 +11735;5;999.59076 +11735;1;-0.42447323;4.362811;8.776207 +11735;0;-0.138443;4.793747;7.9304504 +11735;3;-0.052108765;0.051651;0.07333374 +11736;0;-0.12890625;4.8127594;7.9113617 +11737;12;0.21513659;0.07677725;0.23270515;0.9453411 +11737;3;-0.0625;0.048599243;0.06539917 +11739;1;-0.42474586;4.36158;8.776806 +11741;0;-0.143219;4.8079987;7.9161377 +11741;3;-0.076553345;0.045532227;0.056854248 +11741;4;14.292908;-0.440979;-67.196655 +11741;6;-0.361013;-0.545746;0.018090056 +11741;7;0.9320699;-0.30191317;0.20023507;0.0;0.3619483;0.7996433;-0.47912836;0.0;-0.015461456 +11741;0;-0.17666626;4.8127594;7.882736 +11743;17;1;38dead6d7725;3915;761;-59; +11744;17;1;38dead6d60ff;2411;934;-51; +11745;17;1;1c1bb5efa29a;12635;1102;-73; +11745;17;1;1c1bb5ecd182;8358;4609;-71; +11745;3;-0.088760376;0.041870117;0.04890442 +11745;12;0.2150395;0.07682519;0.2328992;0.9453116 +11746;0;-0.15278625;4.827011;7.906601 +11746;1;-0.42513525;4.3592753;8.777932 +11746;3;-0.096710205;0.03515625;0.040359497 +11746;2;-0.2951894;-0.43424892;0.8680191; +11747;12;0.21488544;0.07685126;0.23305765;0.9453054 +11747;0;-0.12411499;4.827011;7.978134 +11747;3;-0.10586548;0.032714844;0.032409668 +11749;0;-0.16233826;4.841263;8.025818 +11749;1;-0.42542487;4.3561015;8.779493 +11751;3;-0.11442566;0.033935547;0.029968262 +11751;4;13.693237;-1.6403198;-65.54718 +11751;6;-0.36270496;-0.5426868;0.020224247 +11751;7;0.93104374;-0.30382767;0.20210448;0.0;0.36449635;0.80061215;-0.4755655;0.0;-0.017317332 +11751;0;-0.19577026;4.841263;7.9590607 +11751;3;-0.12236023;0.038208008;0.028747559 +11753;12;0.2146914;0.07685388;0.23316883;0.94532186 +11753;0;-0.22442627;4.8317566;7.987671 +11753;1;-0.42604885;4.3522186;8.781388 +11754;3;-0.13092041;0.041259766;0.028137207 +11756;12;0.21445122;0.076859124;0.2332755;0.94534963 +11757;0;-0.24354553;4.7082367;8.044907 +11757;3;-0.13458252;0.04248047;0.026306152 +11758;0;-0.13366699;4.7462463;8.030594 +11758;1;-0.42692935;4.34757;8.7836485 +11758;3;-0.141922;0.045532227;0.01776123 +11761;4;14.442444;-1.3412476;-66.29639 +11761;6;-0.3873616;-0.53373015;0.016643183 +11761;7;0.9225824;-0.325208;0.20756075;0.0;0.38553393;0.79712915;-0.4647027;0.0;-0.0143277105 +11761;12;0.21417537;0.07686275;0.23338477;0.9453849 +11761;0;-0.10499573;4.784256;8.040131 +11761;3;-0.1461792;0.043701172;0.013473511 +11764;1;-0.4280945;4.3424726;8.786113 +11765;0;-0.17666626;4.850769;8.202286 +11765;3;-0.1486206;0.046157837;0.015304565 +11765;2;-0.26302397;-0.45843315;0.75081253; +11765;0;-0.20533752;4.8887787;8.283371 +11766;12;0.21386917;0.07687629;0.23347028;0.94543207 +11766;3;-0.14680481;0.055923462;0.014709473 +11768;1;-0.42963916;4.3371773;8.788652 +11768;0;-0.21966553;4.8460083;8.273819 +11768;3;-0.1449585;0.06997681;0.018371582 +11770;0;-0.20054626;4.7557526;8.269058 +11771;4;15.04364;-1.6403198;-67.49725 +11771;6;-0.3923015;-0.52180207;0.024247859 +11771;7;0.9191397;-0.33143836;0.21291047;0.0;0.39337063;0.80106366;-0.45117247;0.0;-0.02101895 +11771;12;0.21354714;0.07690222;0.23355836;0.945481 +11771;3;-0.1407013;0.0834198;0.023254395 +11771;5;999.5891 +11772;1;-0.43211567;4.3319426;8.791113 +11772;0;-0.18621826;4.712982;8.345367 +11772;3;-0.13763428;0.09135437;0.024475098 +11775;0;-0.24354553;4.6987305;8.397842 +11775;12;0.21321616;0.07698273;0.23367;0.9455215 +11775;3;-0.13336182;0.097457886;0.028747559 +11777;0;-0.24354553;4.6654816;8.450302 +11777;3;-0.1296997;0.10601807;0.02935791 +11777;1;-0.4352825;4.3269033;8.793438 +11779;4;14.892578;-1.4907837;-65.24658 +11779;6;-0.40410647;-0.50428474;0.028812949 +11779;7;0.9135992;-0.34425226;0.21639526;0.0;0.4058329;0.8050007;-0.43275106;0.0;-0.02522283 +11779;0;-0.24354553;4.693985;8.483673 +11780;3;-0.12541199;0.113342285;0.030578613 +11781;12;0.21288916;0.07710506;0.23380458;0.94555193 +11782;0;-0.20054626;4.6797333;8.536133 +11782;1;-0.4389871;4.3221645;8.795584 +11782;2;-0.22734264;-0.41906357;0.41459274; +11782;3;-0.12359619;0.121292114;0.032409668 +11784;0;-0.22442627;4.7082367;8.550446 +11784;3;-0.11808777;0.12861633;0.03363037 +11785;12;0.21257149;0.07726198;0.23395368;0.94557375 +11787;1;-0.44324335;4.317691;8.797567 +11787;0;-0.18621826;4.670227;8.579071 +11787;3;-0.11442566;0.13899231;0.036087036 +11789;4;13.842773;-1.1901855;-68.096924 +11789;6;-0.37242916;-0.49841505;0.021702703 +11789;7;0.927452;-0.31961012;0.19411896;0.0;0.37345615;0.81812775;-0.43726158;0.0;-0.019060886 +11789;0;-0.16711426;4.646469;8.626755 +11790;3;-0.108306885;0.14572144;0.039138794 +11790;12;0.21226013;0.07744714;0.2340959;0.94559336 +11791;0;-0.17666626;4.646469;8.669678 +11793;1;-0.4480858;4.3135366;8.799359 +11793;3;-0.104644775;0.15184021;0.0415802 +11794;0;-0.18621826;4.627472;8.650604 +11794;12;0.21195738;0.07767851;0.23427686;0.94559747 +11795;3;-0.09854126;0.15731812;0.044631958 +11796;0;-0.171875;4.603714;8.703064 +11796;1;-0.45337024;4.3097353;8.800951 +11796;3;-0.09487915;0.16404724;0.043411255 +11803;4;14.292908;-1.4907837;-66.44745 +11803;6;-0.40983838;-0.48647836;0.019746223 +11803;7;0.9133281;-0.3522335;0.20436029;0.0;0.40684998;0.81077766;-0.4208473;0.0;-0.017454226 +11803;0;-0.171875;4.5799713;8.65538 +11803;12;0.21166672;0.07794006;0.23447624;0.9455916 +11803;3;-0.08998108;0.16770935;0.047073364 +11803;1;-0.4590483;4.3063107;8.802333 +11803;2;-0.28157726;-0.3253975;0.15826225; +11803;0;-0.19099426;4.5752106;8.712601 +11803;3;-0.08570862;0.17016602;0.048294067 +11807;1;-0.46488354;4.3032627;8.803517 +11807;12;0.2113908;0.0782294;0.23468314;0.94557816 +11807;0;-0.18621826;4.546707;8.698288 +11807;3;-0.080825806;0.17382812;0.050750732 +11807;0;-0.16711426;4.556198;8.65538 +11807;3;-0.076553345;0.17504883;0.050125122 +11810;4;14.143372;-1.3412476;-67.04712 +11810;6;-0.40266034;-0.48446763;0.01930516 +11811;7;0.9163272;-0.3467724;0.20023325;0.0;0.4000658;0.8141484;-0.42084402;0.0;-0.01708252 +11811;0;-0.171875;4.5419617;8.698288 +11811;3;-0.072891235;0.17565918;0.050125122 +11811;12;0.21113445;0.07853167;0.23489033;0.9455589 +11811;1;-0.47082776;4.3005347;8.804535 +11811;0;-0.16233826;4.5086975;8.722153 +11811;3;-0.07043457;0.17626953;0.05256653 +11811;5;999.5891 +11813;0;-0.17666626;4.5086975;8.693527 +11813;12;0.21089223;0.0788471;0.2351103;0.9455321 +11815;1;-0.47675395;4.2981052;8.805403 +11816;3;-0.064941406;0.17626953;0.05256653 +11816;0;-0.157547;4.5181885;8.70784 +11817;3;-0.060058594;0.17442322;0.05256653 +11817;4;14.593506;-1.7913818;-67.196655 +11817;6;-0.42606258;-0.47855812;0.018090572 +11817;7;0.90700835;-0.3668597;0.20676056;0.0;0.42080653;0.8083032;-0.41178632;0.0;-0.016057398 +11818;12;0.21066593;0.079166174;0.2353351;0.94549984 +11818;0;-0.157547;4.480179;8.688751 +11818;3;-0.055786133;0.17076111;0.056854248 +11820;1;-0.4824446;4.296062;8.806089 +11820;0;-0.13366699;4.480179;8.70784 +11820;2;-0.32614833;-0.22165298;0.109212875; +11820;3;-0.05393982;0.167099;0.059295654 +11822;0;-0.15278625;4.494446;8.717377 +11822;12;0.21046361;0.07947974;0.23556143;0.94546235 +11823;3;-0.04966736;0.16343689;0.063568115 +11824;0;-0.12411499;4.4754486;8.731674 +11825;1;-0.48767146;4.294287;8.806667 +11825;3;-0.047225952;0.15855408;0.06661987 +11827;4;14.743042;-1.6403198;-65.84625 +11827;6;-0.44884124;-0.47359875;0.014213383 +11827;7;0.8980466;-0.3861612;0.21069334;0.0;0.4397183;0.8017853;-0.4047074;0.0;-0.012648528 +11828;0;-0.08111572;4.470688;8.750748 +11828;3;-0.044174194;0.15428162;0.06967163 +11829;12;0.21027993;0.07977254;0.2357952;0.94542027 +11830;1;-0.4923153;4.292774;8.807146 +11830;0;-0.100234985;4.480179;8.717377 +11830;3;-0.044174194;0.1506195;0.070892334 +11832;12;0.2101164;0.080045536;0.23604225;0.94537187 +11834;1;-0.4964858;4.2914066;8.807579 +11835;0;-0.09068298;4.4516907;8.722153 +11836;3;-0.039901733;0.14572144;0.0745697 +11836;0;-0.052444458;4.4516907;8.741211 +11836;3;-0.036834717;0.14021301;0.07640076 +11836;4;14.442444;0.7598877;-67.04712 +11836;6;-0.42354393;-0.4710337;0.0059996066 +11836;7;0.9105027;-0.36623642;0.1919782;0.0;0.41346842;0.81236035;-0.4112351;0.0;-0.0053462153 +11837;0;-0.06678772;4.4516907;8.73645 +11837;3;-0.036239624;0.1347351;0.07823181 +11838;12;0.20996596;0.08029666;0.23629548;0.9453207 +11839;0;-0.057235718;4.4897003;8.731674 +11839;1;-0.5000933;4.2903047;8.807911 +11839;2;-0.4183846;-0.1810236;0.07661533; +11839;3;-0.03439331;0.13044739;0.08128357 +11841;0;-0.042907715;4.456436;8.745987 +11842;12;0.20983607;0.08052397;0.23655273;0.9452659 +11842;3;-0.028900146;0.12432861;0.08433533 +11844;0;-0.047683716;4.437439;8.731674 +11844;1;-0.5031356;4.289397;8.808181 +11844;3;-0.025238037;0.12188721;0.087402344 +11846;0;7.6293945E-5;4.456436;8.731674 +11846;3;-0.021575928;0.11885071;0.08862305 +11847;4;15.792847;-1.6403198;-65.54718 +11847;6;-0.5084765;-0.47191384;-8.7376075E-6 +11847;7;0.87348914;-0.43363458;0.22130899;0.0;0.48684353;0.77801496;-0.39708436;0.0;7.782586E-6 +11847;12;0.20972326;0.08072619;0.23681685;0.94520754 +11848;5;999.5891 +11849;0;-0.019012451;4.480179;8.73645 +11849;1;-0.505722;4.2888765;8.808285 +11849;3;-0.020355225;0.11578369;0.09106445 +11851;0;-0.028564453;4.4897003;8.70784 +11851;12;0.2096363;0.080915004;0.23708639;0.9451431 +11851;3;-0.015472412;0.113342285;0.09411621 +11853;0;-0.0046844482;4.4897003;8.726913 +11853;1;-0.5079762;4.2886357;8.808273 +11854;3;-0.009979248;0.11212158;0.09716797 +11856;4;13.693237;-1.0406494;-65.097046 +11856;6;-0.44205147;-0.47515324;5.3678174E-4 +11856;7;0.90377074;-0.38040465;0.19619039;0.0;0.42801648;0.8037469;-0.41327068;0.0;-4.7731842E-4 +11856;0;0.0048675537;4.522949;8.703064 +11856;3;-0.0050964355;0.109069824;0.09899902 +11856;12;0.2095673;0.081090584;0.2373637;0.9450737 +11858;0;-0.019012451;4.513443;8.712601 +11858;1;-0.50993407;4.2888837;8.808039 +11858;2;-0.50069755;-0.19310904;0.08348656; +11859;3;4.119873E-4;0.109069824;0.10144043 +11861;0;0.019195557;4.513443;8.750748 +11861;3;0.006515503;0.109069824;0.10328674 +11861;12;0.20952505;0.08126015;0.23764944;0.9449967 +11863;0;0.03831482;4.513443;8.70784 +11863;1;-0.51168746;4.289591;8.807593 +11863;3;0.012634277;0.10784912;0.10632324 +11865;4;15.492249;-1.4907837;-64.94751 +11865;6;-0.5051353;-0.47819155;-0.0044000084 +11865;7;0.8760804;-0.4296432;0.21883766;0.0;0.4821493;0.7769468;-0.4048281;0.0;0.0039064405 +11866;0;0.071746826;4.546707;8.717377 +11866;3;0.016906738;0.109069824;0.10876465 +11867;12;0.20951125;0.08142697;0.23794104;0.9449121 +11868;0;0.114746094;4.5799713;8.741211 +11868;1;-0.5132324;4.290848;8.8068905 +11868;3;0.019958496;0.109069824;0.11244202 +11870;0;0.1290741;4.61322;8.693527 +11871;12;0.20952776;0.08159487;0.23824614;0.94481707 +11871;3;0.023620605;0.109069824;0.116104126 +11872;0;0.124298096;4.603714;8.674438 +11873;1;-0.5145863;4.29248;8.806017 +11873;3;0.028518677;0.11151123;0.11854553 +11875;4;15.792847;-0.59051514;-66.596985 +11875;6;-0.50090146;-0.48787946;-0.014328257 +11875;7;0.8802852;-0.4241891;0.21251261;0.0;0.47427613;0.774812;-0.41800565;0.0;0.012656131 +11875;0;0.1434021;4.6084595;8.674438 +11876;3;0.03340149;0.109680176;0.120391846 +11876;12;0.20956267;0.08176195;0.23856165;0.94471526 +11877;0;0.1386261;4.65123;8.669678 +11877;1;-0.51590306;4.2945585;8.804926 +11877;2;-0.62546146;-0.28622723;0.10153198; +11878;3;0.0382843;0.10845947;0.12283325 +11880;0;0.18640137;4.670227;8.65538 +11880;12;0.20962174;0.081937;0.23889211;0.9446035 +11880;3;0.04133606;0.10784912;0.12527466 +11882;0;0.18640137;4.684494;8.669678 +11882;3;0.046218872;0.10601807;0.12464905 +11882;1;-0.51694316;4.2970667;8.80364 +11884;4;15.193176;-1.1901855;-66.14685 +11884;6;-0.5024733;-0.49529272;-0.021497067 +11884;7;0.8811118;-0.42372113;0.21000536;0.0;0.47252956;0.77107745;-0.4267965;0.0;0.0189123 +11885;0;0.20072937;4.6987305;8.698288 +11885;3;0.05050659;0.10418701;0.12527466 +11886;5;999.5891 +11886;12;0.20970443;0.08210518;0.23922321;0.94448674 +11887;0;0.21028137;4.7414856;8.6458435 +11887;1;-0.517807;4.2999763;8.80217 +11887;3;0.052337646;0.10296631;0.12771606 +11889;0;0.23416138;4.73674;8.674438 +11890;12;0.2098109;0.08227131;0.23955849;0.94436365 +11890;3;0.054779053;0.101119995;0.12832642 +11892;1;-0.51843375;4.30314;8.800587 +11892;0;0.23893738;4.7557526;8.660141 +11892;3;0.058441162;0.1005249;0.12771606 +11897;4;13.842773;-1.1901855;-64.497375 +11897;6;-0.48272243;-0.5020331;-0.027583476 +11897;7;0.8915581;-0.40691373;0.19885986;0.0;0.45226046;0.7764402;-0.43886346;0.0;0.024176776 +11897;0;0.23416138;4.8079987;8.65538 +11897;3;0.05722046;0.09989929;0.12771606 +11897;12;0.20993344;0.08243183;0.23989818;0.94423616 +11897;0;0.25328064;4.8222656;8.664902 +11897;1;-0.5189774;4.306557;8.7988825 +11898;2;-0.75127816;-0.43638515;0.13411236; +11898;3;0.05722046;0.09989929;0.12649536 +11900;0;0.25805664;4.8460083;8.669678 +11900;12;0.21006879;0.08259047;0.2402355;0.94410634 +11900;3;0.05722046;0.097457886;0.12710571 +11902;0;0.26283264;4.874527;8.6792145 +11903;3;0.05783081;0.09623718;0.12771606 +11903;1;-0.51944995;4.3099813;8.797178 +11904;4;15.04364;-1.3412476;-65.097046 +11904;6;-0.50924176;-0.5115344;-0.030273747 +11904;7;0.87993795;-0.42511067;0.21210869;0.0;0.4743548;0.76135087;-0.4419641;0.0;0.026394505 +11904;0;0.24848938;4.8650208;8.688751 +11904;3;0.05722046;0.09440613;0.12771606 +11905;12;0.21020496;0.082745016;0.24056493;0.94397867 +11906;0;0.25805664;4.907776;8.660141 +11908;1;-0.51976895;4.313442;8.795463 +11908;3;0.056610107;0.093185425;0.12710571 +11909;0;0.26283264;4.9267883;8.717377 +11910;12;0.21034539;0.08289333;0.2408997;0.943849 +11910;3;0.058441162;0.09074402;0.12649536 +11911;0;0.26283264;4.9552917;8.65538 +11911;1;-0.51995087;4.3169475;8.793732 +11912;3;0.05783081;0.09013367;0.12771606 +11913;4;14.593506;-1.4907837;-66.44745 +11913;6;-0.48543707;-0.51976234;-0.03035706 +11913;7;0.8910976;-0.4049752;0.20479295;0.0;0.45304644;0.7676655;-0.45325354;0.0;0.026343979 +11914;0;0.26283264;4.94104;8.6458435 +11914;3;0.055999756;0.08830261;0.12893677 +11914;12;0.2104898;0.083035216;0.24123055;0.94371974 +11916;1;-0.5199947;4.3204465;8.79201 +11916;0;0.24372864;4.9457855;8.664902 +11917;2;-0.79392767;-0.5920892;0.12068939; +11917;3;0.05783081;0.08401489;0.12893677 +11919;0;0.22460938;4.9885406;8.669678 +11919;12;0.21063472;0.08317164;0.24156314;0.94359034 +11919;3;0.059051514;0.08279419;0.13076782 +11921;0;0.24372864;4.9933014;8.703064 +11921;1;-0.51978695;4.3240395;8.790257 +11921;3;0.059051514;0.07974243;0.13381958 +11923;4;15.193176;-1.7913818;-66.44745 +11923;6;-0.49899942;-0.5207181;-0.027997606 +11923;7;0.88438255;-0.4151216;0.21340504;0.0;0.4661308;0.7616854;-0.45006382;0.0;0.024283689 +11924;0;0.23893738;5.031311;8.70784 +11924;12;0.21078824;0.08329361;0.24188963;0.94346166 +11927;3;0.059661865;0.077301025;0.13809204 +11927;1;-0.5192305;4.327726;8.788475 +11927;5;999.5853 +11927;0;0.25328064;5.06456;8.70784 +11928;3;0.059051514;0.073028564;0.14115906 +11929;12;0.21094969;0.08340476;0.24223332;0.9433276 +11929;0;0.21984863;5.06456;8.6839905 +11929;3;0.059051514;0.0687561;0.14175415 +11931;1;-0.5182789;4.331447;8.786698 +11931;0;0.21028137;5.097824;8.712601 +11931;3;0.059051514;0.0663147;0.14175415 +11933;4;15.342712;-1.3412476;-66.29639 +11933;6;-0.48528558;-0.5292716;-0.02413063 +11933;7;0.8899669;-0.40263748;0.21410732;0.0;0.45554927;0.7635144;-0.45773423;0.0;0.020826938 +11933;0;0.23416138;5.097824;8.722153 +11933;3;0.060272217;0.060806274;0.14360046 +11935;12;0.21111658;0.08349695;0.24258538;0.94319165 +11935;0;0.23893738;5.0930634;8.784149 +11936;2;-0.7685792;-0.7252178;0.075621605; +11937;1;-0.5169649;4.3351717;8.784939 +11940;12;0.21128792;0.083571255;0.24293655;0.9430563 +11940;1;-0.5152672;4.338813;8.78324 +11942;3;0.05722046;0.056533813;0.14482117 +11942;0;0.22460938;5.107315;8.755524 +11943;3;0.056610107;0.053482056;0.14421082 +11943;0;0.21984863;5.121567;8.7603 +11943;3;0.0541687;0.047973633;0.14482117 +11943;4;15.342712;-1.940918;-65.097046 +11943;6;-0.50133383;-0.52890706;-0.02509075 +11943;7;0.8827502;-0.41492665;0.22042662;0.0;0.46934304;0.75711614;-0.4544143;0.0;0.021660056 +11943;0;0.20550537;5.074051;8.822296 +11943;3;0.05355835;0.041259766;0.14360046 +11945;12;0.21145844;0.08362432;0.24328646;0.9429232 +11945;0;0.22460938;5.1120605;8.812759 +11945;1;-0.5131534;4.342243;8.781669 +11945;3;0.048675537;0.037597656;0.14360046 +11952;12;0.21162643;0.083651565;0.24363256;0.9427937 +11952;0;0.22940063;5.1025696;8.836609 +11952;3;0.047454834;0.032104492;0.14421082 +11952;0;0.22460938;5.1263123;8.831833 +11952;1;-0.51062083;4.3454337;8.780238 +11952;3;0.044387817;0.025985718;0.14237976 +11952;4;15.942383;-0.14038086;-66.14685 +11952;6;-0.49214503;-0.52576953;-0.025426313 +11953;7;0.88706553;-0.4086983;0.21466346;0.0;0.46111947;0.76228833;-0.45418653;0.0;0.021989817 +11953;0;0.23893738;5.1358337;8.855682 +11953;3;0.04133606;0.020492554;0.14053345 +11954;17;1;38dead6d7725;2162;3711;-61; +11954;17;1;38dead6d60ff;2316;2953;-54; +11955;17;1;1c1bb5efa29a;10336;633;-77; +11955;17;1;1c1bb5ecd182;11579;2193;-74; +11955;12;0.21178733;0.08365357;0.24397409;0.942669 +11955;0;0.24848938;5.121567;8.865219 +11955;2;-0.7553957;-0.77247477;-0.035743713; +11955;1;-0.5076312;4.3483934;8.778946 +11955;3;0.040725708;0.012542725;0.13749695 +11957;0;0.22940063;5.0788116;8.893829 +11957;12;0.2119404;0.08362627;0.2443055;0.9425512 +11957;3;0.040725708;0.0070648193;0.13442993 +11959;1;-0.5042164;4.351171;8.777766 +11959;0;0.22460938;5.1025696;8.936752 +11960;3;0.038894653;3.5095215E-4;0.13259888 +11961;4;15.942383;-1.4907837;-66.44745 +11961;6;-0.5105611;-0.51866037;-0.025127932 +11961;7;0.87828135;-0.42439935;0.22024298;0.0;0.4776459;0.7577266;-0.4446399;0.0;0.02182091 +11961;0;0.24848938;5.06456;8.946289 +11962;3;0.03767395;-0.006378174;0.13015747 +11962;12;0.21209311;0.08356876;0.2446148;0.94244176 +11962;5;999.5853 +11964;0;0.22940063;5.06456;8.955841 +11964;1;-0.5003459;4.3537807;8.776694 +11964;3;0.0382843;-0.011260986;0.12710571 +11966;0;0.25805664;5.059799;8.931976 +11966;12;0.2122455;0.08348324;0.24491115;0.94233805 +11966;3;0.040115356;-0.017974854;0.12527466 +11970;0;0.25805664;5.0122986;8.970154 +11970;1;-0.4960745;4.356381;8.775646 +11970;3;0.040725708;-0.024093628;0.12464905 +11976;12;0.21240212;0.08337151;0.24519032;0.94224006 +11976;1;-0.49131814;4.358929;8.774649 +11976;4;15.04364;-1.6403198;-64.64691 +11976;6;-0.51481897;-0.5093792;-0.02876043 +11976;7;0.87692636;-0.4298687;0.21497215;0.0;0.47996858;0.7598846;-0.4384125;0.0;0.025105756 +11976;2;-0.76750386;-0.6919761;-0.18195343; +11976;0;0.29148865;4.9885406;8.989227 +11977;3;0.040725708;-0.02897644;0.12283325 +11977;0;0.28671265;4.960037;9.056 +11977;12;0.21256548;0.08323299;0.24545798;0.94214576 +11978;3;0.043167114;-0.035079956;0.123428345 +11978;1;-0.48612753;4.361573;8.7736225 +11979;0;0.2962799;4.969528;9.027374 +11979;3;0.04499817;-0.039367676;0.12161255 +11979;0;0.3058319;4.9220276;9.041687 +11979;3;0.04499817;-0.04425049;0.11917114 +11980;4;14.892578;-1.4907837;-66.44745 +11980;6;-0.5161536;-0.49827084;-0.03381176 +11980;7;0.8772004;-0.43352932;0.20632957;0.0;0.47920537;0.76397455;-0.43209413;0.0;0.029694939 +11981;0;0.35359192;4.9362793;9.051224 +11981;12;0.21274221;0.08306677;0.24570242;0.9420568 +11981;3;0.047454834;-0.046691895;0.119766235 +11983;1;-0.48061404;4.364268;8.772588 +11983;0;0.3201599;4.9267883;9.0607605 +11983;3;0.051116943;-0.04852295;0.11793518 +11985;0;0.34403992;4.917267;9.098923 +11985;12;0.21292536;0.082887836;0.24595027;0.9419665 +11986;3;0.054779053;-0.05218506;0.116104126 +11987;0;0.35359192;4.879257;9.132294 +11988;1;-0.47493875;4.3671618;8.771456 +11988;3;0.058441162;-0.05647278;0.11427307 +11990;4;15.193176;-1.7913818;-65.24658 +11990;6;-0.5504725;-0.49038756;-0.038699523 +11990;7;0.8611709;-0.46144405;0.21319957;0.0;0.5071684;0.75183696;-0.421333;0.0;0.03413028 +11990;0;0.36314392;4.850769;9.122772 +11991;3;0.06271362;-0.05769348;0.111831665 +11991;12;0.2131223;0.08270028;0.24618928;0.941876 +11992;0;0.33926392;4.850769;9.14183 +11993;1;-0.46906695;4.370302;8.770208 +11994;2;-0.82876545;-0.54662704;-0.31063938; +11994;3;0.0688324;-0.06074524;0.10939026 +11995;0;0.34883118;4.8555145;9.203827 +11995;12;0.21333762;0.08250456;0.24641421;0.9417856 +11995;3;0.07493591;-0.06135559;0.10450745 +11997;0;0.38226318;4.8222656;9.203827 +11997;1;-0.46314687;4.373844;8.768756 +11998;3;0.07980347;-0.06440735;0.098983765 +12000;4;14.593506;-0.14038086;-64.94751 +12000;6;-0.5269838;-0.48226255;-0.041509215 +12000;7;0.87326264;-0.44556856;0.19718254;0.0;0.48586074;0.76574945;-0.42138708;0.0;0.03676444 +12000;0;0.35836792;4.8365173;9.232452 +12000;3;0.08531189;-0.06562805;0.09715271 +12001;12;0.21357979;0.08230141;0.24659441;0.9417013 +12001;5;999.5853 +12002;0;0.34403992;4.827011;9.208603 +12002;1;-0.45724148;4.3778124;8.767086 +12002;3;0.09080505;-0.06745911;0.0947113 +12004;0;0.35836792;4.817505;9.284912 +12005;3;0.095687866;-0.066848755;0.08982849 +12005;12;0.21384431;0.082106374;0.24677834;0.9416101 +12007;0;0.3201599;4.8127594;9.318314 +12007;1;-0.45139295;4.3821487;8.765223 +12007;3;0.10119629;-0.06929016;0.08616638 +12009;4;15.193176;0.1586914;-65.24658 +12009;6;-0.5289436;-0.47650713;-0.03434463 +12009;7;0.8707793;-0.44840795;0.20167716;0.0;0.49072632;0.76716655;-0.41308963;0.0;0.03051272 +12010;0;0.32492065;4.8317566;9.323074 +12010;3;0.107910156;-0.071121216;0.08248901 +12010;12;0.21413086;0.081917144;0.24694552;0.94151765 +12012;0;0.35359192;4.8650208;9.370773 +12012;1;-0.44562203;4.3869157;8.763133 +12012;2;-0.8219193;-0.45739508;-0.5011425; +12012;3;0.11279297;-0.074798584;0.078826904 +12014;12;0.21444182;0.08173161;0.24709025;0.941425 +12015;0;0.34883118;4.8650208;9.394608 +12015;3;0.11830139;-0.07723999;0.07455444 +12016;0;0.35836792;4.9220276;9.46138 +12017;3;0.12684631;-0.0809021;0.071502686 +12017;1;-0.43976018;4.392121;8.760821 +12020;4;14.593506;-1.4907837;-65.24658 +12020;6;-0.5392611;-0.4794014;-0.03785882 +12020;7;0.86643827;-0.45561564;0.20420372;0.0;0.49815357;0.7613571;-0.41494402;0.0;0.03358302 +12020;0;0.36791992;5.0027924;9.513855 +12020;3;0.13233948;-0.0809021;0.06599426 +12020;12;0.21478227;0.081541054;0.24719971;0.9413352 +12021;0;0.36791992;5.059799;9.561539 +12021;1;-0.43385643;4.397969;8.758182 +12021;3;0.1390686;-0.082733154;0.062332153 +12023;0;0.42526245;5.140564;9.575851 +12024;12;0.21515857;0.08135512;0.24729882;0.9412393 +12024;3;0.14517212;-0.0809021;0.0617218 +12026;0;0.44914246;5.1928253;9.628311 +12026;1;-0.4279828;4.4044156;8.755231 +12026;3;0.15188599;-0.07662964;0.05683899 +12029;4;13.693237;-0.59051514;-63.89618 +12029;6;-0.5147112;-0.49415946;-0.04661431 +12029;7;0.88036925;-0.4333904;0.19267239;0.0;0.47251135;0.7663027;-0.43533087;0.0;0.04102287 +12030;0;0.45391846;5.2498474;9.671219 +12030;3;0.1561737;-0.071121216;0.056228638 +12030;12;0.2155657;0.08117678;0.24738018;0.9411402 +12031;0;0.4443512;5.3163605;9.70462 +12031;1;-0.42255652;4.4114046;8.751975 +12031;2;-0.8542621;-0.6936178;-0.8077116; +12031;3;0.15922546;-0.061965942;0.054397583 +12034;0;0.44914246;5.3258667;9.737991 +12034;12;0.21599595;0.081027955;0.24745053;0.94103587 +12034;3;0.16227722;-0.0491333;0.05683899 +12036;0;0.4204712;5.4066315;9.761841 +12036;1;-0.41794562;4.418707;8.748512 +12036;3;0.15983582;-0.033859253;0.058670044 +12038;4;15.342712;-1.940918;-66.596985 +12038;6;-0.5422885;-0.50540435;-0.043046333 +12038;7;0.8664893;-0.45157436;0.21278387;0.0;0.49777365;0.74944544;-0.43652368;0.0;0.037652995 +12038;0;0.37747192;5.4398804;9.776154 +12039;12;0.21643302;0.08092793;0.247521;0.9409255 +12039;3;0.15922546;-0.016159058;0.0605011 +12039;5;999.5853 +12040;0;0.31536865;5.4826508;9.833389 +12041;1;-0.41464517;4.4260106;8.744976 +12041;3;0.1561737;0.0046081543;0.062942505 +12045;12;0.21684964;0.08090247;0.24761978;0.9408058 +12045;0;0.24372864;5.5158997;9.838165 +12045;3;0.15188599;0.025985718;0.066604614 +12046;1;-0.41308665;4.433097;8.74146 +12046;0;0.1816101;5.511139;9.885849 +12046;3;0.14456177;0.049209595;0.06843567 +12048;4;14.143372;-0.59051514;-65.84625 +12048;6;-0.45457113;-0.50849426;-0.01836865 +12048;7;0.9022243;-0.38352436;0.19723172;0.0;0.43096852;0.7847763;-0.44541237;0.0;0.016043719 +12048;0;0.124298096;5.5063934;9.995529 +12049;3;0.13478088;0.07485962;0.07209778 +12049;12;0.21722743;0.08096792;0.24775074;0.94067854 +12051;1;-0.41354653;4.43951;8.738183 +12051;0;7.6293945E-5;5.534912;10.014618 +12051;2;-0.70914173;-1.0382152;-1.112566; +12051;3;0.1219635;0.101745605;0.07577515 +12053;0;-0.10978699;5.5301514;10.057541 +12053;12;0.21754284;0.08113776;0.24791862;0.9405468 +12053;3;0.1060791;0.12739563;0.08065796 +12055;0;-0.26264954;5.487381;10.090927 +12056;1;-0.41632295;4.444805;8.735359 +12056;3;0.08531189;0.15428162;0.083099365 +12057;4;14.442444;-1.3412476;-66.596985 +12057;6;-0.3912604;-0.4979236;0.02602241 +12057;7;0.919377;-0.3350484;0.20612694;0.0;0.3927126;0.8121814;-0.43143737;0.0;-0.02286009 +12061;12;0.21776706;0.08141133;0.24810132;0.9404231 +12061;0;-0.38208008;5.4636383;10.129074 +12061;1;-0.42138216;4.4483514;8.733311 +12061;3;0.063323975;0.17687988;0.08554077 +12062;0;-0.48239136;5.444641;10.172012 +12062;3;0.035217285;0.19459534;0.087387085 +12062;12;0.21786407;0.08178989;0.24836212;0.9402989 +12063;0;-0.5922699;5.4066315;10.205383 +12064;3;0.0071105957;0.20986938;0.090423584 +12065;0;-0.73080444;5.387619;10.272156 +12065;1;-0.42813122;4.4495816;8.732356 +12065;3;-0.02708435;0.22329712;0.095321655 +12068;4;13.542175;-2.090454;-67.196655 +12068;6;-0.28650567;-0.48200765;0.071024545 +12068;7;0.9475223;-0.2504041;0.19874461;0.0;0.31344503;0.8499476;-0.42348722;0.0;-0.06287954 +12069;0;-0.859787;5.321106;10.262619 +12069;3;-0.061904907;0.22819519;0.099594116 +12069;12;0.21781355;0.0822281;0.24865998;0.94019365 +12070;1;-0.43596637;4.4479866;8.73278 +12070;2;0.081321836;-0.98318434;-1.4469261; +12070;0;-0.9696655;5.3068542;10.2864685 +12071;3;-0.09794617;0.2318573;0.10449219 +12073;12;0.21759765;0.0826847;0.24899992;0.94011354 +12073;0;-1.0365448;5.264099;10.310318 +12073;3;-0.13398743;0.22756958;0.1105957 +12074;0;-1.1034241;5.1453247;10.305542 +12074;3;-0.1736908;0.21902466;0.10997009 +12074;1;-0.443927;4.443311;8.73476 +12078;4;15.492249;-1.4907837;-64.94751 +12078;6;-0.29327208;-0.46079546;0.106664576 +12078;7;0.9381773;-0.2589342;0.22973152;0.0;0.3327616;0.8574555;-0.3924791;0.0;-0.0953583 +12078;0;-1.2849579;5.0455627;10.300781 +12078;3;-0.21707153;0.20802307;0.1105957 +12078;12;0.21721147;0.08310789;0.24937174;0.940067 +12079;5;999.5853 +12079;0;-1.4091492;5.017044;10.26738 +12079;1;-0.45152405;4.435123;8.738531 +12079;3;-0.25860596;0.18725586;0.106933594 +12082;0;-1.4664917;4.9457855;10.248322 +12082;12;0.21664718;0.0834604;0.24976191;0.9400625 +12083;3;-0.29525757;0.16343689;0.10571289 +12083;0;-1.5333557;4.969528;10.243546 +12084;1;-0.45775345;4.4235196;8.744086 +12084;3;-0.33068848;0.1377716;0.10386658 +12086;4;14.442444;-2.6901245;-65.097046 +12086;6;-0.17454411;-0.44735083;0.1485867 +12086;7;0.96283346;-0.15657045;0.2200847;0.0;0.2348118;0.8878971;-0.3956032;0.0;-0.1334728 +12086;0;-1.5715637;4.9315186;10.234009 +12086;3;-0.36367798;0.11273193;0.10142517 +12087;12;0.21592341;0.083683975;0.25013557;0.9401098 +12090;0;-1.5715637;4.893524;10.195847 +12090;1;-0.4620582;4.4089465;8.751217 +12091;2;0.88084614;-0.62976694;-1.5074701; +12091;3;-0.3917694;0.085861206;0.09715271 +12091;0;-1.552475;4.8460083;10.191071 +12092;12;0.21506874;0.08375461;0.2504889;0.9402052 +12092;3;-0.41316223;0.05836487;0.09593201 +12094;0;-1.6289062;4.8365173;10.191071 +12095;1;-0.46430254;4.391995;8.759618 +12097;3;-0.43026733;0.029052734;0.095321655 +12097;4;16.093445;-1.3412476;-66.29639 +12097;6;-0.19388857;-0.4382425;0.15849596 +12097;7;0.9560583;-0.17446794;0.23561281;0.0;0.25598234;0.8885319;-0.38076755;0.0;-0.14291777 +12097;0;-1.7053375;4.7224884;10.167236 +12097;3;-0.44430542;3.5095215E-4;0.09715271 +12097;12;0.21411692;0.08367925;0.25080648;0.9403446 +12098;0;-1.6909943;4.670227;10.176773 +12098;1;-0.46429393;4.373456;8.768889 +12099;3;-0.45040894;-0.030197144;0.095321655 +12101;0;-1.6766663;4.603714;10.186325 +12101;3;-0.45347595;-0.058914185;0.08982849 +12102;12;0.21311511;0.08345403;0.25110516;0.9405124 +12103;0;-1.6480103;4.537201;10.205383 +12103;1;-0.46184674;4.354165;8.778613 +12104;3;-0.45162964;-0.08822632;0.08187866 +12106;4;15.04364;-1.0406494;-66.29639 +12106;6;-0.16132234;-0.41358754;0.16010228 +12106;7;0.96410173;-0.14708056;0.2210778;0.0;0.22180751;0.90379554;-0.36599907;0.0;-0.14597774 +12106;0;-1.6289062;4.5181885;10.257843 +12106;3;-0.44491577;-0.11143494;0.07209778 +12106;12;0.21211068;0.083084136;0.25136897;0.9407018 +12108;0;-1.576355;4.465927;10.300781 +12108;1;-0.45733216;4.3348866;8.788384 +12108;3;-0.43208313;-0.1322174;0.06477356 +12109;2;1.1547445;-0.32627678;-1.4171124; +12111;0;-1.566803;4.4611816;10.310318 +12111;12;0.21114196;0.08259488;0.2515697;0.94090915 +12111;3;-0.41131592;-0.14993286;0.059280396 +12112;0;-1.5142517;4.44693;10.2912445 +12112;1;-0.45132685;4.316651;8.797667 +12113;3;-0.38627625;-0.16215515;0.051330566 +12117;4;15.942383;-2.090454;-66.89758 +12117;6;-0.23677282;-0.40399057;0.14609152 +12117;7;0.9483222;-0.21568401;0.23273475;0.0;0.28769466;0.8938456;-0.34390658;0.0;-0.13385378 +12117;0;-1.4617004;4.4231873;10.229233 +12117;3;-0.35939026;-0.17253113;0.04522705 +12118;12;0.21025626;0.08203207;0.2517081;0.9411197 +12118;5;999.5836 +12118;0;-1.4855804;4.366165;10.243546 +12118;1;-0.44444066;4.3004193;8.805963 +12119;3;-0.32580566;-0.18536377;0.039123535 +12121;0;-1.4378204;4.252136;10.248322 +12121;12;0.20948914;0.08144481;0.25179598;0.9413182 +12121;3;-0.29096985;-0.19329834;0.033615112 +12122;1;-0.43681315;4.286697;8.813032 +12122;0;-1.3852692;4.176132;10.26738 +12123;3;-0.25431824;-0.1963501;0.026901245 +12127;4;14.892578;-1.1901855;-65.24658 +12127;6;-0.24818787;-0.38316363;0.13410962 +12127;7;0.9483757;-0.22783498;0.22062343;0.0;0.29189795;0.8990676;-0.32630214;0.0;-0.12401235 +12127;12;0.20887128;0.08084511;0.25183484;0.94149673 +12127;0;-1.3470612;4.11911;10.338928 +12127;3;-0.21522522;-0.19390869;0.022018433 +12127;1;-0.42908698;4.2759314;8.81864 +12128;0;-1.3040619;4.095352;10.300781 +12128;2;0.98478174;-0.026114464;-1.456665; +12128;3;-0.17736816;-0.18597412;0.01651001 +12129;0;-1.2467346;4.109619;10.262619 +12130;12;0.20842017;0.08027809;0.25183064;0.94164634 +12130;3;-0.13703918;-0.17803955;0.012237549 +12131;1;-0.42200783;4.26843;8.822615 +12132;0;-1.1894073;4.057358;10.253082 +12132;3;-0.09611511;-0.16459656;0.009796143 +12134;4;15.04364;-1.6403198;-66.596985 +12134;6;-0.30231044;-0.3745308;0.11548865 +12134;7;0.9357409;-0.27708808;0.2182;0.0;0.33598775;0.8884742;-0.31261152;0.0;-0.10724415 +12135;12;0.20813353;0.07978479;0.25178936;0.9417627 +12135;0;-1.1416473;4.019348;10.257843 +12135;3;-0.057632446;-0.14749146;0.007965088 +12137;1;-0.41600865;4.2642393;8.824925 +12137;0;-1.0652008;3.9955902;10.262619 +12141;1;-0.4115152;4.263271;8.825604 +12141;12;0.20800923;0.07939501;0.25174227;0.9418357 +12142;3;-0.017929077;-0.12731934;0.0067443848 +12142;0;-0.99354553;3.9290771;10.176773 +12142;3;0.020553589;-0.10777283;0.009185791 +12142;0;-0.95054626;3.8530579;10.162476 +12142;3;0.05659485;-0.08456421;0.013458252 +12148;1;-0.40869004;4.2652655;8.824771 +12148;12;0.20803447;0.07913304;0.25169885;0.9418638 +12148;4;15.342712;-1.940918;-65.84625 +12148;6;-0.39645714;-0.36095878;0.09326356 +12148;7;0.90572536;-0.36126852;0.22169031;0.0;0.4148137;0.8629919;-0.28840002;0.0;-0.0871271 +12148;0;-0.897995;3.8245544;10.110016 +12148;3;0.08836365;-0.061965942;0.015914917 +12148;0;-0.91233826;3.7817993;10.05278 +12148;3;0.119522095;-0.038757324;0.017745972 +12149;2;0.61862177;0.31157207;-1.3650007; +12149;0;-0.8215637;3.7152863;9.981247 +12149;3;0.15066528;-0.017974854;0.018966675 +12151;17;1;38dead6d7725;3246;759;-58; +12152;17;1;38dead6d60ff;1290;3282;-55; +12152;17;1;1c1bb5efa29a;10455;1221;-70; +12153;17;1;1c1bb5ecd182;5010;4338;-71; +12153;12;0.20819294;0.079007275;0.2516799;0.94184446 +12153;0;-0.7499237;3.70578;9.881073 +12153;1;-0.40755728;4.269872;8.822596 +12153;3;0.17816162;-2.746582E-4;0.023239136 +12155;12;0.208467;0.0790115;0.25167894;0.9417836 +12157;1;-0.40780374;4.276894;8.819182 +12163;12;0.208847;0.07912823;0.25170168;0.94168365 +12163;1;-0.409232;4.2857347;8.814824 +12164;4;16.093445;-0.29144287;-65.54718 +12164;6;-0.44837502;-0.357861;0.07574975 +12164;7;0.88707745;-0.40603864;0.21960472;0.0;0.45614606;0.8440631;-0.28193673;0.0;-0.070883036 +12164;12;0.20930673;0.07933751;0.2517441;0.9415526 +12164;0;-0.7260437;3.6535187;9.804764 +12164;3;0.204422;0.018051147;0.024459839 +12164;5;999.5836 +12164;0;-0.6925812;3.6250305;9.733231 +12164;3;0.22702026;0.033935547;0.028121948 +12164;0;-0.65914917;3.5537567;9.690308 +12164;3;0.24778748;0.047973633;0.029953003 +12164;0;-0.64004517;3.4967346;9.590164 +12164;3;0.26734924;0.060806274;0.031784058 +12164;4;15.342712;-1.6403198;-65.097046 +12164;6;-0.48125544;-0.34892207;0.06664092 +12164;7;0.8739084;-0.43499932;0.21693249;0.0;0.48204562;0.8330007;-0.2715544;0.0;-0.06257892 +12165;0;-0.59706116;3.4397278;9.499542 +12165;3;0.283844;0.07119751;0.031784058 +12165;0;-0.5349426;3.4302368;9.385086 +12165;1;-0.41156232;4.2961555;8.809641 +12165;2;0.24446496;0.7138157;-0.8847151; +12165;3;0.29666138;0.07852173;0.03300476 +12168;0;-0.5015106;3.4064636;9.246765 +12168;12;0.20983985;0.07961989;0.25179908;0.9413954 +12168;3;0.31010437;0.0846405;0.033615112 +12170;0;-0.47283936;3.368454;9.170456 +12171;1;-0.4144209;4.307775;8.803831 +12171;3;0.3192749;0.08647156;0.03300476 +12173;4;15.942383;-2.8411865;-67.196655 +12173;6;-0.54131496;-0.35158747;0.05151554 +12173;7;0.84675753;-0.48374328;0.2213464;0.0;0.529778;0.8046048;-0.26822814;0.0;-0.048342798 +12173;0;-0.45851135;3.325714;9.0607605 +12173;3;0.32843018;0.085250854;0.033615112 +12173;12;0.21042638;0.079949975;0.251859;0.9412204 +12175;1;-0.41740778;4.320235;8.797582 +12177;12;0.21105742;0.08030089;0.25191897;0.9410332 +12178;0;-0.43463135;3.3161926;8.984451 +12178;3;0.33638;0.08279419;0.03300476 +12178;0;-0.42507935;3.2877045;8.827072 +12178;3;0.34614563;0.080963135;0.031784058 +12179;0;-0.41073608;3.2971954;8.731674 +12179;1;-0.4202118;4.3334737;8.790935 +12179;3;0.35409546;0.07608032;0.029953003 +12181;4;15.342712;-0.59051514;-64.34631 +12181;6;-0.50249535;-0.36069465;0.047005136 +12182;7;0.86742884;-0.45062298;0.21096486;0.0;0.49561515;0.8199899;-0.28632537;0.0;-0.043964252 +12182;0;-0.4202881;3.2116852;8.664902 +12182;3;0.35958862;0.06814575;0.028121948 +12182;12;0.21173066;0.080653585;0.2519714;0.9408377 +12184;0;-0.37728882;3.2069397;8.588608 +12184;1;-0.4226497;4.3473015;8.783988 +12184;2;-0.006511688;1.0425086;-0.12530994; +12184;3;0.3663025;0.062026978;0.026901245 +12186;0;-0.38208008;3.1926727;8.536133 +12187;12;0.21244337;0.08099279;0.25200874;0.9406379 +12187;3;0.37425232;0.057754517;0.023849487 +12189;0;-0.34864807;3.1546783;8.450302 +12189;1;-0.42460173;4.361674;8.776766 +12190;3;0.38157654;0.052871704;0.022628784 +12191;4;15.492249;-3.440857;-64.94751 +12192;6;-0.5767664;-0.3570196;0.041235264 +12192;7;0.8296615;-0.51093006;0.2249718;0.0;0.5569291;0.78537375;-0.27021864;0.0;-0.038624126 +12192;0;-0.3534088;3.178421;8.373978 +12192;3;0.38830566;0.047973633;0.018356323 +12192;12;0.21319364;0.08131257;0.25202775;0.9404354 +12193;5;999.5836 +12194;0;-0.35820007;3.1309204;8.321533 +12194;1;-0.42624632;4.376667;8.769219 +12194;3;0.39501953;0.045532227;0.015289307 +12196;0;-0.36775208;3.1404114;8.297668 +12196;12;0.21398075;0.08162347;0.25202912;0.94022936 +12196;3;0.40296936;0.04248047;0.012237549 +12198;0;-0.34864807;3.1404114;8.254761 +12198;1;-0.42776528;4.3922186;8.761367 +12199;3;0.41029358;0.041870117;0.0073547363 +12201;4;14.892578;-2.5405884;-64.497375 +12201;6;-0.530125;-0.36323223;0.042210914 +12201;7;0.8543943;-0.47264978;0.21589936;0.0;0.5181259;0.8064527;-0.2849204;0.0;-0.039445076 +12201;0;-0.32476807;3.1499176;8.2165985 +12201;3;0.4188385;0.044311523;0.0018615723 +12201;12;0.21480334;0.08193053;0.25200942;0.9400203 +12203;0;-0.3295288;3.1831818;8.197525 +12203;1;-0.42938918;4.4084334;8.753139 +12204;3;0.42251587;0.048599243;-0.0018157959 +12204;2;-0.09928423;1.2498994;0.42083836; +12205;0;-0.37252808;3.2259216;8.121216 +12206;12;0.21566346;0.08225226;0.25196484;0.93980724 +12206;3;0.42922974;0.054092407;-0.0018157959 +12210;0;-0.39163208;3.2639465;8.030594 +12210;3;0.43533325;0.060195923;0.0018615723 +12210;1;-0.43158016;4.4252367;8.744548 +12211;4;14.892578;-1.4907837;-66.89758 +12211;6;-0.45037282;-0.38563076;0.048728906 +12211;7;0.8912407;-0.40333325;0.20739396;0.0;0.45127928;0.83416915;-0.31703112;0.0;-0.045132454 +12211;0;-0.41552734;3.2971954;7.978134 +12211;3;0.44021606;0.0687561;0.0043029785 +12212;12;0.21655132;0.08260302;0.251879;0.9395953 +12215;0;-0.46328735;3.3494568;7.978134 +12215;1;-0.4343049;4.442659;8.735575 +12215;3;0.44511414;0.07485962;0.009796143 +12217;0;-0.48718262;3.3732147;7.9685974 +12217;12;0.21745989;0.083000846;0.2518341;0.9393624 +12217;3;0.4493866;0.08157349;0.014694214 +12219;0;-0.5253906;3.4112244;7.9113617 +12219;1;-0.43752515;4.46068;8.726226 +12219;3;0.45365906;0.085861206;0.017745972 +12220;4;15.193176;-3.1402588;-65.24658 +12220;6;-0.4362658;-0.40629444;0.06631227 +12220;7;0.893278;-0.38815817;0.22668846;0.0;0.44536427;0.8325525;-0.32940385;0.0;-0.06086925 +12220;0;-0.5158386;3.4207153;7.9256744 +12221;3;0.4542694;0.09196472;0.024459839 +12223;12;0.21839206;0.0834377;0.25181368;0.9391129 +12223;1;-0.44101164;4.4789205;8.716702 +12223;2;0.0022851527;1.1291761;0.73758507; +12225;0;-0.5445099;3.4729767;7.901825 +12225;3;0.4530487;0.09623718;0.031173706 +12229;0;-0.54927063;3.4919891;7.897049 +12229;3;0.44999695;0.0993042;0.035461426 +12229;12;0.21933116;0.08389803;0.25181663;0.9388522 +12230;0;-0.5922699;3.5632477;7.887512 +12230;1;-0.44465625;4.4971533;8.707124 +12231;3;0.4481659;0.1035614;0.042785645 +12231;4;15.942383;-2.090454;-66.14685 +12231;6;-0.4029233;-0.42326126;0.074948914 +12231;7;0.9052767;-0.35750726;0.22948365;0.0;0.41930088;0.8387398;-0.34742242;0.0;-0.06827103 +12231;0;-0.5922699;3.6202698;7.9113617 +12231;3;0.44387817;0.104782104;0.051330566 +12231;12;0.22026676;0.0843739;0.25184572;0.93858266 +12232;5;999.5836 +12232;0;-0.6257019;3.70578;7.897049 +12232;1;-0.4483105;4.515305;8.697536 +12233;3;0.43840027;0.1035614;0.059890747 +12235;0;-0.65914917;3.7200317;7.854141 +12235;12;0.221194;0.084860384;0.25191373;0.93830246 +12236;3;0.43045044;0.1005249;0.070877075 +12237;0;-0.68782043;3.753296;7.844589 +12237;1;-0.4515676;4.533091;8.688111 +12238;3;0.42007446;0.09623718;0.07821655 +12239;4;15.193176;-2.8411865;-64.94751 +12239;6;-0.35097712;-0.4447758;0.08745721 +12239;7;0.9225274;-0.31036475;0.22938408;0.0;0.37779146;0.8476756;-0.37245095;0.0;-0.07884765 +12240;0;-0.6925812;3.8055573;7.8684235 +12240;3;0.40663147;0.09196472;0.086761475 +12241;12;0.22210254;0.08532964;0.25202283;0.9380159 +12242;1;-0.45416072;4.5500917;8.679085 +12242;0;-0.73080444;3.8388062;7.863678 +12243;2;0.16676134;0.8658204;0.79839325; +12244;3;0.38952637;0.0846405;0.099594116 +12245;12;0.22297423;0.08576282;0.25216934;0.93773025 +12245;0;-0.7403717;3.9005737;7.9304504 +12246;3;0.37242126;0.07608032;0.111206055 +12251;0;-0.68782043;3.9813385;7.9638214 +12251;1;-0.4556581;4.565855;8.670724 +12251;3;0.34980774;0.0675354;0.12281799 +12251;4;15.342712;-4.0405273;-64.34631 +12251;6;-0.3644707;-0.46210554;0.08615434 +12251;7;0.91717255;-0.3190683;0.2387257;0.0;0.39097574;0.8363179;-0.38433102;0.0;-0.07702274 +12251;0;-0.6925812;4.009842;8.006744 +12251;3;0.32720947;0.05836487;0.13441467 +12251;12;0.22379047;0.08612989;0.25236353;0.9374499 +12251;1;-0.45588222;4.5799394;8.663281 +12251;0;-0.71170044;4.057358;8.03537 +12252;3;0.3021698;0.051651;0.14846802 +12254;12;0.22452718;0.08642303;0.25261194;0.93717974 +12254;0;-0.7499237;4.1286316;8.154587 +12254;3;0.27651978;0.04309082;0.16252136 +12256;1;-0.45487675;4.5920777;8.656906 +12256;0;-0.7021332;4.1713715;8.135513 +12256;3;0.24719238;0.038208008;0.17655945 +12259;4;15.342712;-4.0405273;-65.097046 +12259;6;-0.35043457;-0.4722797;0.08609139 +12259;7;0.9223164;-0.3057255;0.23635678;0.0;0.37877333;0.83641016;-0.39616776;0.0;-0.0765726 +12259;0;-0.68304443;4.180893;8.2118225 +12259;3;0.21786499;0.032104492;0.19122314 +12260;12;0.2251704;0.086634494;0.25292298;0.936922 +12261;1;-0.4527036;4.6018925;8.651807 +12262;0;-0.74513245;4.199875;8.2642975 +12262;2;0.24206346;0.52676964;0.5610218; +12262;3;0.18670654;0.025985718;0.20710754 +12264;0;-0.73558044;4.2473907;8.311981 +12264;12;0.22569758;0.086770885;0.2533022;0.93667996 +12264;3;0.154953;0.01927185;0.22238159 +12267;1;-0.44935563;4.6092267;8.648076 +12267;0;-0.75468445;4.299652;8.393066 +12267;3;0.122558594;0.017440796;0.23519897 +12269;4;14.593506;-2.8411865;-64.19678 +12269;6;-0.31325817;-0.47179624;0.08967644 +12269;7;0.9349692;-0.27449444;0.22468992;0.0;0.34564298;0.8474045;-0.40303424;0.0;-0.07977257 +12269;0;-0.7594757;4.3043976;8.483673 +12274;3;0.08836365;0.013168335;0.25048828 +12275;12;0.2261024;0.086818635;0.25372913;0.9364624 +12275;0;-0.7499237;4.3614197;8.497986 +12275;1;-0.44507962;4.6138873;8.645811 +12276;3;0.051101685;0.012542725;0.26696777 +12276;5;999.5841 +12276;0;-0.7594757;4.370926;8.564758 +12276;12;0.22636878;0.08680136;0.25425604;0.93625665 +12277;3;0.020553589;0.009506226;0.28163147 +12277;0;-0.74513245;4.380417;8.6458435 +12277;1;-0.43991747;4.615705;8.645105 +12277;3;-0.013046265;0.009506226;0.2944641 +12277;4;16.842651;-2.8411865;-64.19678 +12277;6;-0.39619422;-0.46746337;0.08597145 +12277;7;0.90419716;-0.34450752;0.25247198;0.0;0.42018065;0.8235614;-0.38104457;0.0;-0.076653436 +12278;0;-0.75468445;4.389923;8.674438 +12278;3;-0.044799805;0.009506226;0.30729675 +12278;12;0.22648568;0.08671341;0.25486594;0.9360708 +12280;0;-0.7594757;4.4089203;8.731674 +12280;1;-0.4341079;4.614862;8.645849 +12280;2;0.29986897;0.2736721;0.10473728; +12280;3;-0.07473755;0.010726929;0.3219452 +12282;0;-0.7499237;4.404175;8.774612 +12283;12;0.2264624;0.08656775;0.25554797;0.93590385 +12283;3;-0.105270386;0.010726929;0.33477783 +12284;0;-0.74513245;4.3994293;8.846146 +12285;1;-0.42773;4.6114845;8.647969 +12285;3;-0.13398743;0.011947632;0.34516907 +12287;4;14.593506;-4.1915894;-65.69672 +12287;6;-0.33590907;-0.4600992;0.08403407 +12287;7;0.9284942;-0.2953491;0.22509447;0.0;0.3636517;0.84593153;-0.39007357;0.0;-0.07520665 +12288;0;-0.73558044;4.4231873;8.898605 +12288;3;-0.16392517;0.01499939;0.35617065 +12288;12;0.22630689;0.086364746;0.25628164;0.9357597 +12289;0;-0.8120117;4.44693;8.965378 +12290;1;-0.4209671;4.605642;8.651414 +12290;3;-0.1895752;0.01927185;0.36898804 +12292;0;-0.831131;4.4184265;8.955841 +12292;12;0.22601636;0.08612834;0.2571065;0.9356253 +12292;3;-0.21646118;0.024765015;0.3854828 +12294;0;-0.850235;4.389923;8.965378 +12294;1;-0.41408166;4.597542;8.656053 +12294;3;-0.2408905;0.02720642;0.39953613 +12297;4;16.093445;-4.3411255;-65.097046 +12297;6;-0.37403256;-0.45357004;0.09455259 +12297;7;0.9115885;-0.32842886;0.24726698;0.0;0.40224907;0.83674085;-0.37156513;0.0;-0.08486567 +12297;0;-0.850235;4.3376617;9.017838 +12297;3;-0.26409912;0.024765015;0.40992737 +12297;12;0.2255999;0.08586388;0.2580067;0.93550235 +12299;0;-0.86935425;4.2854004;9.022598 +12299;1;-0.40685448;4.587359;8.661796 +12299;3;-0.28671265;0.018051147;0.41908264 +12299;2;0.38141447;0.20439482;-0.2725706; +12301;0;-0.86935425;4.252136;9.079834 +12302;12;0.2250722;0.08556389;0.25897485;0.93538946 +12302;3;-0.30685425;0.010101318;0.4233551 +12304;0;-0.845459;4.214142;9.108459 +12304;1;-0.3987981;4.5752416;8.668577 +12304;3;-0.32946777;0.0015716553;0.42581177 +12306;4;14.442444;-2.9907227;-64.34631 +12306;6;-0.3296394;-0.43170154;0.09255609 +12306;7;0.9295912;-0.2940038;0.22231036;0.0;0.35890585;0.8593537;-0.3642766;0.0;-0.08394456 +12307;0;-0.7929077;4.176132;9.179993 +12307;3;-0.34718323;-0.009429932;0.42640686 +12307;12;0.22445427;0.085187905;0.25995007;0.9353017 +12309;0;-0.7785797;4.190384;9.208603 +12309;1;-0.38982132;4.5612946;8.676332 +12310;3;-0.36367798;-0.02104187;0.42640686 +12310;5;999.5841 +12311;0;-0.74513245;4.1381226;9.246765 +12312;12;0.22375003;0.08474674;0.26096898;0.93522686 +12312;3;-0.375885;-0.031417847;0.42396545 +12314;0;-0.74513245;4.100113;9.280151 +12314;3;-0.39115906;-0.04058838;0.42152405 +12314;1;-0.37992373;4.545927;8.684833 +12316;4;14.892578;-4.1915894;-64.94751 +12316;6;-0.40125382;-0.41484025;0.08012125 +12316;7;0.90501976;-0.35744476;0.23059145;0.0;0.4190156;0.8424897;-0.3385808;0.0;-0.073247 +12316;0;-0.73080444;4.0383606;9.294464 +12317;12;0.22298376;0.08423341;0.26198044;0.93517345 +12317;3;-0.4003296;-0.047912598;0.41603088 +12318;0;-0.68782043;4.0050964;9.308762 +12319;1;-0.36941397;4.5293283;8.6939535 +12319;2;0.3889268;0.3969617;-0.52373695; +12319;3;-0.4064331;-0.05708313;0.41418457 +12321;0;-0.6687012;3.9480896;9.332611 +12321;3;-0.40826416;-0.063186646;0.40930176 +12321;12;0.22216508;0.08366204;0.26297376;0.93514067 +12323;0;-0.6257019;3.8863068;9.351685 +12323;1;-0.35835993;4.512088;8.703376 +12323;3;-0.41253662;-0.071121216;0.40441895 +12326;4;13.392639;-4.0405273;-65.84625 +12326;6;-0.39064547;-0.39306802;0.06680836 +12326;7;0.91286397;-0.35174602;0.20725398;0.0;0.40357977;0.85414714;-0.32795772;0.0;-0.061667547 +12326;0;-0.55882263;3.8530579;9.399368 +12326;3;-0.41497803;-0.07846069;0.40014648 +12327;12;0.22133775;0.08300834;0.26379365;0.9351642 +12328;0;-0.5540619;3.8055573;9.423233 +12328;1;-0.34682262;4.4944196;8.712979 +12328;3;-0.41438293;-0.08578491;0.39707947 +12330;0;-0.5158386;3.8055573;9.451843 +12331;12;0.22048628;0.08235488;0.26473898;0.935156 +12331;3;-0.40948486;-0.09310913;0.39219666 +12333;1;-0.33481172;4.476732;8.722549 +12333;0;-0.48718262;3.753296;9.423233 +12333;3;-0.4039917;-0.09739685;0.38731384 +12335;4;14.743042;-4.6401978;-65.84625 +12335;6;-0.5093622;-0.37858346;0.051654167 +12335;7;0.86258584;-0.45309165;0.22506328;0.0;0.50363076;0.8112338;-0.29707858;0.0;-0.047975153 +12337;12;0.21964487;0.0816709;0.2656592;0.935153 +12337;0;-0.48718262;3.7485352;9.456619 +12337;3;-0.39483643;-0.102890015;0.38243103 +12338;0;-0.46806335;3.70578;9.4423065 +12338;1;-0.3225774;4.4594717;8.731848 +12338;2;0.20766252;0.6556401;-0.683671; +12338;3;-0.38017273;-0.10899353;0.37937927 +12340;0;-0.43940735;3.7010345;9.394608 +12340;12;0.21883528;0.08097444;0.26654938;0.9351501 +12341;3;-0.36123657;-0.11694336;0.3720398 +12343;1;-0.3099726;4.443363;8.740512 +12344;0;-0.40119934;3.6725311;9.38031 +12344;3;-0.34046936;-0.12487793;0.36410522 +12347;12;0.21809633;0.08026724;0.26740173;0.9351403 +12348;4;14.743042;-4.6401978;-65.84625 +12348;6;-0.54013246;-0.3728602;0.04274432 +12348;7;0.8488524;-0.47891513;0.22380812;0.0;0.52713007;0.7987115;-0.2901619;0.0;-0.039795205 +12349;0;-0.36297607;3.6345215;9.375534 +12349;3;-0.31785583;-0.13343811;0.35798645 +12349;5;999.5841 +12349;0;-0.2960968;3.606018;9.399368 +12350;3;-0.2934265;-0.14198303;0.35066223 +12351;0;-0.26742554;3.6345215;9.38031 +12351;1;-0.29692158;4.428881;8.748311 +12351;12;0.21745715;0.07955356;0.26821122;0.93511844 +12352;3;-0.26531982;-0.14871216;0.34150696 +12353;1;-0.28341126;4.416477;8.755028 +12354;0;-0.19099426;3.6440125;9.375534 +12354;3;-0.23600769;-0.15359497;0.33294678 +12356;17;1;38dead6d7725;4601;508;-57; +12357;17;1;38dead6d60ff;2027;790;-52; +12357;17;1;1c1bb5efa29a;7301;1020;-67; +12358;17;1;1c1bb5ecd182;7485;2004;-69; +12358;4;15.492249;-3.1402588;-65.69672 +12358;6;-0.5934477;-0.3706333;0.020368744 +12358;7;0.82472014;-0.5212503;0.2193965;0.0;0.5652223;0.77272576;-0.28882283;0.0;-0.018984355 +12358;0;-0.16233826;3.6677704;9.375534 +12358;3;-0.2091217;-0.15664673;0.3250122 +12358;12;0.21694057;0.07883893;0.26897;0.93508095 +12359;1;-0.2697759;4.4064813;8.760494 +12359;2;-0.0034624934;0.75845003;-0.62577343; +12359;0;-0.13366699;3.7200317;9.356461 +12359;3;-0.17980957;-0.16030884;0.31889343 +12360;0;-0.08590698;3.7010345;9.313538 +12360;3;-0.14926147;-0.16152954;0.3115692 +12360;12;0.21655884;0.078146376;0.2696748;0.93502456 +12362;1;-0.25604463;4.3988876;8.764721 +12363;0;-0.08111572;3.7105408;9.304001 +12363;3;-0.11932373;-0.16152954;0.3018036 +12365;4;15.492249;-3.1402588;-65.69672 +12365;6;-0.6073191;-0.37946814;0.008718149 +12365;7;0.81930673;-0.5300717;0.2185416;0.0;0.5732982;0.7627635;-0.2992005;0.0;-0.008097853 +12365;0;-0.047683716;3.7485352;9.265839 +12365;3;-0.09062195;-0.16215515;0.29263306 +12367;12;0.2163098;0.07747982;0.27033618;0.9349467 +12367;1;-0.24271895;4.3938937;8.767605 +12368;0;-0.052444458;3.772293;9.199066 +12369;3;-0.061294556;-0.16093445;0.28529358 +12369;0;0.009643555;3.7913055;9.179993 +12370;12;0.21619757;0.07686399;0.27094427;0.9348475 +12371;3;-0.031967163;-0.15542603;0.277359 +12371;1;-0.22981186;4.3914204;8.769192 +12372;0;0.023986816;3.843567;9.117996 +12372;3;-0.008773804;-0.14871216;0.26818848 +12374;4;14.442444;-3.2913208;-65.84625 +12374;6;-0.575489;-0.39893204;-0.0026307052 +12374;7;0.83947957;-0.501509;0.20919587;0.0;0.543386;0.7730508;-0.32729852;0.0;0.00242413 +12374;0;0.03831482;3.872055;9.070297 +12374;3;0.017501831;-0.14198303;0.25964355 +12375;12;0.21621715;0.076302506;0.27150783;0.93472546 +12376;1;-0.21778478;4.391198;8.76961 +12376;0;0.057418823;3.9195862;8.998749 +12376;2;-0.21660776;0.6102872;-0.41898632; +12377;3;0.042541504;-0.13710022;0.24986267 +12380;0;0.10517883;3.9670868;8.965378 +12380;12;0.21634664;0.07581237;0.27202958;0.93458366 +12380;3;0.06637573;-0.12672424;0.2419281 +12381;1;-0.2066361;4.3932133;8.76887 +12381;0;0.10517883;4.024109;8.884293 +12381;3;0.08409119;-0.11633301;0.23275757 +12385;4;14.442444;-3.2913208;-65.84625 +12385;6;-0.56339276;-0.42527518;-0.011838187 +12385;7;0.8479971;-0.48648658;0.21031316;0.0;0.5298911;0.77013993;-0.35510543;0.0;0.010783452 +12385;0;0.119506836;4.109619;8.831833 +12385;3;0.10179138;-0.10411072;0.22665405 +12385;12;0.21658625;0.0753947;0.27249944;0.93442506 +12386;5;999.5841 +12387;1;-0.19674563;4.397048;8.767176 +12387;0;0.09562683;4.166626;8.722153 +12387;3;0.11645508;-0.09617615;0.21810913 +12389;12;0.21690324;0.075067416;0.2729447;0.93424785 +12389;0;0.071746826;4.190384;8.660141 +12389;3;0.13050842;-0.08578491;0.21261597 +12392;0;0.09085083;4.2711487;8.598129 +12392;3;0.14151001;-0.07357788;0.20466614 +12392;1;-0.18800946;4.40232;8.764721 +12395;4;14.143372;-2.6901245;-64.64691 +12395;6;-0.5136049;-0.4610246;-0.010565955 +12395;7;0.8732398;-0.44002497;0.20935689;0.0;0.4871989;0.78004634;-0.39263847;0.0;0.009462663 +12397;0;0.07652283;4.3329163;8.540909 +12397;3;0.14883423;-0.0650177;0.19795227 +12397;12;0.21728243;0.07481489;0.27336133;0.9340582 +12397;1;-0.18049876;4.4086766;8.761684 +12397;0;0.066970825;4.356659;8.450302 +12397;3;0.1525116;-0.055252075;0.18878174 +12397;2;-0.28876925;0.24574327;0.047430992; +12398;0;0.062194824;4.389923;8.350128 +12398;12;0.21770081;0.07463722;0.27375278;0.93386036 +12398;3;0.1561737;-0.046691895;0.18206787 +12400;0;0.071746826;4.494446;8.302444 +12401;1;-0.17410226;4.415594;8.758329 +12401;3;0.1561737;-0.04058838;0.17350769 +12402;4;14.143372;-2.6901245;-64.64691 +12402;6;-0.4783949;-0.49615455;-0.008641436 +12402;7;0.88959557;-0.4048451;0.21147127;0.0;0.45668578;0.78069156;-0.42656612;0.0;0.007599354 +12403;0;0.071746826;4.4991913;8.2118225 +12403;3;0.1543274;-0.035079956;0.16496277 +12404;12;0.21813574;0.07451583;0.27410296;0.9336658 +12405;1;-0.16858414;4.4227066;8.754848 +12405;0;0.08607483;4.5657043;8.1689 +12406;3;0.14944458;-0.030807495;0.1570282 +12408;12;0.21856694;0.074437946;0.27443576;0.9334734 +12408;0;0.08607483;4.57045;8.106903 +12409;3;0.14639282;-0.031417847;0.14968872 +12410;0;0.071746826;4.6654816;8.040131 +12410;1;-0.16368584;4.429652;8.751429 +12411;3;0.14273071;-0.030197144;0.14173889 +12412;4;13.693237;-1.940918;-63.89618 +12412;6;-0.43960977;-0.52577174;-0.008923353 +12412;7;0.90678775;-0.36810532;0.20551029;0.0;0.4215168;0.7826967;-0.45794028;0.0;0.0077180336 +12412;0;0.052627563;4.684494;8.06398 +12417;3;0.13478088;-0.028366089;0.13380432 +12418;12;0.2189817;0.07438357;0.2747367;0.93329203 +12418;0;0.028747559;4.693985;8.001968 +12418;1;-0.15925306;4.4362936;8.748145 +12418;2;-0.24307679;-0.120895386;0.5852804; +12418;3;0.12867737;-0.02897644;0.12585449 +12418;0;0.028747559;4.6797333;7.9495087 +12418;12;0.21937393;0.0743389;0.27500448;0.9331245 +12418;3;0.12011719;-0.028366089;0.11791992 +12420;1;-0.15521657;4.4423847;8.745126 +12420;0;0.009643555;4.712982;7.901825 +12420;3;0.110961914;-0.027755737;0.1081543 +12421;4;12.942505;-3.1402588;-64.94751 +12421;6;-0.40275782;-0.5377991;-0.0012204206 +12422;7;0.92022794;-0.33662766;0.19965589;0.0;0.39138162;0.7901171;-0.47173685;0.0;0.0010481436 +12422;0;0.014419556;4.727234;7.882736 +12422;3;0.10057068;-0.027755737;0.10205078 +12422;12;0.21974154;0.07427667;0.27515137;0.9329997 +12424;1;-0.1516027;4.4477625;8.7424555 +12425;0;-0.009475708;4.750992;7.844589 +12425;3;0.08836365;-0.027755737;0.0947113 +12425;5;999.57983 +12426;0;-0.01423645;4.7557526;7.854141 +12427;12;0.22005917;0.07423666;0.27535135;0.93286896 +12429;1;-0.1482694;4.45226;8.740224 +12430;3;0.079193115;-0.028366089;0.08798218 +12430;0;-0.0046844482;4.760498;7.8255157 +12430;3;0.06881714;-0.026535034;0.08004761 +12431;4;12.942505;-3.440857;-66.44745 +12431;6;-0.38767108;-0.5465221;5.9861195E-4 +12431;7;0.92567426;-0.322968;0.19702534;0.0;0.37832138;0.7909387;-0.48092538;0.0;-5.1141647E-4 +12432;0;0.023986816;4.7319946;7.8016815 +12433;3;0.055984497;-0.024093628;0.07577515 +12433;12;0.22032756;0.07418731;0.2755257;0.93275815 +12435;2;-0.17281187;-0.2665205;0.87580204; +12435;1;-0.14530727;4.4558344;8.738451 +12435;0;0.028747559;4.750992;7.7921295 +12435;3;0.04559326;-0.022872925;0.070877075 +12436;12;0.22054325;0.07413774;0.275674;0.93266726 +12436;0;-0.0046844482;4.760498;7.806427 +12436;3;0.034606934;-0.018600464;0.06843567 +12438;0;0.028747559;4.760498;7.782593 +12438;1;-0.14273696;4.458486;8.737142 +12438;3;0.022994995;-0.014312744;0.06477356 +12440;4;13.842773;-2.5405884;-66.14685 +12440;6;-0.41101667;-0.5489644;-0.0036938111 +12440;7;0.917479;-0.34083503;0.2050948;0.0;0.39777184;0.7820179;-0.47981822;0.0;0.0031510552 +12441;0;0.04786682;4.7794952;7.7969055 +12441;3;0.013839722;-0.009429932;0.0605011 +12442;12;0.22070934;0.07407634;0.27576667;0.93260545 +12443;0;0.009643555;4.7414856;7.787369 +12443;1;-0.14066505;4.460223;8.736288 +12443;3;0.0034484863;-0.004547119;0.055007935 +12445;0;0.03352356;4.750992;7.7921295 +12445;12;0.22081478;0.074035235;0.27589586;0.93254554 +12446;3;-0.0063323975;0.002166748;0.051330566 +12448;0;0.028747559;4.750992;7.76828 +12453;1;-0.13924044;4.461119;8.735853 +12453;3;-0.017929077;0.0052337646;0.046447754 +12453;4;14.593506;-2.090454;-66.44745 +12453;6;-0.42421362;-0.5488939;-0.003700617 +12453;7;0.91215116;-0.3511404;0.21137796;0.0;0.40984172;0.7774854;-0.4770179;0.0;0.0031569968 +12453;0;0.028747559;4.7652435;7.811203 +12453;3;-0.027694702;0.009506226;0.04522705 +12453;12;0.22086777;0.0740097;0.27601308;0.93250024 +12453;0;-0.019012451;4.7462463;7.7969055 +12453;1;-0.13837117;4.461104;8.735875 +12453;2;-0.17584257;-0.28636122;0.9379883; +12453;3;-0.03869629;0.016830444;0.047668457 +12455;0;-0.019012451;4.7224884;7.777817 +12455;12;0.22086431;0.0739958;0.27612162;0.93247014 +12455;3;-0.05029297;0.01927185;0.046447754 +12457;0;0.03352356;4.6749725;7.8016815 +12457;1;-0.13791992;4.460128;8.736381 +12458;3;-0.061904907;0.020492554;0.04034424 +12460;4;13.842773;-2.8411865;-64.19678 +12460;6;-0.43316373;-0.5398463;-0.00429694 +12460;7;0.908561;-0.3600516;0.2118483;0.0;0.4177359;0.7785644;-0.46833125;0.0;0.0036858504 +12460;0;0.03352356;4.660721;7.8350525 +12460;3;-0.072906494;0.01927185;0.034851074 +12461;12;0.22080326;0.073981345;0.2762263;0.93245476 +12462;0;0.03352356;4.6749725;7.882736 +12462;1;-0.13770914;4.458107;8.737415 +12463;3;-0.08572388;0.01927185;0.031784058 +12463;5;999.57983 +12465;0;0.03831482;4.646469;7.9113617 +12465;12;0.22068405;0.07396369;0.2763324;0.93245286 +12465;3;-0.09916687;0.021102905;0.025680542 +12467;0;0.057418823;4.693985;7.9495087 +12467;1;-0.1376802;4.454992;8.739005 +12468;3;-0.11076355;0.023544312;0.02079773 +12469;4;14.593506;-4.1915894;-64.94751 +12469;6;-0.47403234;-0.5333749;-0.007222814 +12470;7;0.89138794;-0.39307117;0.22566019;0.0;0.45319843;0.7661472;-0.4556641;0.0;0.006219483 +12470;0;0.066970825;4.6749725;7.973358 +12470;3;-0.12298584;0.02720642;0.015289307 +12471;12;0.22050701;0.073932864;0.27642375;0.93247014 +12472;0;0.04786682;4.6749725;8.011505 +12472;1;-0.1380829;4.450815;8.741126 +12472;2;-0.1933306;-0.21927881;0.84392357; +12472;3;-0.13520813;0.032714844;0.0128479 +12474;0;0.03352356;4.636963;7.997223 +12474;12;0.22026727;0.07390344;0.2764982;0.93250704 +12475;3;-0.14315796;0.0357666;0.010406494 +12477;0;0.009643555;4.627472;8.021057 +12477;1;-0.13904566;4.4456472;8.743741 +12477;3;-0.15353394;0.03942871;0.0067443848 +12479;4;14.593506;-2.5405884;-64.94751 +12479;6;-0.45163688;-0.52327234;-0.0012022792 +12479;7;0.89999545;-0.37803838;0.21701412;0.0;0.435898;0.77933925;-0.45013696;0.0;0.0010414004 +12479;0;-0.019012451;4.5989685;8.03537 +12480;3;-0.16636658;0.043701172;0.0043029785 +12480;12;0.21996817;0.07388222;0.27655777;0.93256164 +12482;0;-0.047683716;4.5989685;8.073517 +12482;1;-0.14052434;4.4395437;8.746818 +12482;3;-0.17614746;0.047973633;0.0012512207 +12484;0;-0.07156372;4.5752106;8.111679 +12484;12;0.21961243;0.073871195;0.27661932;0.9326281 +12484;3;-0.18408203;0.050430298;3.0517578E-5 +12486;0;-0.08111572;4.5752106;8.149826 +12486;1;-0.14248756;4.4325233;8.750346 +12486;3;-0.1932373;0.049819946;-0.003036499 +12489;4;13.842773;-3.440857;-65.24658 +12489;6;-0.42688686;-0.5115228;0.009952733 +12489;7;0.908197;-0.3610421;0.2117239;0.0;0.41845322;0.7937461;-0.44143426;0.0;-0.008678641 +12490;0;-0.09068298;4.5799713;8.2165985 +12490;3;-0.20423889;0.051651;-0.0036315918 +12491;12;0.2192027;0.0738669;0.27667737;0.9327076 +12492;1;-0.14460267;4.424662;8.754289 +12492;0;-0.07156372;4.5752106;8.2595215 +12492;3;-0.21461487;0.054092407;-0.0036315918 +12492;2;-0.121246636;-0.164639;0.6424608; +12493;0;-0.08590698;4.560959;8.326294 +12494;12;0.21874656;0.07385379;0.276731;0.9327998 +12494;3;-0.221344;0.057144165;-0.004257202 +12496;0;-0.13366699;4.53244;8.373978 +12496;1;-0.14697294;4.4158964;8.758674 +12496;3;-0.22683716;0.061416626;-0.004852295 +12498;4;13.542175;-3.741455;-65.69672 +12498;6;-0.41861755;-0.4960495;0.015960831 +12498;7;0.9104476;-0.3575025;0.20803201;0.0;0.4133864;0.8035291;-0.42831394;0.0;-0.014036471 +12499;0;-0.16233826;4.556198;8.435989 +12499;3;-0.23417664;0.064468384;-0.004852295 +12499;12;0.21824135;0.073836006;0.27676386;0.93290985 +12501;0;-0.19099426;4.537201;8.435989 +12501;1;-0.14977814;4.4065;8.763357 +12501;3;-0.2396698;0.069366455;-0.0054779053 +12501;5;999.57983 +12504;0;-0.20054626;4.53244;8.459839 +12504;12;0.21769586;0.07383489;0.27682513;0.93301916 +12504;3;-0.24333191;0.076690674;-0.0054779053 +12506;0;-0.24832153;4.5086975;8.455063 +12506;1;-0.15306668;4.396669;8.768237 +12507;3;-0.24577332;0.08401489;-0.009140015 +12508;4;15.04364;-2.6901245;-64.34631 +12508;6;-0.43781212;-0.48971668;0.029361125 +12508;7;0.8994367;-0.3741294;0.22592214;0.0;0.43628258;0.79923314;-0.41338098;0.0;-0.025906475 +12510;0;-0.26264954;4.5086975;8.49321 +12510;3;-0.24760437;0.088912964;-0.009750366 +12510;12;0.21712036;0.0738524;0.27689108;0.9331324 +12512;0;-0.29130554;4.4897003;8.507523 +12512;1;-0.15707272;4.3865747;8.77322 +12512;2;0.02115789;-0.13568354;0.33385754; +12512;3;-0.24821472;0.09440613;-0.010971069 +12514;0;-0.3056488;4.52771;8.521835 +12514;12;0.21652256;0.07390077;0.27695537;0.9332483 +12514;3;-0.24577332;0.1023407;-0.010971069 +12517;0;-0.3343048;4.4897003;8.531357 +12517;3;-0.24638367;0.11212158;-0.013412476 +12518;1;-0.16166574;4.376469;8.778183 +12519;4;15.04364;-2.9907227;-64.64691 +12519;6;-0.4240312;-0.48411706;0.03916538 +12519;7;0.9032408;-0.3641581;0.22703522;0.0;0.42773247;0.806701;-0.4077725;0.0;-0.034655876 +12519;0;-0.3343048;4.494446;8.588608 +12520;12;0.21591428;0.07397695;0.27701914;0.93336433 +12520;3;-0.24455261;0.11885071;-0.017074585 +12521;0;-0.35820007;4.522949;8.588608 +12521;3;-0.24394226;0.12678528;-0.019515991 +12521;1;-0.16709705;4.366397;8.783095 +12523;0;-0.34864807;4.5514526;8.569519 +12523;3;-0.24272156;0.13227844;-0.023803711 +12523;12;0.2152992;0.07409708;0.2770844;0.93347746 +12525;1;-0.1732562;4.356455;8.787911 +12525;0;-0.35820007;4.52771;8.593384 +12526;3;-0.2384491;0.13839722;-0.029891968 +12527;4;13.842773;-2.8411865;-65.69672 +12528;6;-0.3732531;-0.48456427;0.04165912 +12528;7;0.92326397;-0.32266763;0.20849282;0.0;0.38239443;0.8239506;-0.4181863;0.0;-0.036852576 +12528;0;-0.39640808;4.465927;8.598129 +12528;12;0.21467628;0.07425366;0.27714202;0.93359137 +12529;3;-0.23783875;0.14083862;-0.034179688 +12530;0;-0.45373535;4.4897003;8.564758 +12530;1;-0.18015085;4.3466597;8.792622 +12530;2;0.16292591;-0.15657282;0.2200098; +12540;12;0.21405941;0.074443206;0.27718025;0.93370664 +12540;1;-0.18719795;4.3371086;8.79719 +12554;3;-0.23600769;0.14328003;-0.03967285 +12554;0;-0.32476807;4.5752106;8.574295 +12554;3;-0.23355103;0.14143372;-0.043945312 +12554;0;-0.30085754;4.5514526;8.564758 +12554;3;-0.23171997;0.13899231;-0.050064087 +12554;1;-0.19444269;4.3277473;8.801642 +12554;1;-0.20186809;4.3185906;8.805971 +12554;4;13.542175;-2.5405884;-64.497375 +12554;6;-0.38003355;-0.48820817;0.035112947 +12554;7;0.9219716;-0.32761508;0.20648648;0.0;0.38601422;0.82016206;-0.42228788;0.0;-0.03100449 +12554;2;0.20584713;-0.24015045;0.19385624; +12554;1;-0.2090535;4.3095593;8.810227 +12555;0;-0.38208008;4.52771;8.569519 +12555;3;-0.22683716;0.1365509;-0.057388306 +12555;0;-0.46328735;4.556198;8.612442 +12555;3;-0.22439575;0.1341095;-0.06654358 +12555;5;999.57983 +12555;0;-0.48239136;4.5657043;8.674438 +12555;3;-0.22317505;0.12861633;-0.07571411 +12555;0;-0.5158386;4.5799713;8.674438 +12555;3;-0.22012329;0.120666504;-0.085494995 +12555;4;14.892578;-1.4907837;-66.14685 +12557;6;-0.3509598;-0.4850556;0.059396565 +12557;7;0.9278715;-0.30414167;0.21575944;0.0;0.36918363;0.8307236;-0.41665536;0.0;-0.052514225 +12557;0;-0.5062866;4.57045;8.650604 +12557;3;-0.22073364;0.11212158;-0.09587097 +12557;0;-0.48239136;4.5086975;8.588608 +12557;12;0.21345128;0.07463408;0.27715898;0.9338369 +12557;12;0.2128512;0.074840836;0.27714494;0.9339614 +12557;12;0.21226488;0.07504793;0.27708712;0.9340954 +12557;12;0.21169074;0.07523021;0.27697805;0.9342434 +12557;1;-0.21566594;4.300436;8.814525 +12557;3;-0.22012329;0.101745605;-0.10380554 +12557;0;-0.46328735;4.4754486;8.626755 +12558;3;-0.21583557;0.09013367;-0.11114502 +12558;0;-0.45851135;4.3281555;8.712601 +12558;3;-0.21461487;0.07974243;-0.11785889 +12558;4;14.892578;-2.090454;-64.94751 +12558;6;-0.39742655;-0.46050924;0.05257773 +12558;7;0.91174644;-0.3467267;0.2202251;0.0;0.40804666;0.82600576;-0.3888606;0.0;-0.047078818 +12558;0;-0.49195862;4.0336;8.722153 +12558;3;-0.21217346;0.07241821;-0.117248535 +12558;12;0.21111478;0.07536745;0.27681416;0.9344112 +12559;1;-0.2217538;4.29129;8.8188305 +12559;0;-0.5827179;4.3329163;8.488449 +12559;3;-0.20606995;0.062026978;-0.11602783 +12564;0;-0.57315063;4.65123;8.564758 +12564;12;0.21058017;0.075485185;0.2766214;0.93457943 +12564;3;-0.19813538;0.041870117;-0.11846924 +12569;0;-0.5110626;4.7794952;8.698288 +12569;3;-0.1932373;0.025375366;-0.12886047 +12569;1;-0.22679162;4.283203;8.822633 +12569;12;0.21009485;0.07555155;0.27641624;0.934744 +12569;4;13.542175;-2.8411865;-65.24658 +12569;6;-0.32031158;-0.5017135;0.058686923 +12569;7;0.93862164;-0.2760586;0.20683557;0.0;0.34109354;0.8321655;-0.43721372;0.0;-0.051424805 +12569;0;-0.45851135;4.727234;8.889069 +12569;3;-0.1907959;0.016220093;-0.14108276 +12570;1;-0.23069735;4.275308;8.82636 +12570;0;-0.40119934;4.6179657;8.984451 +12570;2;0.2453625;-0.21382713;0.113101006; +12570;3;-0.19140625;0.013168335;-0.15023804 +12571;17;1;38dead6d7725;1983;2174;-63; +12572;17;1;38dead6d60ff;1581;1415;-53; +12572;17;1;1c1bb5efa29a;6184;4207;-67; +12573;17;1;1c1bb5ecd182;7451;2194;-70; +12573;0;-0.35820007;4.4991913;8.955841 +12573;3;-0.19018555;0.014389038;-0.15574646 +12573;12;0.20963714;0.075551294;0.27615649;0.9349235 +12573;0;-0.36775208;4.413666;8.889069 +12573;1;-0.23460397;4.267173;8.830193 +12574;3;-0.18591309;0.012542725;-0.15818787 +12575;4;15.04364;-1.0406494;-64.34631 +12575;6;-0.41713765;-0.46052513;0.041347694 +12575;7;0.9060283;-0.36293685;0.21769163;0.0;0.42159414;0.81900483;-0.38921642;0.0;-0.037029505 +12575;0;-0.37728882;4.3614197;8.850922 +12575;3;-0.18103027;0.008880615;-0.16122437 +12576;12;0.20917575;0.07554041;0.2758419;0.93512064 +12577;0;-0.40596008;4.389923;8.793686 +12577;1;-0.2385526;4.259311;8.833882 +12578;3;-0.17308044;0.0015716553;-0.16429138 +12578;5;999.57983 +12580;0;-0.43940735;4.404175;8.831833 +12580;12;0.20873265;0.075536884;0.27551752;0.93531543 +12580;3;-0.16329956;-0.0051574707;-0.16612244 +12582;0;-0.45373535;4.437439;8.846146 +12582;1;-0.24212275;4.2521844;8.837217 +12582;3;-0.15048218;-0.013702393;-0.16856384 +12584;4;14.143372;-3.2913208;-63.89618 +12584;6;-0.3958932;-0.46441963;0.05124696 +12585;7;0.91259336;-0.34478688;0.219762;0.0;0.40629518;0.8249266;-0.39296335;0.0;-0.045798913 +12585;0;-0.46328735;4.4849396;8.836609 +12585;3;-0.13887024;-0.021652222;-0.17041016 +12585;12;0.20833647;0.07552131;0.27517316;0.93550646 +12592;1;-0.24512073;4.246096;8.840062 +12592;2;0.15564722;-0.18286371;-0.026210785; +12592;12;0.20800132;0.07548666;0.27480713;0.9356913 +12592;0;-0.46806335;4.470688;8.908142 +12592;3;-0.12849426;-0.027755737;-0.17285156 +12592;0;-0.44418335;4.4611816;8.931976 +12592;3;-0.11383057;-0.0320282;-0.17100525 +12592;0;-0.43940735;4.4184265;8.931976 +12592;3;-0.10282898;-0.035705566;-0.16856384 +12592;1;-0.2476083;4.24093;8.842472 +12594;4;13.842773;-2.5405884;-64.19678 +12594;6;-0.38380903;-0.45889845;0.04915523 +12594;7;0.91797507;-0.33571434;0.21122919;0.0;0.39418435;0.8313132;-0.3918381;0.0;-0.044051934 +12594;0;-0.41552734;4.413666;8.936752 +12594;3;-0.09121704;-0.039367676;-0.16429138 +12595;12;0.2077257;0.07543449;0.27440834;0.93587375 +12596;0;-0.4202881;4.4279175;8.955841 +12597;1;-0.24962053;4.2367682;8.844411 +12597;3;-0.080841064;-0.04058838;-0.16122437 +12599;0;-0.41552734;4.4849396;8.931976 +12599;12;0.20751098;0.07538226;0.27403122;0.9360361 +12599;3;-0.069229126;-0.04547119;-0.15574646 +12601;0;-0.4298401;4.4897003;8.946289 +12601;1;-0.25123855;4.2336254;8.845869 +12601;3;-0.0594635;-0.050354004;-0.14962769 +12603;4;14.743042;-1.940918;-65.84625 +12603;6;-0.39102966;-0.46466497;0.048009828 +12603;7;0.915255;-0.34072888;0.21497002;0.0;0.4005841;0.8264922;-0.39552882;0.0;-0.042902943 +12604;0;-0.40119934;4.494446;8.998749 +12604;3;-0.049682617;-0.05708313;-0.14535522 +12604;12;0.2073519;0.07532835;0.27366513;0.9361828 +12606;0;-0.39640808;4.513443;8.974915 +12606;1;-0.25214154;4.231358;8.846929 +12606;2;0.15270168;-0.22833633;-0.106155396; +12606;3;-0.039916992;-0.06074524;-0.14108276 +12608;0;-0.39163208;4.513443;8.960602 +12609;12;0.2072493;0.07525754;0.2733149;0.93631357 +12609;3;-0.028915405;-0.0662384;-0.13313293 +12611;0;-0.37728882;4.537201;8.903381 +12611;1;-0.2524011;4.230013;8.847565 +12611;3;-0.019744873;-0.071121216;-0.12519836 +12613;4;14.743042;-2.6901245;-63.89618 +12613;6;-0.4210438;-0.47093865;0.042350564 +12613;7;0.9039932;-0.3642219;0.22391656;0.0;0.42587876;0.8133128;-0.3964207;0.0;-0.037729118 +12613;0;-0.3438568;4.522949;8.951065 +12613;3;-0.008773804;-0.07662964;-0.11846924 +12614;12;0.20720276;0.075170934;0.27297652;0.93642956 +12615;0;-0.3295288;4.5799713;8.979691 +12616;1;-0.25184417;4.2295513;8.8478 +12616;3;0.0016174316;-0.0821228;-0.11236572 +12616;5;999.58875 +12618;0;-0.3104248;4.6179657;9.003525 +12618;12;0.20721309;0.07506542;0.27266723;0.9365258 +12618;3;0.011993408;-0.083343506;-0.105041504 +12620;0;-0.28652954;4.6322327;9.041687 +12620;1;-0.25059268;4.2300477;8.847599 +12621;3;0.020553589;-0.08517456;-0.10014343 +12623;4;13.542175;-0.14038086;-65.69672 +12623;6;-0.36474565;-0.4732509;0.03167923 +12623;7;0.92859614;-0.31750593;0.19209154;0.0;0.37001935;0.8315361;-0.41428635;0.0;-0.02819269 +12623;0;-0.2817688;4.693985;9.056 +12623;3;0.030334473;-0.08517456;-0.09587097 +12623;12;0.20728098;0.07494572;0.27237955;0.9366041 +12625;0;-0.23399353;4.712982;9.079834 +12625;3;0.038879395;-0.08395386;-0.093429565 +12625;1;-0.24896689;4.2314053;8.846995 +12626;2;0.055169493;-0.3673849;-0.15164185; +12627;0;-0.24354553;4.7557526;9.08461 +12628;12;0.20739733;0.07482567;0.27211174;0.9366658 +12628;3;0.048049927;-0.082733154;-0.093429565 +12632;0;-0.22921753;4.760498;9.094147 +12632;3;0.055374146;-0.08151245;-0.093429565 +12632;1;-0.24729957;4.2335773;8.846004 +12635;4;13.243103;-1.4907837;-64.497375 +12635;6;-0.38416857;-0.4821151;0.025199616 +12635;7;0.9224374;-0.33206862;0.19707741;0.0;0.38550055;0.8214348;-0.4202786;0.0;-0.022324907 +12635;0;-0.18621826;4.7319946;9.117996 +12635;3;0.06513977;-0.0809021;-0.09220886 +12635;0;-0.21966553;4.7747498;9.11322 +12635;12;0.20756097;0.07469783;0.2717646;0.9367405 +12635;1;-0.24566942;4.236438;8.84468 +12636;3;0.0718689;-0.0809021;-0.09403992 +12637;0;-0.22921753;4.7747498;9.094147 +12638;12;0.20775497;0.07460647;0.2715042;0.9367803 +12638;3;0.07858276;-0.0796814;-0.09526062 +12639;0;-0.21966553;4.803253;9.14183 +12640;1;-0.24413778;4.2399817;8.843023 +12640;3;0.08409119;-0.08151245;-0.09587097 +12642;4;15.04364;-1.6403198;-65.54718 +12642;6;-0.43222556;-0.4836533;0.024023993 +12642;7;0.9030945;-0.37084654;0.21654838;0.0;0.42891502;0.8038858;-0.4120673;0.0;-0.021266442 +12642;0;-0.20054626;4.8079987;9.151382 +12642;3;0.0901947;-0.0821228;-0.09770203 +12643;12;0.20798329;0.07452651;0.27123588;0.9368137 +12644;0;-0.23876953;4.8127594;9.156143 +12644;1;-0.24259143;4.2440047;8.841136 +12645;2;-0.037052274;-0.532145;-0.2792406; +12645;3;0.095077515;-0.082733154;-0.09953308 +12647;0;-0.22442627;4.8365173;9.170456 +12647;12;0.20823759;0.074453905;0.27096123;0.9368425 +12647;3;0.099349976;-0.08151245;-0.101989746 +12649;0;-0.20054626;4.793747;9.160919 +12650;1;-0.24110822;4.2484426;8.839045 +12650;3;0.103012085;-0.083343506;-0.10321045 +12652;4;14.593506;-1.4907837;-64.19678 +12652;6;-0.4322593;-0.4820011;0.021888003 +12652;7;0.90355396;-0.37119508;0.21401995;0.0;0.42803535;0.80456996;-0.41164687;0.0;-0.019392734 +12652;0;-0.22442627;4.7985077;9.184769 +12652;3;0.1048584;-0.08395386;-0.10321045 +12652;12;0.20851281;0.07438569;0.2706687;0.9368712 +12654;0;-0.22921753;4.784256;9.175232 +12654;1;-0.23963387;4.2531214;8.836835 +12654;3;0.107910156;-0.08578491;-0.10380554 +12655;5;999.58875 +12656;0;-0.23399353;4.793747;9.175232 +12657;12;0.20880216;0.07432221;0.27037576;0.9368964 +12657;3;0.11218262;-0.08639526;-0.101989746 +12661;0;-0.24832153;4.841263;9.179993 +12661;3;0.11340332;-0.08517456;-0.100753784 +12661;1;-0.23807392;4.2580814;8.834488 +12664;4;14.292908;-2.090454;-65.69672 +12664;6;-0.407836;-0.48515308;0.027043702 +12664;7;0.91264415;-0.3508548;0.20971799;0.0;0.40805462;0.81204957;-0.41721347;0.0;-0.02392004 +12664;0;-0.26742554;4.803253;9.256302 +12664;3;0.11708069;-0.082733154;-0.09953308 +12664;12;0.20910671;0.07425869;0.2700808;0.9369186 +12664;0;-0.2722168;4.7985077;9.246765 +12664;1;-0.23658903;4.2631993;8.832059 +12664;2;-0.014336497;-0.54233646;-0.36240196; +12664;3;0.119522095;-0.07662964;-0.09770203 +12666;0;-0.25787354;4.7985077;9.203827 +12667;12;0.20942025;0.07420181;0.26979214;0.93693626 +12667;3;0.123184204;-0.06745911;-0.09526062 +12669;0;-0.2960968;4.8222656;9.242004 +12669;3;0.12562561;-0.058914185;-0.09220886 +12669;1;-0.23554787;4.2685957;8.82948 +12671;4;13.392639;-1.0406494;-65.097046 +12671;6;-0.36742297;-0.48070675;0.032027204 +12671;7;0.9274587;-0.31850156;0.19590084;0.0;0.37284616;0.8274887;-0.41981933;0.0;-0.028392654 +12672;0;-0.28652954;4.7794952;9.208603 +12672;3;0.12928772;-0.0491333;-0.089157104 +12672;12;0.20974715;0.07415465;0.26942435;0.93697274 +12673;1;-0.2352023;4.2742186;8.826769 +12673;0;-0.3390808;4.7652435;9.199066 +12674;3;0.13233948;-0.039367676;-0.08610535 +12677;12;0.21006772;0.07417221;0.26916867;0.9369729 +12677;0;-0.34864807;4.7700043;9.203827 +12677;3;0.138443;-0.029586792;-0.08242798 +12679;1;-0.23560447;4.280172;8.823873 +12679;0;-0.3534088;4.7747498;9.208603 +12679;3;0.14273071;-0.01675415;-0.07876587 +12682;4;15.04364;-1.6403198;-65.097046 +12682;6;-0.4113814;-0.47804478;0.038359288 +12682;7;0.90884024;-0.35504818;0.21897548;0.0;0.41575235;0.8138183;-0.4060169;0.0;-0.03405071 +12682;0;-0.38208008;4.7794952;9.251541 +12682;3;0.14456177;-0.0039367676;-0.07510376 +12682;12;0.21039376;0.07423662;0.26893556;0.9369617 +12684;0;-0.45373535;4.8317566;9.222916 +12684;1;-0.23696263;4.286487;8.820769 +12684;3;0.14395142;0.009506226;-0.07022095 +12684;2;0.087690055;-0.50379086;-0.3971491; +12685;0;-0.45373535;4.827011;9.189545 +12686;12;0.21072568;0.07436287;0.2687281;0.9369365 +12686;3;0.14822388;0.022323608;-0.065322876 +12688;1;-0.2393333;4.2929525;8.817561 +12688;0;-0.5206146;4.8317566;9.199066 +12688;3;0.15007019;0.0345459;-0.061050415 +12690;4;14.442444;-1.6403198;-65.097046 +12690;6;-0.35348153;-0.48298055;0.05653398 +12690;7;0.92759037;-0.30656984;0.21352036;0.0;0.37023228;0.83085996;-0.41545135;0.0;-0.05004066 +12691;0;-0.5540619;4.8317566;9.208603 +12692;3;0.15007019;0.044921875;-0.056777954 +12692;12;0.21104747;0.07454718;0.2685417;0.9369029 +12693;1;-0.2426496;4.2995872;8.814237 +12693;0;-0.6113739;4.8317566;9.170456 +12693;3;0.15007019;0.05531311;-0.05065918 +12693;5;999.58875 +12695;12;0.21136388;0.074790955;0.26839647;0.93685377 +12697;0;-0.63049316;4.8555145;9.14183 +12697;3;0.15188599;0.06263733;-0.04762268 +12698;0;-0.70692444;4.874527;9.151382 +12698;1;-0.2466865;4.306316;8.81084 +12698;3;0.14944458;0.0663147;-0.04333496 +12700;4;13.842773;-2.090454;-64.19678 +12700;6;-0.29959178;-0.4881955;0.077094726 +12700;7;0.94195765;-0.26065326;0.21160239;0.0;0.3287686;0.84384114;-0.42407927;0.0;-0.06802114 +12700;0;-0.72125244;4.9030304;9.11322 +12700;3;0.14822388;0.06814575;-0.0390625 +12701;12;0.21167295;0.07507973;0.2682813;0.93679386 +12703;0;-0.7929077;4.9315186;9.117996 +12703;1;-0.25101772;4.3130198;8.807438 +12703;2;0.35891548;-0.54881096;-0.35400867; +12703;3;0.14822388;0.06692505;-0.036010742 +12705;0;-0.7929077;4.9267883;9.13707 +12705;12;0.211974;0.07538657;0.2681873;0.93672806 +12705;3;0.14273071;0.065078735;-0.032333374 +12707;0;-0.87890625;4.9647827;9.13707 +12707;1;-0.25524577;4.319593;8.804094 +12707;3;0.1390686;0.06324768;-0.028671265 +12710;4;13.093567;-1.0406494;-65.84625 +12710;6;-0.21465874;-0.49580702;0.095896214 +12711;7;0.9628569;-0.18736394;0.1944258;0.0;0.2565418;0.8593978;-0.4422914;0.0;-0.08421966 +12711;0;-0.90756226;4.9933014;9.103683 +12711;3;0.13356018;0.05958557;-0.027450562 +12712;12;0.21229707;0.07561702;0.2677805;0.93675274 +12712;0;-0.9219055;5.0550537;9.094147 +12717;1;-0.25924966;4.325876;8.800892 +12717;3;0.12806702;0.05531311;-0.025619507 +12717;0;-0.93621826;5.059799;9.103683 +12717;12;0.21258065;0.07590566;0.26771307;0.93668437 +12717;3;0.123794556;0.04737854;-0.025024414 +12717;0;-0.9696655;5.1120605;9.08461 +12717;1;-0.26283053;4.331814;8.797864 +12718;3;0.12133789;0.03881836;-0.024398804 +12719;4;14.292908;-1.4907837;-66.14685 +12719;6;-0.22407235;-0.5101367;0.106334575 +12719;7;0.957978;-0.19391075;0.21136864;0.0;0.2714764;0.85086143;-0.44981715;0.0;-0.09262104 +12719;0;-0.97442627;5.131073;9.079834 +12719;3;0.115859985;0.02720642;-0.025619507 +12720;12;0.21285203;0.07616835;0.2676474;0.9366202 +12722;1;-0.26563606;4.337481;8.794988 +12722;0;-0.9696655;5.1690826;9.041687 +12722;2;0.6410926;-0.71626234;-0.3019991; +12722;3;0.11279297;0.0113220215;-0.025619507 +12724;0;-0.9457855;5.2450867;9.056 +12724;12;0.21312197;0.07638443;0.26757458;0.93656194 +12724;3;0.10913086;-0.0014953613;-0.027450562 +12726;0;-0.89323425;5.311615;9.051224 +12726;1;-0.26721314;4.3429484;8.792242 +12726;3;0.1060791;-0.01675415;-0.029296875 +12728;4;14.143372;-1.3412476;-65.097046 +12728;6;-0.23410419;-0.5285736;0.09836806 +12728;7;0.9565312;-0.2003139;0.21194887;0.0;0.27902657;0.83997244;-0.46539274;0.0;-0.084806584 +12729;0;-0.859787;5.4066315;9.065521 +12729;3;0.107299805;-0.033859253;-0.030517578 +12729;12;0.21340285;0.07652273;0.2674517;0.9365219 +12731;0;-0.802475;5.5206604;9.108459 +12731;1;-0.267462;4.348388;8.789545 +12731;3;0.10545349;-0.049743652;-0.032958984 +12732;5;999.58875 +12733;0;-0.74513245;5.634674;9.051224 +12733;3;0.10668945;-0.06562805;-0.03540039 +12734;12;0.21370046;0.07659701;0.2673418;0.9364793 +12736;0;-0.6687012;5.724945;9.094147 +12736;1;-0.2662734;4.354009;8.786798 +12736;3;0.10913086;-0.07785034;-0.03540039 +12739;12;0.21402659;0.076595075;0.26720718;0.9364434 +12741;2;0.47939336;-1.2228374;-0.3089056; +12742;1;-0.26378545;4.359959;8.783921 +12742;4;13.693237;-1.0406494;-66.29639 +12742;6;-0.24747792;-0.56062806;0.07339884 +12742;7;0.9573713;-0.20746143;0.20099746;0.0;0.28210443;0.8211185;-0.49616688;0.0;-0.062107246 +12742;0;-0.59706116;5.8627167;9.146606 +12743;3;0.11218262;-0.090667725;-0.034179688 +12743;0;-0.5206146;5.919739;9.184769 +12743;12;0.21438523;0.076529205;0.26705852;0.9364091 +12744;3;0.115859985;-0.10044861;-0.033554077 +12745;0;-0.44418335;6.0099945;9.313538 +12745;3;0.11767578;-0.10473633;-0.032333374 +12745;0;-0.37728882;6.0337524;9.375534 +12745;1;-0.2602998;4.3661747;8.780938 +12746;3;0.119522095;-0.10533142;-0.028076172 +12747;4;14.292908;-2.8411865;-63.746643 +12747;6;-0.34731317;-0.57146907;0.04022015 +12748;7;0.93212783;-0.2862899;0.22175631;0.0;0.3605467;0.7908853;-0.49447596;0.0;-0.03382034 +12748;0;-0.36775208;6.0575104;9.466141 +12748;3;0.122558594;-0.10166931;-0.023803711 +12749;12;0.21476983;0.07641675;0.2668987;0.93637574 +12750;0;-0.3343048;6.114517;9.523392 +12750;1;-0.25655845;4.3725424;8.777879 +12750;3;0.12745667;-0.094955444;-0.01524353 +12752;0;-0.30085754;6.1952972;9.609222 +12753;12;0.21516621;0.076299846;0.26676026;0.9363337 +12758;3;0.13296509;-0.082733154;-0.009140015 +12758;0;-0.25787354;6.261795;9.723679 +12758;1;-0.25305936;4.3793297;8.774596 +12758;3;0.13600159;-0.0662384;0.0012512207 +12758;4;14.143372;-1.3412476;-64.64691 +12758;6;-0.34982777;-0.57196724;0.026513947 +12758;7;0.9341833;-0.28818536;0.21035855;0.0;0.35609636;0.78990966;-0.49923745;0.0;-0.022291316 +12758;0;-0.18621826;6.318817;9.847702 +12758;3;0.1366272;-0.042419434;0.010406494 +12758;12;0.21557675;0.07620905;0.26665974;0.9362753 +12760;17;1;38dead6d7725;1407;1106;-57; +12761;17;1;38dead6d60ff;1650;732;-55; +12762;17;1;1c1bb5efa29a;8970;1206;-67; +12762;17;1;1c1bb5ecd182;9806;552;-71; +12762;0;-0.18144226;6.295059;9.986008 +12762;3;0.13233948;-0.015533447;0.017745972 +12762;1;-0.25052053;4.386314;8.77118 +12762;2;0.044872403;-1.7818108;-0.831151; +12763;0;-0.171875;6.318817;10.110016 +12763;12;0.21597618;0.07618526;0.2666174;0.9361973 +12763;3;0.12440491;0.015609741;0.024459839 +12764;0;-0.19099426;6.3235626;10.200623 +12764;1;-0.24993958;4.3928537;8.767923 +12765;3;0.11463928;0.04737854;0.029342651 +12767;4;13.392639;-1.3412476;-65.84625 +12767;6;-0.34646225;-0.55485886;0.018721595 +12767;7;0.9370661;-0.28862795;0.19647145;0.0;0.34878922;0.7994691;-0.48907566;0.0;-0.015911954 +12767;0;-0.25787354;6.2570496;10.262619 +12767;3;0.10057068;0.077301025;0.029953003 +12768;12;0.21633376;0.076230414;0.26646495;0.9361545 +12770;0;-0.29130554;6.21904;10.253082 +12770;1;-0.2518971;4.398394;8.765089 +12770;3;0.08287048;0.101745605;0.027511597 +12771;5;999.58704 +12771;0;-0.30085754;6.1572723;10.234009 +12772;12;0.21658686;0.07643951;0.26654097;0.93605727 +12772;3;0.062088013;0.117004395;0.026290894 +12774;0;-0.29130554;6.062256;10.358002 +12774;1;-0.25590527;4.402319;8.763002 +12774;3;0.040100098;0.12373352;0.019577026 +12776;4;13.392639;-1.940918;-64.34631 +12776;6;-0.35750508;-0.5293479;0.02811631 +12776;7;0.93143475;-0.3020444;0.20297377;0.0;0.3630983;0.8085628;-0.46301806;0.0;-0.024265017 +12777;0;-0.26264954;5.990982;10.467697 +12777;3;0.011993408;0.12800598;0.011627197 +12777;12;0.21672001;0.076727495;0.26664278;0.93597376 +12778;0;-0.22921753;5.9007263;10.596466 +12779;1;-0.26077607;4.4040165;8.762006 +12779;2;-0.022226334;-1.7588153;-1.5440693; +12779;3;-0.021591187;0.12800598;0.0043029785 +12781;0;-0.22921753;5.781952;10.744324 +12782;12;0.21672347;0.077020496;0.26673818;0.93592185 +12782;3;-0.057632446;0.12495422;-0.0036315918 +12783;0;-0.25787354;5.648926;10.80632 +12784;1;-0.26601574;4.4026127;8.762554 +12784;3;-0.09794617;0.11456299;-0.013412476 +12786;4;14.743042;-2.6901245;-65.54718 +12786;6;-0.4380351;-0.48155898;0.023858685 +12786;7;0.9006424;-0.3759227;0.2180031;0.0;0.4340463;0.80259794;-0.40919456;0.0;-0.021143325 +12786;0;-0.2960968;5.4636383;10.877853 +12786;3;-0.13948059;0.09989929;-0.0231781 +12787;12;0.21656023;0.07727658;0.26680416;0.9359196 +12788;0;-0.3152008;5.278351;10.877853 +12789;1;-0.27087143;4.3975277;8.764958 +12789;3;-0.17858887;0.080963135;-0.03479004 +12791;0;-0.2960968;5.140564;10.906479 +12792;12;0.21621333;0.07744437;0.2668421;0.93597525 +12792;3;-0.21400452;0.054092407;-0.045776367 +12793;0;-0.3056488;4.9220276;10.873093 +12793;1;-0.27451682;4.3888497;8.769193 +12793;3;-0.24577332;0.02293396;-0.0549469 +12795;4;12.942505;-1.1901855;-64.19678 +12795;6;-0.41136226;-0.42493173;0.028103165 +12795;7;0.911583;-0.3642977;0.19053526;0.0;0.41031832;0.835063;-0.36648175;0.0;-0.025600495 +12796;0;-0.27697754;4.827011;10.901703 +12796;3;-0.27326965;-0.013092041;-0.065322876 +12796;12;0.21570005;0.07747882;0.26682565;0.9360954 +12798;0;-0.21487427;4.693985;10.958939 +12798;1;-0.27588496;4.377234;8.774955 +12798;2;-0.012963235;-0.8509798;-2.0894127; +12798;3;-0.29403687;-0.05279541;-0.07571411 +12800;0;-0.157547;4.52771;11.049545 +12801;12;0.21506941;0.07733216;0.26674625;0.9362753 +12801;3;-0.30563354;-0.09188843;-0.085494995 +12803;0;-0.047683716;4.413666;11.073395 +12803;1;-0.27426898;4.363585;8.781799 +12803;3;-0.31236267;-0.12794495;-0.097091675 +12805;4;13.542175;-2.5405884;-65.24658 +12805;6;-0.5461173;-0.37928098;0.0043061245 +12805;7;0.85371155;-0.48246196;0.1959773;0.0;0.520731;0.79381585;-0.31415907;0.0;-0.004000081 +12805;0;0.057418823;4.256897;11.106796 +12806;3;-0.31419373;-0.16030884;-0.10748291 +12808;12;0.21438725;0.076970324;0.26653963;0.9365203 +12809;0;0.1577301;4.190384;11.097244 +12809;1;-0.26984298;4.3491044;8.789118 +12809;3;-0.30807495;-0.18841553;-0.11909485 +12809;5;999.58704 +12811;0;0.20072937;4.000351;11.187851 +12811;12;0.2137035;0.07644902;0.26630464;0.9367861 +12811;3;-0.29403687;-0.21774292;-0.13191223 +12813;1;-0.26328474;4.3348064;8.796377 +12813;0;0.24372864;3.8910675;11.302338 +12813;3;-0.27449036;-0.23973083;-0.14167786 +12817;12;0.21306764;0.075805694;0.2659869;0.9370735 +12817;4;14.143372;-0.29144287;-63.597107 +12818;6;-0.6520305;-0.33149043;-0.021561103 +12818;7;0.7989263;-0.57376635;0.18030272;0.0;0.60108346;0.75158024;-0.27170935;0.0;0.020385701 +12818;0;0.2962799;3.7675476;11.302338 +12818;3;-0.25309753;-0.25195312;-0.15267944 +12818;0;0.37271118;3.6772919;11.240326 +12818;2;-0.407807;0.22533464;-2.3644505; +12818;3;-0.2225647;-0.2611084;-0.16368103 +12819;1;-0.25524098;4.3218417;8.802991 +12820;0;0.45869446;3.6107635;11.164017 +12820;3;-0.18469238;-0.26783752;-0.17222595 +12821;12;0.21253401;0.0750915;0.26559374;0.9373637 +12822;0;0.48257446;3.525238;11.140167 +12822;1;-0.24667494;4.311291;8.808406 +12822;3;-0.14559937;-0.27149963;-0.17895508 +12825;12;0.21213959;0.07437804;0.26513478;0.9376398 +12827;0;0.53034973;3.4824982;11.1258545 +12827;3;-0.10343933;-0.2672119;-0.18444824 +12827;4;14.442444;-1.6403198;-63.146973 +12828;6;-0.796454;-0.30302563;-0.04763217 +12828;7;0.70861036;-0.6823097;0.17979123;0.0;0.7041351;0.66738707;-0.24246337;0.0;0.045444768 +12828;0;0.59721375;3.4064636;11.097244 +12828;1;-0.23807405;4.303968;8.812223 +12828;3;-0.05885315;-0.25805664;-0.19055176 +12831;12;0.21192075;0.07370436;0.26462513;0.9378864 +12831;0;0.582901;3.3922272;11.082947 +12831;3;-0.013046265;-0.24156189;-0.19239807 +12832;0;0.568573;3.3019562;11.006622 +12832;3;0.030334473;-0.21957397;-0.19544983 +12832;1;-0.23048307;4.3003073;8.814213 +12835;4;12.942505;-2.090454;-64.94751 +12835;6;-0.78096974;-0.2910877;-0.051611476 +12835;7;0.7197082;-0.6743542;0.16512616;0.0;0.69251573;0.68035346;-0.23987766;0.0;0.049418353 +12835;0;0.544693;3.3304443;10.911255 +12835;3;0.07675171;-0.19329834;-0.19667053 +12835;12;0.21188414;0.07313785;0.26409158;0.9380894 +12837;0;0.50645447;3.3209534;10.854004 +12837;3;0.1207428;-0.16275024;-0.19421387 +12837;2;-0.7729072;0.8771081;-2.2328596; +12837;1;-0.22487304;4.300454;8.814286 +12841;0;0.50645447;3.2639465;10.792007 +12842;12;0.21202052;0.07273078;0.26355326;0.9382416 +12842;3;0.16532898;-0.12365723;-0.19055176 +12845;1;-0.2219039;4.304371;8.812449 +12845;0;0.46347046;3.2734528;10.667999 +12845;3;0.20809937;-0.08517456;-0.18933105 +12846;4;14.292908;-0.74157715;-62.547302 +12846;6;-0.7729059;-0.29746306;-0.043417625 +12846;7;0.7240925;-0.667555;0.17337967;0.0;0.68845344;0.6844454;-0.2399304;0.0;0.041497823 +12846;0;0.4204712;3.2877045;10.558319 +12846;12;0.21232067;0.07252334;0.26303336;0.93833566 +12847;3;0.24841309;-0.04852295;-0.18873596 +12847;0;0.37271118;3.3399658;10.448624 +12847;3;0.2875061;-0.010040283;-0.1875 +12847;1;-0.22219291;4.3119955;8.808713 +12848;5;999.58704 +12849;0;0.3201599;3.3969727;10.334152 +12849;12;0.21277057;0.072548434;0.26254866;0.9383676 +12849;3;0.32354736;0.025985718;-0.18261719 +12852;0;0.23416138;3.4112244;10.205383 +12852;1;-0.22570175;4.323037;8.803211 +12852;3;0.35653687;0.060806274;-0.17773438 +12854;4;14.292908;-1.1901855;-63.746643 +12854;6;-0.69307166;-0.3225028;-0.022940865 +12854;7;0.77372974;-0.60596454;0.18479495;0.0;0.633142;0.7296266;-0.25841042;0.0;0.021756241 +12854;0;0.1720581;3.449234;10.048004 +12854;3;0.38157654;0.08830261;-0.17344666 +12854;12;0.21335278;0.07279843;0.2620952;0.9383427 +12855;1;-0.23204708;4.3369937;8.796178 +12856;2;-0.56950724;0.979506;-1.5701313; +12857;0;0.08607483;3.449234;9.86676 +12857;3;0.40600586;0.10845947;-0.16795349 +12858;0;0.0048675537;3.4967346;9.742767 +12858;12;0.21404752;0.07324747;0.26168063;0.93826526 +12859;3;0.42555237;0.120666504;-0.16184998 +12860;0;-0.100234985;3.5205078;9.623535 +12861;1;-0.24003915;4.3529615;8.788073 +12862;3;0.44084167;0.12739563;-0.15878296 +12866;4;13.542175;-0.74157715;-64.94751 +12866;6;-0.53590345;-0.35068318;0.010415234 +12866;7;0.857934;-0.4795409;0.18436287;0.0;0.5136667;0.8074782;-0.29004374;0.0;-0.009781167 +12866;0;-0.13366699;3.5680084;9.451843 +12866;3;0.4493866;0.12861633;-0.15634155 +12866;12;0.21482888;0.07380775;0.26125193;0.93816227 +12866;1;-0.24866126;4.370484;8.779132 +12867;0;-0.20533752;3.6440125;9.280151 +12867;3;0.4542694;0.12251282;-0.15452576 +12869;12;0.21567976;0.07443881;0.2608866;0.9380188 +12870;1;-0.2568993;4.388372;8.769965 +12870;0;-0.24832153;3.6487732;9.170456 +12870;3;0.4542694;0.11456299;-0.15330505 +12871;0;-0.30085754;3.6440125;9.103683 +12871;3;0.4530487;0.10418701;-0.15390015 +12872;4;13.842773;0.45928955;-65.24658 +12872;6;-0.43987545;-0.38055852;0.033035867 +12872;7;0.8990868;-0.395362;0.18796799;0.0;0.4366951;0.8400726;-0.3218315;0.0;-0.030666815 +12872;0;-0.3199768;3.70578;8.979691 +12873;3;0.44755554;0.09074402;-0.15634155 +12873;12;0.21655513;0.07505488;0.2605234;0.93786895 +12875;0;-0.3199768;3.7675476;8.850922 +12875;1;-0.26434553;4.406252;8.760775 +12875;2;-0.07698804;0.78544235;-0.51690197; +12875;3;0.44084167;0.07791138;-0.15512085 +12877;0;-0.3534088;3.7675476;8.70784 +12877;12;0.21744375;0.07562697;0.26014578;0.93772227 +12877;3;0.4322815;0.065078735;-0.15634155 +12879;0;-0.3199768;3.7913055;8.6458435 +12879;1;-0.27074835;4.4236736;8.751795 +12880;3;0.42311096;0.051651;-0.15940857 +12882;4;12.342834;-1.6403198;-66.596985 +12882;6;-0.37077433;-0.41300786;0.03699244 +12882;7;0.9260307;-0.3318711;0.17980121;0.0;0.3759248;0.85367835;-0.3604354;0.0;-0.033874303 +12882;0;-0.2722168;3.8197937;8.512299 +12882;3;0.41456604;0.03942871;-0.16184998 +12883;12;0.21840668;0.075894125;0.25873834;0.9378663 +12884;0;-0.26742554;3.8340607;8.421677 +12884;1;-0.27608088;4.440468;8.74312 +12884;3;0.40419006;0.026611328;-0.16612244 +12885;5;999.58704 +12887;0;-0.30085754;3.8340607;8.321533 +12888;3;0.39440918;0.013168335;-0.17285156 +12890;0;-0.29130554;3.862564;8.2595215 +12890;1;-0.28057832;4.456511;8.73481 +12890;3;0.38157654;0.002166748;-0.17895508 +12892;12;0.21926826;0.07633254;0.25832644;0.93774325 +12892;4;13.392639;-2.241516;-62.69684 +12892;6;-0.42487484;-0.43719578;0.035254445 +12892;7;0.9043726;-0.37343565;0.20653349;0.0;0.42554745;0.8253955;-0.37098745;0.0;-0.03193189 +12892;0;-0.2722168;3.8815765;8.183212 +12892;3;0.36935425;-0.0069885254;-0.18383789 +12894;12;0.22010504;0.076707505;0.2578841;0.93763834 +12894;0;-0.3152008;3.8863068;8.135513 +12894;1;-0.28440502;4.471618;8.726961 +12895;2;-7.4234605E-4;0.6414981;0.32569695; +12895;3;0.35531616;-0.01675415;-0.19055176 +12896;0;-0.3343048;3.8768158;8.03537 +12897;12;0.22090228;0.07702803;0.2574064;0.93755585 +12897;3;0.34553528;-0.02470398;-0.19728088 +12898;0;-0.3199768;3.8958282;8.016281 +12899;1;-0.28779936;4.485706;8.719617 +12899;3;0.333313;-0.033859253;-0.2058258 +12901;4;14.292908;-2.090454;-65.24658 +12901;6;-0.4103339;-0.45206365;0.039894685 +12901;7;0.9093081;-0.3588435;0.21068999;0.0;0.41457415;0.82487404;-0.38433206;0.0;-0.03587765 +12901;0;-0.3056488;3.8578186;7.9542847 +12901;3;0.322937;-0.043029785;-0.21194458 +12902;12;0.22165498;0.07729485;0.2568809;0.93750036 +12903;0;-0.3199768;3.9005737;7.8684235 +12903;1;-0.29076922;4.498868;8.712734 +12904;3;0.31254578;-0.050964355;-0.21743774 +12906;0;-0.3390808;3.8673248;7.8684235 +12906;12;0.22236696;0.07752178;0.25633022;0.93746376 +12906;3;0.3033905;-0.058303833;-0.22293091 +12909;0;-0.3104248;3.8863068;7.858902 +12909;1;-0.29333845;4.5111685;8.706286 +12909;3;0.29299927;-0.0650177;-0.22720337 +12911;4;13.243103;-2.8411865;-65.69672 +12911;6;-0.37837252;-0.45893645;0.039479245 +12911;7;0.92208403;-0.33118373;0.20019583;0.0;0.3853686;0.8331104;-0.3967596;0.0;-0.035384905 +12912;0;-0.25787354;3.8673248;7.8302765 +12912;3;0.283844;-0.071121216;-0.23027039 +12913;12;0.22304143;0.0777024;0.2557499;0.9374471 +12913;9;2AEC2AEBC4E1;-64;-2147483648 +12914;1;-0.29546905;4.522622;8.700271 +12914;2;-8.8351965E-4;0.65191936;0.79236984; +12915;0;-0.29130554;3.8530579;7.806427 +12915;3;0.27345276;-0.07785034;-0.2339325 +12916;0;-0.25787354;3.8293152;7.8207397 +12916;12;0.22367664;0.07784398;0.25514692;0.93744826 +12917;3;0.26611328;-0.08456421;-0.2375946 +12918;0;-0.21487427;3.8055573;7.815979 +12918;3;0.25756836;-0.090667725;-0.24125671 +12918;1;-0.2971576;4.5332136;8.694699 +12920;4;13.243103;-3.440857;-63.29651 +12920;6;-0.4348395;-0.45295972;0.027484741 +12920;7;0.9015287;-0.37878272;0.20921177;0.0;0.43201315;0.81547827;-0.3851751;0.0;-0.024709953 +12921;0;-0.18144226;3.8197937;7.8302765 +12921;3;0.24902344;-0.09861755;-0.24369812 +12921;12;0.22427651;0.07793747;0.25450787;0.93747085 +12923;0;-0.147995;3.7817993;7.8255157 +12923;1;-0.2983411;4.5431256;8.689484 +12923;3;0.24290466;-0.10473633;-0.24552917 +12924;5;999.58417 +12925;0;-0.11456299;3.7913055;7.858902 +12925;12;0.22484654;0.07799321;0.25386485;0.93750405 +12926;3;0.23924255;-0.106552124;-0.24676514 +12927;0;-0.08111572;3.7390442;7.906601 +12928;1;-0.2990461;4.552364;8.684623 +12928;3;0.23252869;-0.110839844;-0.24798584 +12931;4;12.942505;-1.7913818;-65.69672 +12931;6;-0.43326595;-0.44171447;0.010258881 +12931;7;0.9057105;-0.37954125;0.18877757;0.0;0.42379534;0.82048804;-0.38366228;0.0;-0.009274071 +12931;0;7.6293945E-5;3.7247925;7.9208984 +12931;3;0.22764587;-0.11206055;-0.2498169 +12931;12;0.22538671;0.078009605;0.25321588;0.9375485 +12932;0;0.04786682;3.7485352;7.9495087 +12932;1;-0.2993884;4.561001;8.680078 +12932;2;-0.19635245;0.7866416;0.81048965; +12932;3;0.2215271;-0.11021423;-0.25042725 +12934;0;0.09562683;3.729538;7.9685974 +12935;3;0.21847534;-0.107177734;-0.2510376 +12935;12;0.22590177;0.0779991;0.25256574;0.9376007 +12937;0;0.1481781;3.7247925;8.021057 +12937;3;0.21542358;-0.09983826;-0.2522583 +12937;1;-0.2997579;4.5692697;8.6757145 +12939;4;12.942505;-2.090454;-64.497375 +12939;6;-0.51176167;-0.43467996;-0.018471535 +12939;7;0.87554353;-0.44417295;0.19008914;0.0;0.48284864;0.79080224;-0.3761502;0.0;0.01675282 +12940;0;0.16729736;3.7390442;8.030594 +12940;3;0.21237183;-0.09310913;-0.25164795 +12940;12;0.22640605;0.07795716;0.2518019;0.937688 +12942;0;0.20072937;3.7152863;8.078278 +12942;1;-0.3005731;4.577178;8.671516 +12942;3;0.20869446;-0.082733154;-0.253479 +12944;0;0.23416138;3.7247925;8.068741 +12944;12;0.22687502;0.07796004;0.2511545;0.937748 +12945;3;0.2068634;-0.07052612;-0.25286865 +12947;0;0.24848938;3.7247925;8.130753 +12947;3;0.20503235;-0.05769348;-0.25286865 +12947;1;-0.3021631;4.584788;8.66744 +12949;4;12.942505;-2.090454;-64.19678 +12949;6;-0.5436357;-0.42940235;-0.030552162 +12949;7;0.86201257;-0.4702922;0.1891018;0.0;0.50612533;0.7781366;-0.37194148;0.0;0.027774153 +12949;0;0.30104065;3.7628021;8.164139 +12950;3;0.19953918;-0.043640137;-0.2546997 +12952;0;0.33926392;3.7770538;8.14505 +12952;2;-0.53883255;0.86173296;0.58328533; +12952;1;-0.3047352;4.5921783;8.663438 +12952;3;0.19770813;-0.027755737;-0.25286865 +12953;12;0.22731762;0.07800011;0.25051725;0.937808 +12955;0;0.33448792;3.7865448;8.192749 +12956;12;0.22773404;0.078091525;0.24989465;0.93786544 +12956;3;0.19648743;-0.013092041;-0.25408936 +12956;0;0.34883118;3.8103027;8.2070465 +12956;3;0.19221497;0.0033874512;-0.25408936 +12957;1;-0.30853087;4.5993466;8.659499 +12958;4;14.892578;-2.5405884;-63.746643 +12958;6;-0.62785655;-0.4343144;-0.042478293 +12958;7;0.8190549;-0.5328754;0.2125862;0.0;0.57242036;0.7341531;-0.36517686;0.0;0.038522966 +12959;0;0.37747192;3.8103027;8.2070465 +12959;3;0.18914795;0.019882202;-0.25531006 +12960;12;0.22812141;0.07824499;0.2492876;0.93792003 +12961;1;-0.31363365;4.606236;8.655653 +12961;0;0.37747192;3.8150635;8.230911 +12961;3;0.18426514;0.036987305;-0.2546997 +12962;5;999.58417 +12964;0;0.38703918;3.8388062;8.2642975 +12964;12;0.22847438;0.07846633;0.24869983;0.9379718 +12964;3;0.17877197;0.052871704;-0.253479 +12966;1;-0.3200952;4.6127462;8.651949 +12966;0;0.38226318;3.8578186;8.2595215 +12967;3;0.17449951;0.0663147;-0.2522583 +12969;4;15.04364;-2.9907227;-64.34631 +12969;6;-0.6401138;-0.43655258;-0.046248514 +12969;7;0.8128459;-0.54127;0.21519412;0.0;0.5809703;0.72680944;-0.3663629;0.0;0.041896142 +12969;0;0.35836792;3.872055;8.302444 +12969;3;0.16899109;0.08035278;-0.253479 +12969;12;0.2287876;0.07875747;0.24813305;0.9380211 +12970;0;0.36314392;3.9005737;8.311981 +12971;1;-0.3277417;4.618854;8.648403 +12971;2;-0.713148;0.79041386;0.3963871; +12971;3;0.16288757;0.09379578;-0.25164795 +12973;0;0.35359192;3.9100647;8.302444 +12973;12;0.22906323;0.07910677;0.24758612;0.938069 +12973;3;0.1543274;0.10662842;-0.2522583 +12976;0;0.36314392;3.9433289;8.35968 +12976;1;-0.3364813;4.6244316;8.645086 +12976;3;0.14395142;0.1182251;-0.2498169 +12977;4;12.042236;-1.940918;-63.597107 +12977;6;-0.5323746;-0.44039539;-0.043412633 +12978;7;0.8701831;-0.45914903;0.17878364;0.0;0.49116212;0.77939266;-0.38898188;0.0;0.039258003 +12978;0;0.34403992;3.9195862;8.38829 +12978;3;0.13418579;0.12800598;-0.24859619 +12978;12;0.22934175;0.07936756;0.24648687;0.9382683 +12980;0;0.32492065;3.9575806;8.445526 +12980;1;-0.3461395;4.6291537;8.642179 +12980;3;0.122558594;0.13899231;-0.24736023 +12982;0;0.30104065;3.962326;8.474136 +12983;12;0.22951311;0.07980887;0.245981;0.9383217 +12983;3;0.10974121;0.14572144;-0.24430847 +12985;0;0.3058319;3.9718475;8.531357 +12985;3;0.09446716;0.15306091;-0.24247742 +12985;1;-0.35655802;4.632898;8.639748 +12987;4;12.342834;-4.0405273;-63.89618 +12987;6;-0.56464666;-0.43547133;-0.035832632 +12987;7;0.8523224;-0.48517564;0.19532372;0.0;0.52200735;0.76593584;-0.375301;0.0;0.03248147 +12987;0;0.2962799;4.019348;8.569519 +12988;3;0.07858276;0.15855408;-0.24003601 +12988;12;0.22962144;0.080278136;0.2454975;0.9383818 +12990;0;0.29148865;4.028839;8.588608 +12991;2;-0.7111918;0.68047094;0.17464352; +12991;1;-0.36743638;4.635432;8.637932 +12991;3;0.062088013;0.16343689;-0.23576355 +12992;0;0.28193665;4.052597;8.612442 +12993;12;0.22965705;0.080758385;0.24503711;0.9384523 +12993;3;0.04559326;0.167099;-0.23271179 +12994;0;0.26283264;4.024109;8.612442 +12995;1;-0.37864497;4.636621;8.636809 +12995;3;0.028503418;0.1695404;-0.22720337 +12997;4;13.243103;-2.090454;-64.497375 +12997;6;-0.5426216;-0.4369224;-0.030508315 +12998;7;0.8626247;-0.46787292;0.19228524;0.0;0.5050889;0.77591014;-0.3779533;0.0;0.027638024 +12998;0;0.24848938;4.0383606;8.631531 +12998;3;0.012619019;0.17198181;-0.22354126 +12998;12;0.22962137;0.08121859;0.24450906;0.93855894 +12999;0;0.23416138;4.0336;8.664902 +12999;1;-0.38983706;4.6364036;8.636429 +12999;3;-0.0051116943;0.17138672;-0.2192688 +13001;5;999.58417 +13002;0;0.21028137;4.0621033;8.717377 +13002;12;0.22950026;0.081687175;0.24410449;0.93865323 +13002;3;-0.021591187;0.16894531;-0.2168274 +13004;0;0.16729736;4.028839;8.731674 +13004;1;-0.4009022;4.634756;8.6368065 +13004;3;-0.03930664;0.16770935;-0.21438599 +13006;4;14.292908;-2.5405884;-66.14685 +13006;6;-0.55163616;-0.43222803;-0.019157482 +13006;7;0.85571736;-0.47588408;0.20317996;0.0;0.51715106;0.7733442;-0.36673352;0.0;0.017394595 +13007;0;0.1577301;4.000351;8.812759 +13007;3;-0.056411743;0.16038513;-0.21131897 +13008;12;0.22930023;0.08213244;0.243722;0.9387626 +13009;0;0.09562683;4.009842;8.836609 +13009;1;-0.4116714;4.631584;8.638001 +13009;2;-0.641838;0.6108389;-0.07121372; +13010;3;-0.07595825;0.15550232;-0.20765686 +13011;0;0.071746826;3.9955902;8.874756 +13016;12;0.22902378;0.082544476;0.24335355;0.9388896 +13016;1;-0.42191675;4.6268697;8.640034 +13017;3;-0.09184265;0.1512146;-0.20521545 +13017;0;0.071746826;3.9813385;8.931976 +13017;3;-0.11260986;0.14266968;-0.200943 +13018;9;2AEC2AEBC4E1;-67;-2147483648 +13019;12;0.22868249;0.082870804;0.24285108;0.93907416 +13019;1;-0.43143383;4.6204543;8.642996 +13021;4;12.942505;-2.5405884;-64.19678 +13021;6;-0.5151363;-0.4192936;-0.008032409 +13021;7;0.8718085;-0.44997826;0.19357039;0.0;0.4897919;0.79484385;-0.35822794;0.0;0.0073365364 +13021;0;0.04307556;3.938568;8.984451 +13021;3;-0.13276672;0.1341095;-0.19789124 +13021;0;0.009643555;3.933838;9.013062 +13021;3;-0.15475464;0.12373352;-0.19421387 +13021;0;-0.019012451;3.8768158;9.070297 +13021;12;0.22824548;0.08317544;0.24251272;0.93924093 +13022;3;-0.17614746;0.11273193;-0.19055176 +13023;1;-0.44000682;4.612165;8.646991 +13024;0;-0.019012451;3.8530579;9.08461 +13024;3;-0.19691467;0.09806824;-0.18933105 +13026;4;12.942505;-2.5405884;-64.19678 +13026;6;-0.51299095;-0.40113294;0.0020928166 +13026;7;0.87087756;-0.45182645;0.19345586;0.0;0.4914963;0.8021176;-0.3391737;0.0;-0.0019266859 +13026;0;-0.042907715;3.8340607;9.127518 +13026;3;-0.21583557;0.085250854;-0.18444824 +13027;12;0.22772087;0.08340564;0.24218749;0.9394317 +13028;0;-0.07156372;3.8388062;9.213379 +13028;1;-0.4473932;4.602118;8.651962 +13030;2;-0.476935;0.7080507;-0.3934679; +13030;3;-0.23294067;0.07241821;-0.18078613 +13032;0;-0.08590698;3.772293;9.251541 +13032;12;0.22711593;0.083550274;0.24186775;0.9396477 +13033;3;-0.24943542;0.061416626;-0.17834473 +13033;0;-0.095443726;3.7770538;9.332611 +13033;1;-0.45362195;4.5905232;8.657797 +13033;3;-0.26287842;0.05104065;-0.17588806 +13035;4;13.243103;-1.4907837;-64.497375 +13035;6;-0.503116;-0.3845468;0.010226549 +13035;7;0.8741889;-0.446945;0.18982589;0.0;0.48549336;0.8121026;-0.32370558;0.0;-0.009479523 +13036;0;-0.07635498;3.7105408;9.323074 +13036;3;-0.27386475;0.041259766;-0.17285156 +13036;12;0.22646041;0.083569005;0.24137466;0.939931 +13039;0;-0.06201172;3.7010345;9.365997 +13039;1;-0.4588304;4.577716;8.664301 +13039;3;-0.28303528;0.032714844;-0.1691742 +13039;5;999.58417 +13040;0;-0.06678772;3.682022;9.4375305 +13041;12;0.22573687;0.08356408;0.2410712;0.94018334 +13041;3;-0.28974915;0.02293396;-0.16490173 +13042;0;-0.11456299;3.6440125;9.46138 +13042;1;-0.4631301;4.5640903;8.671257 +13042;3;-0.29525757;0.01499939;-0.16000366 +13045;4;13.243103;-1.4907837;-64.497375 +13045;6;-0.51841325;-0.36761138;0.012107895 +13045;7;0.8663868;-0.46239722;0.18858108;0.0;0.4992458;0.8105736;-0.30614406;0.0;-0.011298671 +13045;0;-0.11933899;3.6297607;9.532913 +13045;3;-0.29769897;0.0052337646;-0.15512085 +13045;12;0.22498012;0.083505005;0.24077721;0.9404452 +13047;0;-0.16711426;3.5965118;9.566299 +13047;1;-0.4665411;4.549974;8.678491 +13047;2;-0.39319256;0.8760052;-0.73980045; +13047;3;-0.29708862;-2.746582E-4;-0.15023804 +13052;12;0.2242086;0.08339727;0.24049617;0.9407109 +13052;0;-0.18621826;3.5774994;9.599686 +13052;3;-0.29586792;-0.006378174;-0.14596558 +13052;1;-0.46924856;4.5358005;8.6857605 +13052;0;-0.21487427;3.5394897;9.604462 +13052;3;-0.28974915;-0.010650635;-0.14045715 +13054;4;14.292908;-2.5405884;-62.997437 +13054;6;-0.5837325;-0.3530012;0.022368606 +13054;7;0.8299409;-0.51715845;0.20915385;0.0;0.55745643;0.782961;-0.27606955;0.0;-0.020987593 +13054;0;-0.20054626;3.5442505;9.580612 +13055;3;-0.28303528;-0.0149383545;-0.13191223 +13055;12;0.22344528;0.08325351;0.24022123;0.94097555 +13056;0;-0.19099426;3.5299988;9.532913 +13057;1;-0.4712851;4.5220747;8.692804 +13057;3;-0.27264404;-0.019195557;-0.12519836 +13059;0;-0.157547;3.525238;9.547226 +13059;12;0.22271323;0.08308781;0.23997371;0.94122684 +13059;3;-0.2592163;-0.021652222;-0.11602783 +13062;1;-0.47263896;4.5091486;8.699442 +13062;0;-0.19099426;3.5014954;9.552002 +13062;3;-0.24394226;-0.024093628;-0.10443115 +13064;4;14.292908;-2.5405884;-62.997437 +13064;6;-0.59177876;-0.35129666;0.019992543 +13064;7;0.8259463;-0.5237695;0.20851414;0.0;0.56343615;0.7792624;-0.27438965;0.0;-0.018770294 +13064;0;-0.171875;3.5109863;9.547226 +13064;3;-0.22744751;-0.02104187;-0.09465027 +13065;12;0.22203021;0.08290766;0.23975141;0.9414607 +13067;0;-0.17666626;3.4967346;9.509079 +13067;1;-0.47342947;4.497607;8.705372 +13067;2;-0.31310475;0.98771715;-0.8647108; +13067;3;-0.21095276;-0.02104187;-0.08242798 +13069;0;-0.21966553;3.515747;9.451843 +13069;12;0.2214264;0.08273144;0.23957038;0.9416644 +13069;3;-0.18896484;-0.017974854;-0.069610596 +13071;0;-0.21487427;3.5347595;9.389847 +13071;1;-0.47389397;4.487683;8.710467 +13072;3;-0.16758728;-0.012481689;-0.05860901 +13073;4;13.842773;-1.7913818;-64.497375 +13073;6;-0.52906066;-0.3599505;0.02287969 +13073;7;0.8589884;-0.4723771;0.19748074;0.0;0.51154697;0.8079575;-0.29244536;0.0;-0.02141156 +13074;0;-0.19577026;3.5299988;9.375534 +13074;3;-0.14315796;-0.0082092285;-0.046401978 +13076;12;0.22091268;0.082564734;0.23940578;0.9418416 +13076;1;-0.47423702;4.479761;8.714524 +13076;0;-0.24354553;3.5870209;9.251541 +13076;3;-0.121154785;-0.002090454;-0.03540039 +13078;5;999.5871 +13078;0;-0.19099426;3.615509;9.213379 +13078;12;0.22050321;0.082442485;0.23932025;0.94197 +13079;3;-0.09550476;0.002166748;-0.023803711 +13080;0;-0.19099426;3.639267;9.156143 +13081;3;-0.07167053;0.007659912;-0.013412476 +13081;1;-0.47448263;4.473997;8.717473 +13083;4;13.842773;-1.7913818;-64.497375 +13083;6;-0.5115775;-0.37824637;0.02085666 +13083;7;0.8680134;-0.45494863;0.19893366;0.0;0.49616244;0.81033665;-0.3117325;0.0;-0.019380972 +13083;0;-0.21487427;3.6582794;9.094147 +13083;3;-0.051513672;0.013763428;-0.0011901855 +13084;12;0.22020379;0.082359485;0.23928243;0.9420569 +13085;0;-0.19577026;3.6962738;9.017838 +13085;1;-0.4747172;4.470352;8.719329 +13086;2;-0.29301232;0.89413166;-0.5366764; +13086;3;-0.031967163;0.017440796;0.0067443848 +13088;0;-0.21966553;3.7580414;8.965378 +13088;12;0.22001542;0.0823186;0.2392908;0.9421024 +13088;3;-0.013046265;0.022323608;0.01713562 +13090;0;-0.24832153;3.7913055;8.912918 +13090;1;-0.47496402;4.468554;8.720238 +13090;3;0.0028381348;0.025985718;0.023849487 +13092;4;13.093567;-1.3412476;-64.64691 +13092;6;-0.43652698;-0.40204597;0.027853651 +13092;7;0.9012664;-0.389082;0.19061463;0.0;0.43250653;0.8339652;-0.34269542;0.0;-0.025629353 +13093;0;-0.25309753;3.8483124;8.793686 +13093;3;0.015670776;0.029052734;0.030563354 +13093;12;0.21993521;0.08228069;0.2391865;0.9421509 +13095;0;-0.25787354;3.8910675;8.745987 +13095;1;-0.47523677;4.46831;8.720347 +13095;3;0.027877808;0.03149414;0.035461426 +13097;0;-0.23399353;3.9433289;8.6792145 +13098;12;0.21992043;0.082308814;0.2392659;0.94213164 +13098;3;0.035217285;0.0357666;0.042175293 +13100;0;-0.23399353;4.0336;8.6362915 +13101;1;-0.47548655;4.469218;8.719869 +13101;3;0.0413208;0.0357666;0.04827881 +13103;9;52ADB5BC186F;-80;-2147483648 +13104;4;12.643433;-1.7913818;-64.497375 +13104;6;-0.39951158;-0.4368031;0.027087588 +13104;7;0.9164564;-0.3524477;0.18944217;0.0;0.39938128;0.83475363;-0.37905267;0.0;-0.024541296 +13104;0;-0.21966553;4.0621033;8.583832 +13104;3;0.043762207;0.0357666;0.051330566 +13104;12;0.21996464;0.08235952;0.23937006;0.94209045 +13105;0;-0.23399353;4.090622;8.521835 +13105;1;-0.47558114;4.470764;8.719071 +13105;2;-0.26518536;0.56555796;-0.023713112; +13105;3;0.046203613;0.036987305;0.05317688 +13107;0;-0.24832153;4.1571198;8.431213 +13108;12;0.2200419;0.082419276;0.23949729;0.94203484 +13108;3;0.043762207;0.036987305;0.05378723 +13110;1;-0.47567025;4.472615;8.718117 +13111;0;-0.23399353;4.209381;8.41214 +13111;3;0.0413208;0.038208008;0.055618286 +13113;4;13.542175;-1.4907837;-64.94751 +13113;6;-0.39829922;-0.46380767;0.027809002 +13114;7;0.9165411;-0.34687692;0.19906966;0.0;0.3991665;0.82434714;-0.40139475;0.0;-0.02486793 +13114;0;-0.23399353;4.2188873;8.38829 +13114;3;0.039489746;0.040039062;0.056228638 +13114;12;0.22013809;0.082466304;0.23956092;0.9419921 +13115;1;-0.47582027;4.4744143;8.717186 +13116;0;-0.2817688;4.3186646;8.321533 +13116;3;0.034606934;0.041870117;0.056228638 +13117;5;999.5871 +13117;0;-0.29130554;4.366165;8.278595 +13117;12;0.2202257;0.08253807;0.23970237;0.94192934 +13118;3;0.030334473;0.04309082;0.05683899 +13119;1;-0.47614223;4.476049;8.716329 +13121;0;-0.28652954;4.3851776;8.273819 +13121;3;0.023605347;0.04248047;0.054397583 +13122;9;2AEC2AEBC4E1;-74;-2147483648 +13123;4;15.193176;-0.74157715;-64.94751 +13124;6;-0.4074424;-0.48711568;0.034617037 +13124;7;0.9111677;-0.35017174;0.21714783;0.0;0.410899;0.8113456;-0.41578862;0.0;-0.0305845 +13124;0;-0.2960968;4.380417;8.226135 +13124;3;0.018722534;0.041870117;0.051956177 +13124;12;0.22029707;0.0826141;0.23984824;0.94186884 +13124;1;-0.4765314;4.477261;8.715685 +13124;2;-0.23374838;0.19363165;0.38605595; +13124;0;-0.29130554;4.4089203;8.202286 +13124;3;0.010772705;0.041259766;0.04949951 +13127;12;0.22034648;0.08268639;0.23998834;0.9418154 +13127;0;-0.2960968;4.4279175;8.14505 +13127;3;0.0010070801;0.03881836;0.04827881 +13129;0;-0.3199768;4.4421844;8.159363 +13129;1;-0.47694513;4.4779086;8.71533 +13129;3;-0.0069274902;0.038208008;0.047058105 +13133;12;0.22038631;0.08269271;0.23987569;0.9418341 +13133;4;12.792969;-1.3412476;-63.89618 +13133;6;-0.33453566;-0.4982325;0.03919582 +13133;7;0.9376891;-0.28841498;0.19379349;0.0;0.3457662;0.829731;-0.43816915;0.0;-0.034421913 +13133;0;-0.32476807;4.4754486;8.130753 +13133;3;-0.016708374;0.0345459;0.042175293 +13134;0;-0.3343048;4.4849396;8.135513 +13134;3;-0.025863647;0.029052734;0.039733887 +13134;1;-0.47732815;4.47787;8.715328 +13136;12;0.22036782;0.08274243;0.23999883;0.94180274 +13137;0;-0.3438568;4.503952;8.11644 +13137;3;-0.033813477;0.025985718;0.037902832 +13138;1;-0.47746137;4.4771023;8.715715 +13139;0;-0.3056488;4.5086975;8.106903 +13139;3;-0.0435791;0.024154663;0.034851074 +13140;4;13.392639;-1.0406494;-63.89618 +13140;6;-0.34697673;-0.5072551;0.03768444 +13141;7;0.9335137;-0.2972368;0.20050544;0.0;0.35702616;0.82199043;-0.44369364;0.0;-0.032931466 +13141;0;-0.3104248;4.494446;8.135513 +13141;3;-0.051513672;0.022323608;0.031173706 +13141;12;0.22031309;0.08276312;0.24010897;0.94178563 +13143;0;-0.3152008;4.4849396;8.106903 +13144;1;-0.47752059;4.475567;8.716501 +13144;2;-0.18667382;0.018947601;0.5744457; +13144;3;-0.05885315;0.023544312;0.025680542 +13146;0;-0.2722168;4.5086975;8.102127 +13146;12;0.22022074;0.08276604;0.24020678;0.94178206 +13146;3;-0.06617737;0.023544312;0.022628784 +13148;1;-0.47775882;4.4734287;8.717586 +13148;0;-0.3199768;4.513443;8.09259 +13148;3;-0.06983948;0.023544312;0.01651001 +13151;4;14.892578;-0.440979;-65.69672 +13151;6;-0.36806244;-0.50842285;0.039518896 +13151;7;0.9253776;-0.31429738;0.21188056;0.0;0.3774721;0.8150109;-0.43962717;0.0;-0.034511298 +13151;0;-0.3056488;4.4991913;8.09259 +13151;3;-0.0753479;0.024154663;0.013458252 +13151;12;0.22009519;0.08276274;0.24026774;0.94179606 +13152;0;-0.3152008;4.480179;8.111679 +13153;1;-0.47823158;4.470805;8.718905 +13153;3;-0.08023071;0.024765015;0.010406494 +13155;5;999.5871 +13155;0;-0.3295288;4.480179;8.102127 +13155;12;0.21994026;0.08276382;0.2403301;0.9418163 +13156;3;-0.08389282;0.025375366;0.0073547363 +13157;0;-0.30085754;4.4897003;8.08783 +13157;1;-0.4788886;4.4677935;8.720412 +13158;3;-0.088775635;0.025985718;0.003692627 +13160;4;14.143372;-2.241516;-64.34631 +13160;6;-0.37894714;-0.5064708;0.037181653 +13160;7;0.9217416;-0.3235007;0.21386877;0.0;0.38644;0.81242305;-0.4366156;0.0;-0.03250645 +13160;0;-0.2960968;4.44693;8.106903 +13160;3;-0.09184265;0.028427124;0.0024719238 +13160;12;0.21976334;0.08276371;0.24038121;0.9418445 +13164;1;-0.4797261;4.4643755;8.722117 +13165;2;-0.20418209;-1.988411E-4;0.60555077; +13165;12;0.21956386;0.08276551;0.24042225;0.9418804 +13165;0;-0.29130554;4.4611816;8.140289 +13165;3;-0.09611511;0.03149414;0.0012512207 +13165;0;-0.29130554;4.44693;8.130753 +13165;3;-0.09794617;0.033935547;-0.0011901855 +13168;0;-0.26742554;4.4754486;8.164139 +13168;1;-0.4808357;4.460668;8.723952 +13168;3;-0.100997925;0.036987305;-0.0018157959 +13170;4;13.093567;-1.3412476;-65.54718 +13170;6;-0.34432828;-0.5012218;0.032744415 +13170;7;0.9354877;-0.29604274;0.19292879;0.0;0.35219097;0.8255186;-0.44099954;0.0;-0.028711597 +13171;0;-0.2722168;4.44693;8.164139 +13171;3;-0.10160828;0.03942871;-0.003036499 +13171;12;0.21936977;0.082712494;0.24019094;0.9419893 +13172;0;-0.27697754;4.4421844;8.178452 +13172;1;-0.4822183;4.4567475;8.72588 +13172;3;-0.10343933;0.041870117;-0.004852295 +13174;0;-0.24354553;4.4897003;8.197525 +13175;12;0.21913809;0.08273324;0.24022809;0.94203204 +13176;3;-0.104660034;0.046157837;-0.0066986084 +13176;1;-0.4838873;4.452706;8.72785 +13177;0;-0.2722168;4.432678;8.2165985 +13177;3;-0.105270386;0.049819946;-0.0066986084 +13179;4;12.942505;-0.440979;-64.497375 +13179;6;-0.34126243;-0.49450025;0.033118 +13179;7;0.9365568;-0.29458466;0.18995032;0.0;0.34930187;0.82944703;-0.43589643;0.0;-0.02914533 +13179;0;-0.22442627;4.465927;8.2642975 +13179;3;-0.105270386;0.054092407;-0.0066986084 +13180;12;0.21889418;0.08276554;0.2402616;0.94207734 +13181;0;-0.23399353;4.4611816;8.316757 +13181;1;-0.4858614;4.448569;8.72985 +13182;2;-0.25441062;0.010629177;0.5140505; +13182;3;-0.10710144;0.057754517;-0.0079193115 +13184;0;-0.21966553;4.432678;8.335815 +13187;1;-0.4881624;4.4442806;8.731906 +13187;12;0.21864076;0.08281302;0.24029794;0.9421227 +13187;3;-0.10832214;0.062026978;-0.00730896 +13187;0;-0.21009827;4.4516907;8.340591 +13187;3;-0.10954285;0.0675354;-0.0066986084 +13189;4;13.842773;-0.74157715;-64.497375 +13189;6;-0.38825586;-0.49014056;0.025184527 +13189;7;0.9207894;-0.33400378;0.20146507;0.0;0.3894266;0.81660014;-0.42604095;0.0;-0.02221712 +13189;0;-0.19577026;4.465927;8.407364 +13189;3;-0.11076355;0.07119751;-0.006088257 +13190;12;0.21838239;0.08286148;0.24027725;0.9421837 +13191;0;-0.22442627;4.4849396;8.426437 +13191;1;-0.49082094;4.4398866;8.733992 +13192;3;-0.11016846;0.07546997;-0.0066986084 +13193;5;999.5871 +13193;0;-0.20533752;4.494446;8.426437 +13194;12;0.2181082;0.082944;0.24032462;0.94222784 +13194;3;-0.11076355;0.07974243;-0.0054779053 +13196;0;-0.20054626;4.503952;8.44075 +13196;1;-0.49380356;4.435504;8.73605 +13196;3;-0.10832214;0.08157349;-0.0054779053 +13198;4;12.643433;-0.14038086;-65.24658 +13198;6;-0.3464649;-0.49004477;0.023754824 +13198;7;0.9365173;-0.2996109;0.18212223;0.0;0.3499943;0.8298839;-0.43450728;0.0;-0.02095719 +13198;0;-0.22442627;4.4991913;8.455063 +13199;3;-0.10710144;0.085861206;-0.0054779053 +13199;12;0.217829;0.08304448;0.24037708;0.9422702 +13201;0;-0.21487427;4.494446;8.483673 +13201;1;-0.4970481;4.4312177;8.738041 +13201;2;-0.3146562;-0.028015614;0.31203938; +13201;3;-0.105270386;0.089523315;-0.004852295 +13203;0;-0.20054626;4.5086975;8.540909 +13203;12;0.21755117;0.08315889;0.24043377;0.94230974 +13203;3;-0.10160828;0.09379578;-0.003036499 +13205;0;-0.21009827;4.513443;8.540909 +13205;1;-0.5005906;4.427066;8.7399435 +13205;3;-0.100997925;0.09867859;-0.0024108887 +13209;12;0.217308;0.08321542;0.24015951;0.94243085 +13209;4;12.942505;-1.7913818;-65.69672 +13209;6;-0.36942402;-0.48602277;0.024594093 +13209;7;0.92810565;-0.31926465;0.1915459;0.0;0.37168127;0.8245457;-0.42658812;0.0;-0.021743849 +13209;0;-0.21009827;4.52771;8.536133 +13209;3;-0.09916687;0.10296631;-0.003036499 +13210;0;-0.20054626;4.53244;8.550446 +13210;1;-0.50446135;4.423109;8.741724 +13211;3;-0.097335815;0.10784912;-0.0036315918 +13212;0;-0.19577026;4.5514526;8.555222 +13213;12;0.21703985;0.08337086;0.24022998;0.94246095 +13213;3;-0.096725464;0.109680176;-0.0018157959 +13215;0;-0.171875;4.537201;8.612442 +13215;1;-0.5086282;4.419277;8.743421 +13215;3;-0.096725464;0.11212158;6.4086914E-4 +13217;4;12.792969;-2.241516;-63.597107 +13217;6;-0.39330795;-0.4847901;0.019953944 +13217;7;0.91989887;-0.33908552;0.19699486;0.0;0.391758;0.8172171;-0.42270765;0.0;-0.017653536 +13217;0;-0.19099426;4.52771;8.6410675 +13218;3;-0.09916687;0.113342285;0.0024719238 +13218;12;0.216772;0.08354372;0.24030441;0.9424883 +13219;0;-0.20054626;4.53244;8.650604 +13220;1;-0.5128811;4.415371;8.745145 +13220;2;-0.34559965;-0.09481573;0.15537357; +13220;3;-0.09977722;0.11456299;0.003692627 +13222;0;-0.18144226;4.53244;8.688751 +13222;12;0.21649967;0.08372275;0.24039069;0.94251305 +13223;3;-0.09916687;0.11517334;0.00491333 +13225;0;-0.171875;4.546707;8.731674 +13225;9;2AEC2AEBC4E1;-75;-2147483648 +13227;3;-0.09855652;0.11456299;0.007965088 +13227;1;-0.5171326;4.4113865;8.746905 +13227;4;13.842773;-1.1901855;-63.29651 +13227;6;-0.41879904;-0.48000202;0.019681541 +13227;7;0.9097053;-0.36070812;0.20573258;0.0;0.41488737;0.81033814;-0.41378796;0.0;-0.017456282 +13227;0;-0.19577026;4.5181885;8.722153 +13227;3;-0.09977722;0.113342285;0.009185791 +13228;12;0.21622534;0.08389472;0.2404488;0.94254595 +13230;0;-0.21487427;4.522949;8.726913 +13230;1;-0.52128994;4.4074006;8.748668 +13231;3;-0.10160828;0.11090088;0.012237549 +13231;5;999.5871 +13232;0;-0.20533752;4.546707;8.741211 +13232;12;0.21594967;0.08407236;0.24055162;0.942567 +13232;3;-0.10282898;0.109069824;0.0140686035 +13234;0;-0.18621826;4.5419617;8.793686 +13234;1;-0.5251658;4.4033046;8.750498 +13234;3;-0.104660034;0.10601807;0.015914917 +13237;4;13.542175;-0.14038086;-63.29651 +13237;6;-0.3976662;-0.47667098;0.021173196 +13237;7;0.91799873;-0.3440979;0.19716734;0.0;0.39613694;0.8191931;-0.41472667;0.0;-0.018811557 +13239;12;0.21567026;0.08423477;0.24066383;0.9425878 +13239;1;-0.528697;4.3991013;8.752399 +13239;2;-0.37239343;-0.12389946;-0.0017967224; +13239;0;-0.18144226;4.546707;8.76506 +13240;3;-0.10650635;0.1035614;0.018966675 +13240;0;-0.16233826;4.5752106;8.774612 +13240;3;-0.10832214;0.101745605;0.018966675 +13242;12;0.21538779;0.08438062;0.24078387;0.9426087 +13242;0;-0.18621826;4.5419617;8.81752 +13242;3;-0.10832214;0.09623718;0.023239136 +13244;1;-0.53190786;4.3947616;8.754385 +13244;0;-0.16233826;4.537201;8.769836 +13244;3;-0.108947754;0.09196472;0.025680542 +13248;12;0.21512581;0.08445223;0.2406625;0.9426932 +13248;4;13.392639;-0.59051514;-64.64691 +13248;6;-0.39453852;-0.4773725;0.018508863 +13248;7;0.91974735;-0.34141025;0.19365892;0.0;0.39216644;0.8199679;-0.4169628;0.0;-0.01643873 +13248;0;-0.16711426;4.5419617;8.78891 +13248;3;-0.11016846;0.085861206;0.028121948 +13249;0;-0.15278625;4.556198;8.798447 +13249;1;-0.5345515;4.3904004;8.756412 +13249;3;-0.10954285;0.08035278;0.029342651 +13252;0;-0.157547;4.5419617;8.822296 +13252;12;0.21484543;0.08455339;0.24079683;0.94271374 +13252;3;-0.108947754;0.07485962;0.031784058 +13253;0;-0.138443;4.5419617;8.831833 +13253;1;-0.5366254;4.3860407;8.75847 +13253;3;-0.10710144;0.07058716;0.034240723 +13255;4;13.542175;-0.74157715;-64.497375 +13255;6;-0.408735;-0.47494972;0.01567417 +13255;7;0.914663;-0.35345754;0.19611098;0.0;0.40397704;0.8160578;-0.41334292;0.0;-0.013938715 +13256;0;-0.12411499;4.560959;8.860458 +13256;3;-0.105270386;0.06385803;0.03729248 +13256;12;0.21457276;0.08462542;0.24093392;0.94273424 +13264;1;-0.5381176;4.381842;8.76048 +13264;0;-0.11933899;4.560959;8.822296 +13264;3;-0.10282898;0.05897522;0.037902832 +13264;0;-0.138443;4.556198;8.81752 +13264;3;-0.10038757;0.05531311;0.043395996 +13264;2;-0.41924554;-0.14802074;-0.06454754; +13264;12;0.21431547;0.08467336;0.24107681;0.94275206 +13264;0;-0.10499573;4.5419617;8.798447 +13264;1;-0.5390846;4.377858;8.762411 +13264;3;-0.09550476;0.052261353;0.0446167 +13265;4;13.542175;-0.440979;-65.24658 +13265;6;-0.40699175;-0.4765127;0.011932872 +13265;7;0.91608375;-0.351751;0.19251403;0.0;0.4008466;0.81601524;-0.41646245;0.0;-0.0106032975 +13267;12;0.21410139;0.08463497;0.24095121;0.94283617 +13268;1;-0.53957784;4.374297;8.764159 +13272;0;-0.10978699;4.5752106;8.807983 +13272;3;-0.08999634;0.046157837;0.04888916 +13272;0;-0.11456299;4.5799713;8.807983 +13272;3;-0.085113525;0.04309082;0.051330566 +13272;0;-0.095443726;4.546707;8.822296 +13272;12;0.2138882;0.08464308;0.2411072;0.94284403 +13272;3;-0.07778931;0.040039062;0.05317688 +13272;5;999.585 +13273;1;-0.53959334;4.3712144;8.765697 +13273;0;-0.06678772;4.5894623;8.81752 +13273;3;-0.06983948;0.036376953;0.05683899 +13274;13;58.954987 +13275;4;13.693237;0.009155273;-63.89618 +13275;6;-0.42029184;-0.47989592;0.007574288 +13275;7;0.91151696;-0.3619374;0.1952903;0.0;0.41120777;0.80984354;-0.41840369;0.0;-0.0067186547 +13275;0;-0.06201172;4.603714;8.803207 +13275;3;-0.06434631;0.036376953;0.056228638 +13275;12;0.2137086;0.08463575;0.24126986;0.94284374 +13277;0;-0.042907715;4.6179657;8.78891 +13277;1;-0.5392637;4.3688073;8.766916 +13277;2;-0.4806838;-0.18999004;-0.051974297; +13277;3;-0.056411743;0.033325195;0.0605011 +13279;0;-0.06678772;4.603714;8.807983 +13280;12;0.21356662;0.08462265;0.24143666;0.9428344 +13280;3;-0.04663086;0.032104492;0.0617218 +13282;0;-0.057235718;4.6179657;8.750748 +13282;1;-0.53870004;4.367066;8.767819 +13282;3;-0.03930664;0.032714844;0.06111145 +13284;4;13.842773;-1.4907837;-65.24658 +13284;6;-0.4310098;-0.48556995;0.0065405727 +13284;7;0.90724957;-0.3694959;0.20092529;0.0;0.42055288;0.80352485;-0.42128736;0.0;-0.005784501 +13284;0;-0.06201172;4.660721;8.76506 +13285;3;-0.030136108;0.032104492;0.06355286 +13285;12;0.21347208;0.0845909;0.2415288;0.94283503 +13286;0;-0.057235718;4.6559753;8.784149 +13287;1;-0.5380953;4.366101;8.768337 +13287;3;-0.025253296;0.032104492;0.06416321 +13290;0;-0.052444458;4.6749725;8.750748 +13290;12;0.21341048;0.08458601;0.24169984;0.94280565 +13291;3;-0.017929077;0.033325195;0.06477356 +13292;0;-0.042907715;4.6892242;8.731674 +13292;3;-0.009994507;0.036376953;0.06538391 +13292;1;-0.53744376;4.365739;8.768557 +13294;4;14.143372;-1.0406494;-64.64691 +13294;6;-0.43565366;-0.49283063;0.0049139913 +13294;7;0.9056024;-0.37178355;0.20411132;0.0;0.42410576;0.7987071;-0.42685047;0.0;-0.004329195 +13294;0;-0.07156372;4.684494;8.717377 +13294;3;-0.0032653809;0.038208008;0.06599426 +13295;12;0.21338105;0.084589325;0.24187301;0.9427676 +13296;0;-0.028564453;4.6892242;8.722153 +13296;1;-0.53696305;4.366025;8.768443 +13296;2;-0.5166927;-0.27663565;0.0040893555; +13297;3;0.0028381348;0.041259766;0.06538391 +13298;0;-0.033355713;4.693985;8.750748 +13299;12;0.21338324;0.084609345;0.24204864;0.94272023 +13299;3;0.006500244;0.044311523;0.067214966 +13301;0;-0.042907715;4.727234;8.70784 +13301;1;-0.5366842;4.366807;8.768071 +13301;3;0.010177612;0.047973633;0.066604614 +13303;4;14.593506;-2.8411865;-65.24658 +13303;6;-0.46194065;-0.49734837;0.004927441 +13303;7;0.89413065;-0.39169163;0.21704385;0.0;0.44778523;0.78673774;-0.4248907;0.0;-0.004330468 +13304;0;-0.057235718;4.7082367;8.698288 +13304;3;0.012619019;0.050430298;0.067840576 +13304;12;0.21341084;0.08464757;0.24221505;0.9426678 +13306;0;-0.06201172;4.712982;8.65538 +13306;1;-0.53668517;4.3679023;8.767526 +13306;3;0.013839722;0.053482056;0.06965637 +13308;5;999.585 +13309;0;-0.08111572;4.727234;8.631531 +13309;12;0.21345055;0.08470816;0.24239574;0.9426069 +13310;3;0.015060425;0.05470276;0.07028198 +13311;0;-0.08590698;4.7319946;8.593384 +13311;1;-0.53686637;4.3691893;8.766873 +13315;3;0.01322937;0.056533813;0.07028198 +13315;4;13.842773;0.1586914;-63.746643 +13315;6;-0.40324667;-0.5033252;0.009996542 +13315;7;0.91785383;-0.34374174;0.19845897;0.0;0.39682195;0.8057224;-0.43970856;0.0;-0.008756659 +13315;0;-0.08111572;4.73674;8.621979 +13315;3;0.010177612;0.057754517;0.07394409 +13315;12;0.21349639;0.084781475;0.24258423;0.9425415 +13319;1;-0.5371333;4.3703766;8.766265 +13319;0;-0.09068298;4.7462463;8.602905 +13319;2;-0.5061431;-0.33679438;0.09828472; +13319;12;0.2135351;0.084860444;0.24277931;0.94247526 +13320;3;0.0071105957;0.057144165;0.07394409 +13320;0;-0.11456299;4.73674;8.583832 +13320;3;0.0034484863;0.057754517;0.07577515 +13320;0;-0.13366699;4.727234;8.555222 +13320;1;-0.5374081;4.3713145;8.76578 +13320;3;-2.1362305E-4;0.05836487;0.07699585 +13323;4;15.04364;-1.0406494;-65.097046 +13323;6;-0.42877996;-0.5047513;0.015622753 +13323;7;0.9062218;-0.3639139;0.21524143;0.0;0.42258158;0.7960576;-0.43326345;0.0;-0.0136739565 +13323;0;-0.10499573;4.7557526;8.517059 +13323;3;-0.0069274902;0.057144165;0.079437256 +13324;12;0.21356249;0.08493316;0.24296662;0.9424142 +13325;0;-0.147995;4.7414856;8.521835 +13325;1;-0.5376289;4.3719373;8.765457 +13325;3;-0.013641357;0.053482056;0.078826904 +13327;0;-0.18144226;4.750992;8.478897 +13328;12;0.21356966;0.0850065;0.2431778;0.9423516 +13328;3;-0.016708374;0.049819946;0.08004761 +13330;0;-0.18621826;4.7700043;8.478897 +13331;3;-0.021591187;0.044921875;0.08248901 +13331;1;-0.5376481;4.372111;8.765368 +13332;9;2AEC2AEBC4E1;-68;-2147483648 +13334;12;0.21355498;0.08505987;0.2433907;0.94229513 +13334;4;14.593506;-2.090454;-65.24658 +13334;6;-0.4095165;-0.51234245;0.02195903 +13334;7;0.91280645;-0.3470408;0.21528359;0.0;0.40794373;0.7995291;-0.44083458;0.0;-0.01913792 +13334;0;-0.171875;4.727234;8.478897 +13334;3;-0.026473999;0.038208008;0.083099365 +13335;0;-0.19099426;4.717743;8.46936 +13335;3;-0.03074646;0.033325195;0.08494568 +13335;2;-0.41996324;-0.3542757;0.24530983; +13337;1;-0.53717095;4.371882;8.765512 +13338;0;-0.19577026;4.7319946;8.488449 +13338;12;0.21352547;0.08508412;0.24360764;0.9422436 +13338;3;-0.033187866;0.025985718;0.08554077 +13339;0;-0.20054626;4.7319946;8.431213 +13340;1;-0.53616786;4.3713465;8.765841 +13340;3;-0.03503418;0.020492554;0.08554077 +13342;4;13.243103;-0.74157715;-65.24658 +13342;6;-0.35607266;-0.51131654;0.023781685 +13342;7;0.9329518;-0.30401087;0.1928166;0.0;0.35940337;0.8173968;-0.4502128;0.0;-0.020738076 +13342;0;-0.20533752;4.727234;8.474136 +13342;3;-0.040527344;0.016830444;0.08616638 +13343;12;0.21353987;0.08494474;0.24324568;0.94234645 +13344;0;-0.21009827;4.750992;8.474136 +13345;1;-0.5347052;4.3705673;8.766318 +13345;3;-0.0435791;0.012542725;0.08616638 +13347;0;-0.20533752;4.717743;8.488449 +13347;12;0.21349345;0.08490899;0.24346031;0.9423047 +13348;3;-0.044799805;0.010101318;0.08798218 +13348;5;999.585 +13349;1;-0.53290445;4.369497;8.766962 +13349;0;-0.20054626;4.73674;8.502762 +13350;3;-0.045410156;0.007659912;0.08920288 +13352;4;13.392639;-1.3412476;-64.64691 +13352;6;-0.37179318;-0.5081464;0.023581643 +13352;7;0.9272505;-0.31738466;0.1986796;0.0;0.37387463;0.81395805;-0.4446236;0.0;-0.020600144 +13352;0;-0.17666626;4.717743;8.517059 +13352;3;-0.04724121;0.005844116;0.090423584 +13352;12;0.21343626;0.084850766;0.2436756;0.94226724 +13354;0;-0.21009827;4.7319946;8.555222 +13354;1;-0.53084373;4.368316;8.767675 +13354;2;-0.3679015;-0.3488698;0.26710033; +13354;3;-0.048461914;0.006439209;0.0922699 +13356;0;-0.20054626;4.727234;8.555222 +13357;12;0.21337612;0.08478035;0.24389492;0.9422305 +13357;3;-0.04724121;0.0070648193;0.09410095 +13358;0;-0.19577026;4.727234;8.540909 +13359;1;-0.52871186;4.3670664;8.768427 +13359;3;-0.04724121;0.0052337646;0.095321655 +13361;4;12.792969;-1.0406494;-65.097046 +13361;6;-0.3522018;-0.5054009;0.022917466 +13361;7;0.93454164;-0.3018379;0.18848273;0.0;0.3552884;0.8212702;-0.44641405;0.0;-0.020050582 +13361;0;-0.21009827;4.693985;8.536133 +13361;3;-0.048461914;0.0070648193;0.09715271 +13362;12;0.2134135;0.08445503;0.24301578;0.94247836 +13363;0;-0.21487427;4.712982;8.536133 +13363;1;-0.5265251;4.3658166;8.769181 +13364;3;-0.05090332;0.008285522;0.099594116 +13366;0;-0.20054626;4.703491;8.569519 +13366;12;0.21335034;0.0843793;0.24324952;0.94243914 +13366;3;-0.049682617;0.010726929;0.102645874 +13368;0;-0.22442627;4.6987305;8.559982 +13369;1;-0.5243801;4.3644567;8.769986 +13369;3;-0.05029297;0.012542725;0.103271484 +13370;4;14.292908;-1.4907837;-66.14685 +13370;6;-0.38837868;-0.5018674;0.026212072 +13371;7;0.92043173;-0.33199066;0.20636769;0.0;0.3902275;0.8113939;-0.43515792;0.0;-0.02297712 +13371;0;-0.24354553;4.7319946;8.540909 +13371;3;-0.05029297;0.013763428;0.10386658 +13372;12;0.21328087;0.084309235;0.24349603;0.94239753 +13373;0;-0.23876953;4.7414856;8.569519 +13373;1;-0.5223799;4.3631473;8.770757 +13373;2;-0.34468824;-0.3414359;0.21108341; +13375;3;-0.05029297;0.01499939;0.10571289 +13376;0;-0.26742554;4.7082367;8.569519 +13376;12;0.21320952;0.08424746;0.24374959;0.9423536 +13376;3;-0.049072266;0.01499939;0.1081543 +13378;0;-0.2722168;4.684494;8.540909 +13378;1;-0.5204309;4.361828;8.771529 +13378;3;-0.049072266;0.013763428;0.1081543 +13380;4;14.143372;-1.0406494;-63.597107 +13380;6;-0.38529643;-0.5014593;0.031861324 +13380;7;0.92046154;-0.32956195;0.21009429;0.0;0.38983378;0.81259525;-0.43326518;0.0;-0.027933896 +13380;0;-0.30085754;4.684494;8.555222 +13381;3;-0.05029297;0.008285522;0.10874939 +13381;12;0.21314031;0.08418289;0.24397825;0.9423158 +13382;0;-0.3056488;4.73674;8.569519 +13383;1;-0.51833284;4.3605227;8.772302 +13383;3;-0.052124023;0.0040130615;0.10997009 +13385;0;-0.28652954;4.712982;8.593384 +13385;12;0.2130718;0.08411712;0.24424087;0.94226915 +13386;3;-0.053955078;-0.0027160645;0.111206055 +13386;5;999.585 +13387;0;-0.25309753;4.7082367;8.602905 +13387;1;-0.51571023;4.3590636;8.773182 +13388;3;-0.052734375;-0.0069885254;0.11425781 +13390;4;14.593506;-0.440979;-63.29651 +13390;6;-0.39899665;-0.5005738;0.029411525 +13390;7;0.9155697;-0.3408286;0.21346627;0.0;0.40133077;0.80839586;-0.43061537;0.0;-0.025799224 +13391;0;-0.26742554;4.693985;8.6458435 +13391;3;-0.052734375;-0.011871338;0.115478516 +13391;12;0.21300034;0.08402183;0.24450429;0.94222546 +13392;0;-0.2960968;4.7082367;8.664902 +13393;1;-0.5125947;4.357582;8.7741 +13393;2;-0.27035296;-0.33549213;0.1731739; +13393;3;-0.05517578;-0.01737976;0.11791992 +13394;0;-0.25787354;4.670227;8.660141 +13395;12;0.21293455;0.08390245;0.24477197;0.9421816 +13395;3;-0.05458069;-0.024093628;0.11730957 +13397;0;-0.26264954;4.556198;8.626755 +13397;1;-0.5089245;4.355929;8.775134 +13397;3;-0.05458069;-0.030197144;0.11425781 +13399;4;13.392639;-1.0406494;-63.597107 +13399;6;-0.3767055;-0.4857199;0.030436521 +13400;7;0.9242248;-0.3253121;0.19995162;0.0;0.38089943;0.8223307;-0.42271498;0.0;-0.026912052 +13400;0;7.6293945E-5;4.4089203;8.6458435 +13400;3;-0.051513672;-0.047912598;0.08860779 +13400;12;0.21287447;0.08371367;0.24491644;0.9421743 +13402;0;0.09085083;4.437439;8.989227 +13402;1;-0.5044056;4.354016;8.776345 +13402;3;-0.04663086;-0.06562805;0.051330566 +13404;0;0.124298096;4.603714;9.14183 +13404;12;0.21280825;0.083503485;0.24514543;0.9421484 +13405;3;-0.0435791;-0.05769348;0.03729248 +13407;0;0.07652283;4.7462463;9.013062 +13407;1;-0.5000639;4.3524303;8.77738 +13407;3;-0.041137695;-0.039367676;0.04095459 +13409;4;12.643433;-0.14038086;-65.24658 +13409;6;-0.41167518;-0.48468286;-0.00849001 +13409;7;0.9180016;-0.35405752;0.1786514;0.0;0.39650556;0.81089747;-0.43038216;0.0;0.007512065 +13409;0;7.6293945E-5;4.803253;8.831833 +13409;3;-0.033813477;-0.020431519;0.05255127 +13410;12;0.21277754;0.08328656;0.24523027;0.94215244 +13411;0;-0.08590698;4.7652435;8.750748 +13412;1;-0.49720243;4.3514447;8.778031 +13412;2;-0.49803644;-0.261405;-0.062260628; +13412;3;-0.020965576;-0.009429932;0.06416321 +13414;0;-0.27697754;4.6797333;8.745987 +13414;12;0.21274526;0.08315932;0.24533184;0.9421446 +13414;3;-0.0063323975;-0.0082092285;0.07455444 +13416;0;-0.3390808;4.556198;8.78891 +13417;1;-0.49511066;4.3513374;8.778202 +13417;3;0.0071105957;-0.013702393;0.08187866 +13419;4;13.093567;-0.59051514;-63.146973 +13419;6;-0.35495076;-0.47795773;0.038561404 +13419;7;0.93080366;-0.3085971;0.19588858;0.0;0.36391306;0.8325855;-0.41757494;0.0;-0.034231585 +13419;0;-0.4202881;4.522949;8.898605 +13419;3;0.018722534;-0.023483276;0.0922699 +13420;12;0.21276413;0.083040565;0.24527031;0.94216675 +13421;0;-0.43463135;4.5894623;8.970154 +13422;1;-0.49240944;4.3522267;8.777914 +13422;3;0.026657104;-0.02897644;0.103271484 +13424;0;-0.45851135;4.703491;8.984451 +13424;3;0.034606934;-0.030807495;0.119155884 +13425;12;0.21283364;0.0829609;0.2454553;0.9421099 +13425;5;999.58044 +13426;0;-0.40119934;4.7747498;8.912918 +13426;1;-0.48873222;4.354101;8.777189 +13426;3;0.043151855;-0.033859253;0.13685608 +13428;4;14.442444;-0.59051514;-63.89618 +13428;6;-0.36871126;-0.4913856;0.044982877 +13428;7;0.9242018;-0.31776944;0.21183394;0.0;0.37984094;0.8224245;-0.42348415;0.0;-0.039647125 +13429;0;-0.36297607;4.8127594;8.946289 +13429;3;0.051101685;-0.039978027;0.14419556 +13431;12;0.21296386;0.08285307;0.24568585;0.94202983 +13431;0;-0.25787354;4.803253;9.08461 +13431;1;-0.48398966;4.356771;8.776127 +13431;2;-0.15547174;-0.31303692;-0.14791584; +13432;3;0.062088013;-0.04547119;0.14663696 +13434;0;-0.16233826;4.760498;9.170456 +13434;12;0.21313739;0.08271142;0.2459785;0.94192666 +13435;3;0.07064819;-0.046691895;0.14663696 +13435;1;-0.47849345;4.360166;8.774742 +13436;0;-0.138443;4.817505;9.203827 +13437;3;0.07736206;-0.04486084;0.14663696 +13438;9;2AEC2AEBC4E1;-62;-2147483648 +13439;4;13.693237;-0.29144287;-63.597107 +13439;6;-0.4097172;-0.48216435;0.01504076 +13439;7;0.9143517;-0.3529355;0.19848852;0.0;0.40470186;0.81266296;-0.41927987;0.0;-0.013325512 +13439;0;-0.10978699;4.8222656;9.208603 +13439;3;0.08468628;-0.039978027;0.14480591 +13439;12;0.21337105;0.08253055;0.24618803;0.9418349 +13441;0;-0.057235718;4.841263;9.151382 +13441;1;-0.47311962;4.364194;8.773031 +13444;3;0.091415405;-0.035705566;0.1429596 +13446;0;0.0048675537;4.874527;9.13707 +13446;12;0.21363015;0.08238429;0.24648514;0.9417113 +13446;3;0.09812927;-0.03263855;0.14051819 +13447;0;0.028747559;4.9220276;9.14183 +13448;1;-0.468049;4.368874;8.770973 +13448;3;0.10545349;-0.031417847;0.13563538 +13450;4;13.542175;-0.74157715;-64.19678 +13450;6;-0.4326472;-0.49389723;-0.0031446072 +13450;7;0.9084796;-0.36916882;0.19590634;0.0;0.41792017;0.7993627;-0.43169686;0.0;0.002768797 +13450;0;0.009643555;5.017044;9.13707 +13450;12;0.21392033;0.082266204;0.246775;0.9415798 +13451;1;-0.4632011;4.3742366;8.768558 +13452;3;0.111572266;-0.0332489;0.13258362 +13452;0;0.052627563;5.040802;9.146606 +13452;2;-0.458247;-0.50291777;-0.4007616; +13452;3;0.11645508;-0.03692627;0.12709045 +13453;12;0.21424341;0.0821632;0.24704616;0.94144416 +13453;0;0.08129883;5.097824;9.16568 +13453;3;0.12440491;-0.039367676;0.12159729 +13457;1;-0.45820722;4.380155;8.765865 +13457;0;0.1529541;5.173828;9.189545 +13457;3;0.13111877;-0.039367676;0.11669922 +13457;4;13.093567;0.009155273;-65.097046 +13457;6;-0.41897073;-0.51271945;-0.016642824 +13457;7;0.9167028;-0.35450888;0.18433498;0.0;0.39930642;0.79604346;-0.45482862;0.0;0.014502116 +13457;0;0.19593811;5.240341;9.232452 +13457;3;0.1378479;-0.039978027;0.11303711 +13458;12;0.21466;0.08190281;0.24662597;0.9414822 +13459;0;0.23416138;5.3163605;9.251541 +13459;1;-0.4532294;4.386738;8.762832 +13459;3;0.14273071;-0.038146973;0.1105957 +13464;0;0.26760864;5.3638763;9.323074 +13464;12;0.21505238;0.08180126;0.24684672;0.9413436 +13464;3;0.15007019;-0.0332489;0.1081543 +13464;5;999.58044 +13464;0;0.3058319;5.411377;9.375534 +13464;1;-0.4484511;4.393842;8.759518 +13464;3;0.1525116;-0.026535034;0.10752869 +13468;12;0.21546994;0.08171584;0.24705541;0.9412008 +13468;4;14.593506;-2.090454;-64.497375 +13468;6;-0.5053559;-0.5232414;-0.03260865 +13468;7;0.882424;-0.4193457;0.21325336;0.0;0.46960652;0.75793046;-0.4527815;0.0;0.02824074 +13468;0;0.3201599;5.468399;9.423233 +13474;3;0.1555481;-0.01675415;0.10571289 +13474;1;-0.44428265;4.40126;8.756005 +13474;2;-0.7229874;-0.90606594;-0.555748; +13475;12;0.21589465;0.081666656;0.24726392;0.9410529 +13475;1;-0.44124812;4.408628;8.752452 +13475;0;0.32492065;5.454132;9.4804535 +13475;3;0.1555481;-0.003326416;0.10752869 +13475;0;0.34883118;5.5253906;9.556763 +13475;3;0.15066528;0.016220093;0.1105957 +13475;0;0.2962799;5.558655;9.628311 +13475;3;0.14517212;0.036987305;0.11730957 +13476;4;14.292908;-0.440979;-64.497375 +13476;6;-0.4752255;-0.5233742;-0.030762034 +13476;7;0.8958024;-0.39629173;0.20122334;0.0;0.44365337;0.77016056;-0.45828414;0.0;0.026639957 +13476;0;0.26283264;5.5729218;9.59491 +13477;3;0.1390686;0.060195923;0.12097168 +13477;12;0.21630433;0.081673905;0.24745299;0.9409085 +13478;0;0.20072937;5.5966644;9.618759 +13479;1;-0.43987757;4.4155736;8.749019 +13479;3;0.13050842;0.0846405;0.1264801 +13481;0;0.1386261;5.6204224;9.647385 +13481;12;0.21666242;0.08177996;0.24772592;0.9407452 +13481;3;0.1219635;0.10723877;0.13441467 +13484;0;0.119506836;5.658432;9.714157 +13484;1;-0.4403733;4.4218745;8.745811 +13484;3;0.10913086;0.12983704;0.14173889 +13486;4;13.693237;-1.6403198;-63.597107 +13486;6;-0.44305247;-0.52741456;-0.012301717 +13486;7;0.9060331;-0.37044373;0.20463468;0.0;0.42307317;0.7806788;-0.45994502;0.0;0.010629782 +13486;0;0.071746826;5.6774445;9.795227 +13486;3;0.09263611;0.15428162;0.14968872 +13487;12;0.21695699;0.08198126;0.24805097;0.940574 +13488;0;7.6293945E-5;5.6631775;9.919235 +13488;1;-0.44260052;4.427098;8.743055 +13488;2;-0.66733956;-1.1750045;-0.9472389; +13489;3;0.0743103;0.17932129;0.15762329 +13490;0;-0.10499573;5.6869354;10.000305 +13491;12;0.21716437;0.08227155;0.24844024;0.94039816 +13491;3;0.05293274;0.20314026;0.16252136 +13493;0;-0.18144226;5.701187;10.014618 +13493;1;-0.4467655;4.4306965;8.74102 +13493;3;0.02909851;0.22880554;0.16801453 +13495;4;13.392639;-0.59051514;-63.146973 +13495;6;-0.37801653;-0.51745933;0.01811576 +13495;7;0.92593867;-0.32075763;0.19937892;0.0;0.37734544;0.8077205;-0.45298776;0.0;-0.015743162 +13495;0;-0.3152008;5.715439;10.019394 +13496;3;3.9672852E-4;0.25079346;0.17228699 +13496;12;0.21727154;0.082616255;0.24873832;0.9402643 +13497;0;-0.47283936;5.644165;10.057541 +13498;1;-0.453033;4.432236;8.739917 +13498;3;-0.027694702;0.2672882;0.17411804 +13500;0;-0.65437317;5.639435;10.062302 +13500;12;0.21722053;0.08308625;0.24924167;0.9401013 +13501;3;-0.057632446;0.27644348;0.1747284 +13501;5;999.58044 +13502;0;-0.7738037;5.5919037;10.043243 +13502;1;-0.46091735;4.4313135;8.739973 +13503;3;-0.09121704;0.2788849;0.17228699 +13505;4;14.143372;-1.6403198;-63.146973 +13505;6;-0.3024071;-0.5067789;0.076895274 +13505;7;0.9406972;-0.26038682;0.21745694;0.0;0.3325324;0.8346383;-0.43909144;0.0;-0.067164265 +13505;0;-0.835907;5.5301514;10.028931 +13505;3;-0.12605286;0.27583313;0.16923523 +13506;12;0.21701634;0.08360364;0.24977973;0.9399598 +13508;0;-0.9553375;5.444641;10.062302 +13508;1;-0.46931946;4.427511;8.741453 +13508;3;-0.16392517;0.2648468;0.16923523 +13508;2;0.0227077;-1.1855907;-1.3002434; +13510;0;-1.0365448;5.4018707;10.129074 +13511;12;0.21665016;0.08410305;0.25032356;0.93985504 +13512;3;-0.20301819;0.24957275;0.16740417 +13512;1;-0.47712177;4.4203925;8.744632 +13513;0;-1.0986481;5.3163605;10.234009 +13513;3;-0.24272156;0.23002625;0.16740417 +13514;4;13.093567;-0.29144287;-64.34631 +13515;6;-0.20391336;-0.47676972;0.10694309 +13515;7;0.9637676;-0.17992039;0.19692804;0.0;0.2493153;0.870074;-0.42522115;0.0;-0.09483599 +13515;0;-1.2037506;5.2355957;10.310318 +13515;3;-0.28242493;0.20863342;0.16557312 +13515;12;0.21621735;0.084261425;0.24975446;0.9400919 +13517;0;-1.2658386;5.154831;10.367554 +13517;1;-0.48356482;4.4097395;8.749655 +13518;3;-0.32214355;0.1842041;0.16313171 +13519;0;-1.3183899;5.0883026;10.3246155 +13520;12;0.21551791;0.08454877;0.25028703;0.9400852 +13520;3;-0.35694885;0.15550232;0.16191101 +13522;0;-1.3566132;5.0360413;10.3198395 +13522;3;-0.38627625;0.12432861;0.1582489 +13522;1;-0.48815525;4.395745;8.75644 +13524;4;14.743042;0.009155273;-64.64691 +13524;6;-0.21203904;-0.45063096;0.13070732 +13524;7;0.95731837;-0.18944466;0.21829426;0.0;0.2641527;0.88001215;-0.3947178;0.0;-0.11732441 +13524;0;-1.3900452;4.9315186;10.353241 +13525;3;-0.41131592;0.09135437;0.15762329 +13525;12;0.21466778;0.0846832;0.25079972;0.94013083 +13527;0;-1.3996124;4.9030304;10.381866 +13527;1;-0.49032372;4.379107;8.764651 +13527;2;0.72548765;-0.74788046;-1.5436535; +13527;3;-0.43086243;0.053482056;0.15457153 +13529;0;-1.4043732;4.817505;10.420013 +13529;12;0.21371429;0.08464391;0.2512821;0.9402228 +13530;3;-0.44369507;0.018661499;0.15151978 +13532;0;-1.3613892;4.750992;10.505859 +13532;1;-0.48957986;4.360681;8.773875 +13532;3;-0.44981384;-0.01675415;0.14846802 +13534;4;12.792969;-0.29144287;-65.84625 +13534;6;-0.15450276;-0.42158365;0.12886569 +13534;7;0.9718027;-0.14041461;0.18942861;0.0;0.20457318;0.9015732;-0.3812028;0.0;-0.11725731 +13534;0;-1.3470612;4.703491;10.582169 +13534;3;-0.45347595;-0.0491333;0.14541626 +13535;12;0.21289718;0.08394864;0.24966015;0.94090235 +13536;0;-1.2706299;4.660721;10.606003 +13536;1;-0.48598483;4.34149;8.7835865 +13536;3;-0.44796753;-0.07662964;0.1411438 +13538;0;-1.2324066;4.627472;10.677551 +13539;12;0.21189584;0.08355492;0.25005853;0.9410576 +13539;3;-0.43759155;-0.10166931;0.13748169 +13539;5;999.58044 +13541;0;-1.1416473;4.5894623;10.706177 +13541;1;-0.48005363;4.3225474;8.79325 +13541;3;-0.4223175;-0.12487793;0.13197327 +13543;4;13.842773;-0.440979;-65.24658 +13543;6;-0.2612237;-0.40293542;0.106233016 +13543;7;0.9498905;-0.23757969;0.20313536;0.0;0.2969743;0.8887056;-0.3492975;0.0;-0.097541526 +13544;0;-1.1225281;4.560959;10.768173 +13544;3;-0.402771;-0.14138794;0.12585449 +13545;12;0.21094385;0.08303592;0.25041085;0.94122374 +13546;9;2AEC2AEBC4E1;-68;-2147483648 +13549;0;-1.0413208;4.4754486;10.80632 +13549;1;-0.47237593;4.304732;8.802401 +13549;2;0.7266279;-0.33565378;-1.8377914; +13549;3;-0.37649536;-0.15603638;0.12219238 +13549;0;-1.0269775;4.437439;10.83017 +13549;12;0.21007933;0.082434155;0.25071275;0.9413896 +13549;3;-0.34657288;-0.16581726;0.11791992 +13551;1;-0.4636387;4.288936;8.810572 +13551;0;-0.98876953;4.404175;10.849258 +13552;3;-0.31297302;-0.17253113;0.11364746 +13553;4;15.342712;0.30975342;-66.29639 +13553;6;-0.34772643;-0.38417944;0.09088598 +13553;7;0.9246779;-0.3159218;0.21251853;0.0;0.37133586;0.8716188;-0.31998464;0.0;-0.08414501 +13553;0;-0.90756226;4.3851776;10.820633 +13553;3;-0.2775421;-0.17741394;0.1105957 +13554;12;0.20934525;0.08179499;0.25094897;0.94154596 +13556;0;-0.89323425;4.3376617;10.825394 +13556;3;-0.2384491;-0.17985535;0.1081543 +13557;1;-0.45430493;4.2757936;8.817443 +13558;0;-0.874115;4.3186646;10.844482 +13558;12;0.20876028;0.08116544;0.2511717;0.9416709 +13558;3;-0.19813538;-0.17985535;0.10508728 +13560;1;-0.44489303;4.265898;8.822715 +13561;0;-0.8215637;4.2711487;10.844482 +13561;3;-0.15904236;-0.17803955;0.103271484 +13563;4;13.093567;-0.29144287;-65.54718 +13563;6;-0.3258875;-0.37422276;0.07561425 +13563;7;0.9358192;-0.2979928;0.18826225;0.0;0.3453959;0.8818016;-0.32113487;0.0;-0.070314094 +13563;0;-0.74513245;4.2283936;10.80632 +13563;3;-0.11993408;-0.17253113;0.10205078 +13564;12;0.20835224;0.080572285;0.25136435;0.94176084 +13565;2;0.39641687;-0.05314064;-2.0094233; +13565;1;-0.43564036;4.25926;8.826383 +13565;0;-0.72125244;4.1951294;10.811081 +13565;3;-0.081451416;-0.16459656;0.103271484 +13567;0;-0.68782043;4.1951294;10.839706 +13568;12;0.20811696;0.08003452;0.251536;0.9418129 +13568;3;-0.044799805;-0.15420532;0.10386658 +13570;0;-0.62094116;4.142868;10.80632 +13570;1;-0.4269613;4.2558064;8.828472 +13571;3;-0.008773804;-0.13954163;0.106933594 +13572;4;14.442444;0.009155273;-64.64691 +13572;6;-0.42964014;-0.36554185;0.057397813 +13572;7;0.899077;-0.3890227;0.20080319;0.0;0.4344999;0.8490506;-0.30053762;0.0;-0.053576116 +13572;0;-0.5636139;4.0811005;10.820633 +13572;3;0.023605347;-0.12243652;0.10874939 +13573;12;0.20804454;0.07956553;0.2516773;0.9418309 +13574;0;-0.47763062;4.085861;10.739548 +13575;3;0.054763794;-0.10411072;0.11364746 +13575;1;-0.41925544;4.255276;8.829097 +13577;0;-0.48239136;4.019348;10.701401 +13577;12;0.2081125;0.07920133;0.25185734;0.94179845 +13578;3;0.08468628;-0.082733154;0.11791992 +13578;5;999.59766 +13579;0;-0.41552734;3.9955902;10.7109375 +13579;1;-0.4129055;4.2573433;8.8284 +13580;3;0.11340332;-0.063186646;0.12281799 +13582;4;13.693237;0.7598877;-65.54718 +13582;6;-0.43825477;-0.35680357;0.03877523 +13582;7;0.89906716;-0.3976328;0.18321131;0.0;0.43630123;0.8484639;-0.29958338;0.0;-0.036323987 +13582;0;-0.39163208;3.952835;10.596466 +13582;3;0.1378479;-0.04486084;0.12892151 +13582;12;0.2082979;0.07895098;0.25206318;0.9417234 +13584;2;0.04924512;0.2272048;-1.8975973; +13585;1;-0.40792933;4.261763;8.826499 +13586;0;-0.3390808;3.9005737;10.515396 +13586;3;0.16349792;-0.027145386;0.13441467 +13587;0;-0.29130554;3.862564;10.467697 +13591;1;-0.40418947;4.268302;8.82351 +13592;12;0.20858648;0.07881331;0.25230196;0.9416071 +13592;3;0.1885376;-0.007598877;0.1399231 +13592;0;-0.29130554;3.8578186;10.396164 +13592;3;0.21298218;0.007659912;0.14419556 +13592;4;14.292908;0.45928955;-63.29651 +13592;6;-0.5061847;-0.35520244;0.028013153 +13592;7;0.8695346;-0.45457807;0.19305006;0.0;0.4931733;0.8200047;-0.29046923;0.0;-0.02626103 +13592;0;-0.25309753;3.8103027;10.276932 +13592;3;0.23802185;0.020492554;0.14785767 +13592;12;0.20897129;0.07877557;0.2525502;0.94145834 +13593;0;-0.22442627;3.8007965;10.205383 +13594;1;-0.40153846;4.276952;8.819443 +13594;3;0.26367188;0.032104492;0.15090942 +13596;0;-0.28652954;3.796051;10.114777 +13596;12;0.20944907;0.078839675;0.25285012;0.9412663 +13596;3;0.2911682;0.03942871;0.15274048 +13598;1;-0.3997566;4.287835;8.814237 +13598;0;-0.3056488;3.7817993;10.009842 +13598;3;0.31498718;0.044311523;0.14846802 +13600;4;15.04364;0.009155273;-64.34631 +13600;6;-0.5188595;-0.36107627;0.030525343 +13601;7;0.8626338;-0.46391362;0.20161071;0.0;0.5050222;0.81238925;-0.29150647;0.0;-0.028552547 +13601;0;-0.3152008;3.7675476;9.876312 +13601;3;0.34126282;0.049209595;0.14480591 +13601;12;0.2100332;0.07898561;0.25316307;0.94103974 +13603;0;-0.3390808;3.7580414;9.752304 +13603;1;-0.39858633;4.3008966;8.807924 +13603;2;-0.15066364;0.5109763;-1.3384886; +13603;3;0.3675232;0.04737854;0.1387024 +13605;0;-0.3199768;3.7247925;9.656921 +13606;12;0.21072559;0.07919208;0.25345966;0.94078773 +13606;3;0.39624023;0.044311523;0.13319397 +13608;0;-0.3104248;3.70578;9.566299 +13608;1;-0.3975805;4.316206;8.800478 +13608;3;0.42311096;0.03942871;0.12219238 +13610;4;13.542175;-1.1901855;-63.746643 +13610;6;-0.4795239;-0.36940157;0.03243845 +13611;7;0.8813454;-0.4302354;0.1952635;0.0;0.47150356;0.8273664;-0.30520386;0.0;-0.030244963 +13615;0;-0.3104248;3.729538;9.4423065 +13615;3;0.44877625;0.032104492;0.11303711 +13615;12;0.21154404;0.07942237;0.25366825;0.9405284 +13615;0;-0.26264954;3.7342834;9.327835 +13615;1;-0.3964883;4.333837;8.791858 +13615;3;0.47381592;0.024154663;0.10386658 +13615;0;-0.26264954;3.6772919;9.222916 +13615;12;0.21248555;0.07968255;0.25387347;0.9402388 +13616;3;0.4994812;0.017440796;0.095321655 +13616;5;999.59766 +13617;0;-0.23876953;3.639267;9.127518 +13617;1;-0.39509037;4.3535347;8.782184 +13618;3;0.5239105;0.010726929;0.08616638 +13620;4;13.392639;-0.59051514;-63.89618 +13620;6;-0.4671478;-0.37927943;0.026153343 +13620;7;0.88819075;-0.41833648;0.19003095;0.0;0.45883232;0.82940257;-0.31869152;0.0;-0.024291899 +13620;0;-0.22921753;3.615509;9.065521 +13620;3;0.5452881;0.007659912;0.07821655 +13621;12;0.21354531;0.07994693;0.25402096;0.93993634 +13622;0;-0.19099426;3.6440125;8.955841 +13623;1;-0.393509;4.375207;8.771478 +13623;2;-0.16854066;0.7077842;-0.5342884; +13623;3;0.56484985;0.0052337646;0.06965637 +13625;0;-0.16711426;3.639267;8.850922 +13625;12;0.21472068;0.08022129;0.25411433;0.9396199 +13625;3;0.58377075;0.0046081543;0.06355286 +13627;0;-0.157547;3.606018;8.741211 +13627;1;-0.39199835;4.398706;8.759785 +13627;3;0.60150146;0.0052337646;0.05744934 +13630;4;13.842773;-2.090454;-65.69672 +13630;6;-0.49925607;-0.3912046;0.018021524 +13630;7;0.87450665;-0.44260147;0.19834834;0.0;0.48472735;0.81161106;-0.32607803;0.0;-0.016659103 +13641;12;0.21599984;0.08050555;0.254105;0.9393048 +13642;1;-0.39071885;4.423503;8.747346 +13643;12;0.2173441;0.08082874;0.25411946;0.9389631 +13644;9;52ADB5BC186F;-91;-2147483648 +13645;12;0.21875454;0.08118113;0.2541052;0.93860894 +13645;0;-0.138443;3.615509;8.65538 +13645;2;-0.30272892;0.88447046;0.21412563; +13645;1;-0.3897299;4.449536;8.734178 +13645;1;-0.38916618;4.476805;8.720257 +13645;3;0.61676025;0.005844116;0.051330566 +13645;12;0.22022584;0.08157182;0.25407827;0.9382382 +13645;0;-0.10499573;3.5965118;8.531357 +13645;3;0.6320343;0.0070648193;0.046447754 +13645;0;-0.11933899;3.6012573;8.431213 +13645;3;0.6454773;0.008285522;0.04156494 +13645;0;-0.100234985;3.5870209;8.35968 +13645;3;0.66075134;0.012542725;0.039733887 +13645;4;13.842773;-0.74157715;-64.497375 +13645;6;-0.48476097;-0.4053003;0.011989715 +13645;7;0.8825199;-0.42824373;0.194335;0.0;0.47014612;0.8131046;-0.34325454;0.0;-0.011018093 +13645;0;-0.11456299;3.6202698;8.2165985 +13645;3;0.6735687;0.018051147;0.039123535 +13645;0;-0.11933899;3.615509;8.173676 +13646;3;0.68640137;0.025985718;0.037902832 +13646;0;-0.10499573;3.6345215;8.111679 +13646;3;0.69677734;0.03149414;0.036071777 +13647;1;-0.38919696;4.5050974;8.705672 +13647;0;-0.10978699;3.6487732;8.054443 +13647;3;0.7041168;0.03881836;0.035461426 +13648;4;14.442444;-2.6901245;-65.84625 +13648;6;-0.49990064;-0.42532235;0.013629767 +13648;7;0.87485313;-0.43663207;0.20972508;0.0;0.4842293;0.7994384;-0.35555622;0.0;-0.012415048 +13649;0;-0.11456299;3.6677704;8.011505 +13650;12;0.2217481;0.082003795;0.25402182;0.9378572 +13650;3;0.70777893;0.04309082;0.034240723 +13651;0;-0.10978699;3.7010345;7.997223 +13651;1;-0.3897831;4.5339937;8.690632 +13651;3;0.70777893;0.04675293;0.034240723 +13653;0;-0.10978699;3.7342834;7.9208984 +13654;12;0.2232955;0.08248002;0.25398895;0.93745714 +13654;3;0.70840454;0.053482056;0.03729248 +13654;5;999.59766 +13656;0;-0.11933899;3.729538;7.76828 +13656;1;-0.3907276;4.563042;8.675372 +13656;3;0.70777893;0.05836487;0.039733887 +13658;4;14.593506;-1.1901855;-63.746643 +13658;6;-0.47288463;-0.4475538;0.015361135 +13658;7;0.88712555;-0.41059765;0.21075556;0.0;0.4613205;0.8025753;-0.37822804;0.0;-0.013847648 +13658;0;-0.147995;3.7200317;7.7253723 +13658;3;0.7016754;0.062026978;0.04034424 +13659;12;0.22484578;0.08298093;0.2539612;0.9370498 +13662;1;-0.39209035;4.5919056;8.6600685 +13662;0;-0.21009827;3.7010345;7.7444305 +13662;3;0.69252014;0.062026978;0.043395996 +13662;2;-0.30562446;0.91846466;0.7314062; +13663;9;2AEC2AEBC4E1;-72;-2147483648 +13664;0;-0.23876953;3.7628021;7.7492065 +13664;3;0.6784668;0.060195923;0.04888916 +13664;12;0.22637978;0.08350582;0.253947;0.9366376 +13665;0;-0.23399353;3.8007965;7.7205963 +13666;1;-0.3934339;4.6199822;8.6450615 +13666;3;0.66075134;0.061416626;0.051330566 +13668;4;15.04364;-1.0406494;-64.34631 +13668;6;-0.4418853;-0.45728123;0.030298429 +13668;7;0.8978124;-0.38370657;0.21610674;0.0;0.43953842;0.811072;-0.3859638;0.0;-0.027181292 +13668;0;-0.20054626;3.8197937;7.7158203 +13668;3;0.63874817;0.061416626;0.05744934 +13669;12;0.2278769;0.08401178;0.25392357;0.93623555 +13670;0;-0.21966553;3.8530579;7.6204376 +13671;1;-0.39455485;4.6466217;8.63072 +13671;3;0.61553955;0.06324768;0.062332153 +13672;0;-0.23876953;3.8815765;7.606125 +13673;12;0.22929683;0.08450106;0.25395128;0.9358372 +13673;3;0.59477234;0.064468384;0.06906128 +13675;0;-0.21487427;3.9100647;7.5441284 +13675;1;-0.39554068;4.6714945;8.617239 +13675;3;0.56973267;0.060806274;0.07272339 +13678;4;12.792969;-2.6901245;-63.89618 +13678;6;-0.38382182;-0.4780086;0.02847462 +13678;7;0.92196006;-0.33249396;0.19858865;0.0;0.38645908;0.82330847;-0.4157073;0.0;-0.025279561 +13678;0;-0.25309753;3.9813385;7.553665 +13679;3;0.54467773;0.060195923;0.08126831 +13679;12;0.23062198;0.08496445;0.25401372;0.93545264 +13680;0;-0.22921753;4.019348;7.505966 +13680;1;-0.39614475;4.6945;8.604699 +13680;2;-0.20958182;0.8349428;0.96524143; +13680;3;0.51597595;0.057754517;0.08860779 +13682;0;-0.25309753;4.009842;7.5393524 +13682;12;0.23184681;0.08538643;0.25410855;0.93508565 +13683;3;0.4872589;0.056533813;0.095321655 +13684;0;-0.24832153;4.043091;7.525055 +13685;1;-0.39627597;4.7152147;8.59336 +13685;3;0.45487976;0.052261353;0.10508728 +13687;4;13.243103;-1.4907837;-64.94751 +13687;6;-0.35855603;-0.49280113;0.032987326 +13687;7;0.9304196;-0.3091666;0.19681345;0.0;0.36534262;0.8249829;-0.43119398;0.0;-0.029056933 +13687;0;-0.24832153;4.0478516;7.563202 +13687;3;0.42251587;0.049819946;0.111816406 +13688;12;0.2330688;0.08544542;0.25299308;0.93507886 +13689;0;-0.25309753;4.11911;7.5727386 +13689;1;-0.3957691;4.733367;8.583398 +13690;3;0.38952637;0.046157837;0.12037659 +13692;0;-0.23876953;4.180893;7.505966 +13692;12;0.23404486;0.08575697;0.25317666;0.9347568 +13692;3;0.35531616;0.04309082;0.12709045 +13693;5;999.59766 +13694;0;-0.26264954;4.199875;7.4916687 +13694;1;-0.39464277;4.7489576;8.574833 +13694;3;0.3204956;0.038208008;0.13380432 +13696;4;12.792969;-2.6901245;-64.34631 +13696;6;-0.34498706;-0.51068765;0.03504453 +13696;7;0.93471044;-0.29503506;0.19816834;0.0;0.35409325;0.8210061;-0.44784692;0.0;-0.030566892 +13697;0;-0.2960968;4.214142;7.520279 +13697;3;0.2826233;0.030273438;0.14051819 +13697;12;0.23488209;0.086009055;0.25340334;0.93446225 +13699;0;-0.3295288;4.233139;7.5870514 +13699;1;-0.3928596;4.7617126;8.567839 +13700;2;-0.16880107;0.6497431;1.0170431; +13700;3;0.24290466;0.020492554;0.14541626 +13701;0;-0.3438568;4.2616425;7.6681366 +13702;12;0.23557071;0.0861914;0.25366947;0.93419987 +13702;3;0.20075989;0.012542725;0.15213013 +13704;0;-0.3199768;4.275894;7.730133 +13704;1;-0.39011183;4.7710714;8.562757 +13704;3;0.15922546;0.0052337646;0.158844 +13706;4;12.792969;-2.6901245;-64.34631 +13706;6;-0.3357767;-0.50489306;0.041369822 +13706;7;0.936755;-0.2883893;0.198297;0.0;0.34810892;0.8263489;-0.4426824;0.0;-0.036197625 +13707;0;-0.3343048;4.2473907;7.7492065 +13707;12;0.23621725;0.08592341;0.25257805;0.93435705 +13707;3;0.115234375;3.5095215E-4;0.16435242 +13709;0;-0.3343048;4.275894;7.777817 +13709;1;-0.38650706;4.7769184;8.55966 +13709;3;0.07247925;-0.0069885254;0.17106628 +13711;0;-0.3534088;4.3281555;7.811203 +13711;12;0.23655455;0.08591919;0.25291356;0.9341812 +13712;3;0.03277588;-0.014312744;0.17901611 +13713;0;-0.39640808;4.3186646;7.882736 +13714;1;-0.3821017;4.7793303;8.558511 +13714;3;-0.0093688965;-0.021652222;0.18511963 +13716;4;12.792969;-2.241516;-63.146973 +13716;6;-0.32385346;-0.50066954;0.050245803 +13716;7;0.93914795;-0.27916393;0.20017175;0.0;0.34067568;0.831658;-0.43850324;0.0;-0.044060156 +13716;0;-0.38685608;4.356659;7.9638214 +13716;3;-0.04724121;-0.027755737;0.19244385 +13717;12;0.2367107;0.08582842;0.25328827;0.9340486 +13719;0;-0.40119934;4.3994293;8.001968 +13719;1;-0.37683165;4.7784214;8.559252 +13719;2;-0.060017437;0.48966122;0.72341156; +13719;3;-0.084503174;-0.033859253;0.19795227 +13721;0;-0.40596008;4.3994293;8.106903 +13721;12;0.2366964;0.08564984;0.25370213;0.93395627 +13721;3;-0.11932373;-0.03753662;0.20527649 +13724;0;-0.4202881;4.404175;8.192749 +13724;1;-0.37080634;4.7744174;8.561749 +13724;3;-0.15353394;-0.04119873;0.21321106 +13726;4;12.792969;-2.241516;-63.146973 +13726;6;-0.32662126;-0.49270198;0.051255077 +13726;7;0.9381129;-0.28268287;0.20008697;0.0;0.3433757;0.83447814;-0.4309751;0.0;-0.045138925 +13726;0;-0.41073608;4.44693;8.283371 +13726;3;-0.18530273;-0.04486084;0.21994019 +13727;12;0.23659971;0.08518065;0.2533246;0.9341261 +13728;0;-0.44418335;4.4184265;8.364441 +13728;1;-0.36420068;4.7676253;8.565817 +13728;3;-0.21707153;-0.04425049;0.22665405 +13731;0;-0.5206146;4.3376617;8.474136 +13732;12;0.23627445;0.0848607;0.25381863;0.9341034 +13733;1;-0.35750952;4.75803;8.571432 +13733;3;-0.24821472;-0.043029785;0.23031616 +13733;5;999.59894 +13733;0;-0.62094116;4.3281555;8.579071 +13734;3;-0.2775421;-0.04486084;0.23338318 +13735;4;14.743042;-3.2913208;-65.54718 +13735;6;-0.3547331;-0.46619263;0.07225261 +13735;7;0.92402196;-0.3102741;0.2234132;0.0;0.37686205;0.83766943;-0.39532888;0.0;-0.06448611 +13735;0;-0.65914917;4.3091583;8.6458435 +13735;3;-0.30441284;-0.04547119;0.23338318 +13736;12;0.23580079;0.08450139;0.25434968;0.9341113 +13737;0;-0.65437317;4.3186646;8.726913 +13738;1;-0.35077277;4.7459373;8.578412 +13738;3;-0.32946777;-0.046691895;0.23643494 +13738;2;0.12492013;0.39572525;0.14378166; +13740;0;-0.6687012;4.2711487;8.745987 +13740;3;-0.350235;-0.046691895;0.23826599 +13741;12;0.23519441;0.08410031;0.25490242;0.9341497 +13742;0;-0.64004517;4.223633;8.879532 +13742;1;-0.34389472;4.731702;8.58655 +13743;3;-0.3685608;-0.04852295;0.2394867 +13745;4;14.743042;-3.2913208;-65.54718 +13745;6;-0.3734178;-0.44298196;0.07195651 +13745;7;0.91743475;-0.32958847;0.22290142;0.0;0.39254868;0.8412153;-0.3718367;0.0;-0.064955 +13745;0;-0.6495819;4.2426453;8.970154 +13745;3;-0.38627625;-0.049743652;0.2394867 +13746;12;0.2344755;0.083654374;0.25545195;0.93422025 +13747;0;-0.65437317;4.1618805;9.079834 +13748;3;-0.4015503;-0.0491333;0.2419281 +13748;1;-0.33687425;4.7157664;8.59559 +13750;0;-0.69737244;4.1618805;9.108459 +13750;12;0.23366517;0.08318361;0.256034;0.9343061 +13750;3;-0.41438293;-0.0491333;0.2443695 +13754;9;2AEC2AEBC4E1;-67;-2147483648 +13756;0;-0.71647644;4.109619;9.179993 +13756;3;-0.42414856;-0.049743652;0.24620056 +13756;1;-0.3298648;4.6984444;8.605343 +13756;12;0.23278053;0.082692154;0.25662985;0.934407 +13756;4;13.093567;-2.241516;-65.097046 +13756;6;-0.31140143;-0.41978446;0.0778897 +13756;7;0.9393025;-0.279791;0.1985647;0.0;0.33565176;0.8692578;-0.36294493;0.0;-0.07105518 +13757;0;-0.70692444;4.0383606;9.227692 +13757;3;-0.43515015;-0.051574707;0.24559021 +13757;0;-0.67349243;4.052597;9.242004 +13757;3;-0.44491577;-0.05647278;0.2443695 +13758;2;0.31290662;0.5445142;-0.45228004; +13758;1;-0.3227325;4.6800876;8.615609 +13759;0;-0.71170044;3.9908295;9.265839 +13760;12;0.23184605;0.08218054;0.25723544;0.9345179 +13760;3;-0.45162964;-0.063186646;0.2443695 +13764;0;-0.69737244;3.9908295;9.323074 +13764;1;-0.31530172;4.6608686;8.626297 +13764;3;-0.45469666;-0.06990051;0.2419281 +13765;4;13.093567;-2.241516;-65.097046 +13765;6;-0.3317551;-0.40345082;0.07466166 +13765;7;0.93330014;-0.2995528;0.19803788;0.0;0.35248324;0.8695618;-0.3458581;0.0;-0.06860342 +13765;0;-0.6925812;3.9433289;9.394608 +13765;3;-0.4577484;-0.07785034;0.23826599 +13765;12;0.23090945;0.08153037;0.2574088;0.93475896 +13766;0;-0.6687012;3.8910675;9.413681 +13767;1;-0.30737758;4.6411786;8.637193 +13767;3;-0.4577484;-0.08456421;0.23519897 +13769;12;0.22992073;0.08094728;0.2579946;0.9348919 +13770;0;-0.5827179;3.9053192;9.466141 +13770;3;-0.45591736;-0.090667725;0.23153687 +13770;5;999.59894 +13771;0;-0.57315063;3.8578186;9.523392 +13771;1;-0.2989232;4.6213694;8.648104 +13772;3;-0.45103455;-0.0967865;0.2284851 +13773;4;13.842773;-2.5405884;-63.746643 +13773;6;-0.42945784;-0.3842568;0.060110953 +13773;7;0.89817256;-0.3860145;0.21042526;0.0;0.43610105;0.8428908;-0.3151995;0.0;-0.055693943 +13774;0;-0.5110626;3.862564;9.552002 +13774;3;-0.44491577;-0.10105896;0.22299194 +13774;12;0.22893567;0.08033088;0.25855893;0.93503094 +13776;0;-0.57315063;3.8007965;9.547226 +13776;1;-0.29009116;4.6017156;8.658878 +13776;2;0.2970211;0.7213435;-0.79157543; +13776;3;-0.43759155;-0.106552124;0.22055054 +13778;0;-0.57315063;3.7865448;9.561539 +13778;12;0.22796692;0.07969628;0.25910085;0.9351719 +13779;3;-0.4259796;-0.11450195;0.21321106 +13780;0;-0.5827179;3.7580414;9.523392 +13781;1;-0.28110728;4.5827684;8.669217 +13781;3;-0.41070557;-0.12609863;0.20588684 +13785;4;13.093567;-1.6403198;-64.64691 +13785;6;-0.38646534;-0.37521508;0.061111875 +13785;7;0.9160819;-0.35069424;0.1944413;0.0;0.3969443;0.8618069;-0.3157908;0.0;-0.056824863 +13785;0;-0.5110626;3.7580414;9.494766 +13785;3;-0.3929901;-0.13710022;0.19917297 +13786;12;0.22706926;0.07898793;0.2593407;0.9353838 +13786;1;-0.271451;4.565022;8.678883 +13786;0;-0.4298401;3.7152863;9.499542 +13786;3;-0.3734436;-0.15115356;0.1942749 +13789;0;-0.39640808;3.7200317;9.513855 +13789;12;0.22622572;0.07831692;0.2598021;0.93551666 +13789;3;-0.34840393;-0.1639862;0.18939209 +13791;0;-0.36297607;3.7628021;9.509079 +13791;1;-0.26085168;4.548957;8.687638 +13792;3;-0.32151794;-0.17314148;0.18389893 +13793;4;13.093567;-0.59051514;-63.89618 +13793;6;-0.4316681;-0.3765504;0.038153008 +13793;7;0.90173984;-0.38907376;0.1883797;0.0;0.43082142;0.84463453;-0.31778207;0.0;-0.035471346 +13793;0;-0.32476807;3.796051;9.513855 +13793;3;-0.29464722;-0.17863464;0.18084717 +13794;12;0.22549248;0.077616826;0.26021805;0.9356364 +13795;0;-0.2817688;3.8293152;9.504303 +13795;1;-0.24961627;4.535155;8.695181 +13795;2;0.14458048;0.7972436;-0.83562946; +13796;3;-0.26531982;-0.18292236;0.17533875 +13798;0;-0.24832153;3.8530579;9.470917 +13798;12;0.22489233;0.07691129;0.26059344;0.93573457 +13798;3;-0.23110962;-0.18536377;0.16923523 +13800;0;-0.21487427;3.8340607;9.375534 +13800;1;-0.23818354;4.5239034;8.701361 +13801;3;-0.19996643;-0.18719482;0.16252136 +13802;4;13.093567;-1.3412476;-63.597107 +13802;6;-0.46944085;-0.38810018;0.022914605 +13802;7;0.8876647;-0.41874346;0.19158632;0.0;0.46000177;0.8254963;-0.3270385;0.0;-0.021208582 +13802;0;-0.17666626;3.8958282;9.337372 +13802;3;-0.16697693;-0.18780518;0.1570282 +13803;12;0.22444373;0.07620292;0.26082537;0.9358356 +13804;0;-0.143219;3.9005737;9.270599 +13805;1;-0.22680691;4.515448;8.706055 +13805;3;-0.13459778;-0.18658447;0.15151978 +13807;0;-0.13366699;3.9243164;9.251541 +13807;3;-0.10282898;-0.18414307;0.1435852 +13807;12;0.22413653;0.0755589;0.26112136;0.935879 +13808;5;999.59894 +13809;0;-0.095443726;3.9908295;9.222916 +13810;1;-0.21574003;4.5097723;8.709278 +13810;3;-0.072906494;-0.17985535;0.1387024 +13812;4;12.792969;-1.940918;-65.54718 +13812;6;-0.4624774;-0.4083617;0.010348172 +13812;7;0.8930686;-0.4094795;0.18642701;0.0;0.44982028;0.8213605;-0.3507543;0.0;-0.0094971 +13812;0;-0.038131714;4.057358;9.170456 +13812;3;-0.044189453;-0.17497253;0.13258362 +13813;12;0.22397906;0.07496582;0.26137954;0.9358922 +13814;0;-0.023803711;4.1048584;9.132294 +13814;1;-0.20516445;4.50677;8.711087 +13814;2;-0.10972394;0.59152603;-0.5843725; +13815;3;-0.019744873;-0.16520691;0.12585449 +13817;0;0.028747559;4.133362;9.065521 +13817;12;0.2239573;0.07443375;0.26160473;0.93587697 +13817;3;0.0034484863;-0.15727234;0.12097168 +13819;0;-0.009475708;4.233139;8.998749 +13820;1;-0.19548634;4.5060244;8.711695 +13820;3;0.024215698;-0.1468811;0.11608887 +13821;4;11.8927;-0.74157715;-63.746643 +13821;6;-0.4201626;-0.4396999;0.0010530024 +13821;7;0.91283923;-0.36910838;0.17459503;0.0;0.40831792;0.8261754;-0.38821468;0.0;-9.5284014E-4 +13822;0;-0.028564453;4.2378845;8.941528 +13822;3;0.040100098;-0.13526917;0.1105957 +13822;12;0.22413465;0.0737148;0.26069453;0.9361454 +13824;0;-0.038131714;4.3091583;8.860458 +13824;1;-0.18693757;4.507114;8.71132 +13824;3;0.05354309;-0.12487793;0.10630798 +13826;0;-0.01423645;4.3329163;8.769836 +13826;12;0.22430563;0.0733423;0.26087084;0.93608457 +13827;3;0.06391907;-0.11328125;0.10081482 +13829;0;-0.028564453;4.380417;8.698288 +13829;1;-0.17951201;4.509476;8.710253 +13829;3;0.06942749;-0.10105896;0.09715271 +13831;4;13.542175;-1.7913818;-64.94751 +13831;6;-0.44944507;-0.46651754;0.0032839049 +13831;7;0.90004176;-0.38803878;0.19837016;0.0;0.4357938;0.8044408;-0.4036815;0.0;-0.0029329818 +13831;0;-0.019012451;4.4231873;8.664902 +13832;3;0.07247925;-0.09251404;0.0934906 +13832;12;0.22452803;0.07304414;0.26103166;0.93600976 +13833;0;-0.06678772;4.4754486;8.569519 +13834;1;-0.17323317;4.512502;8.708813 +13834;2;-0.1904166;0.22720242;-0.12896061; +13834;3;0.071258545;-0.08517456;0.08982849 +13836;0;-0.052444458;4.5181885;8.488449 +13836;12;0.22477064;0.072814114;0.2611824;0.9359274 +13836;3;0.071258545;-0.07601929;0.087387085 +13838;1;-0.16778281;4.515765;8.707229 +13838;0;-0.08111572;4.5799713;8.373978 +13838;3;0.06942749;-0.07234192;0.083099365 +13841;4;12.643433;-0.14038086;-63.746643 +13841;6;-0.3753172;-0.5004626;0.009686339 +13841;7;0.928644;-0.32161203;0.18489438;0.0;0.37087464;0.81628877;-0.44285947;0.0;-0.008498279 +13841;0;-0.095443726;4.61322;8.321533 +13841;3;0.063323975;-0.066848755;0.0776062 +13842;12;0.22503261;0.07257147;0.26108837;0.93590957 +13843;0;-0.09068298;4.6322327;8.254761 +13843;1;-0.16304804;4.51896;8.70566 +13844;3;0.055374146;-0.0650177;0.075164795 +13846;0;-0.11456299;4.660721;8.192749 +13846;12;0.22526042;0.07241715;0.2612187;0.93583035 +13846;3;0.04988098;-0.062576294;0.07028198 +13847;5;999.59894 +13848;0;-0.100234985;4.717743;8.11644 +13848;1;-0.15874764;4.5217276;8.704303 +13848;3;0.040100098;-0.061965942;0.066604614 +13851;4;12.942505;-3.1402588;-65.24658 +13851;6;-0.3826788;-0.5264912;0.0123489965 +13851;7;0.92527986;-0.32283843;0.19907919;0.0;0.37913477;0.8020388;-0.46150905;0.0;-0.010676369 +13851;0;-0.12890625;4.750992;8.08783 +13852;3;0.030944824;-0.06440735;0.0617218 +13852;12;0.22546019;0.072275475;0.26133648;0.9357603 +13853;0;-0.11933899;4.7794952;7.992447 +13853;1;-0.15468864;4.5239277;8.703233 +13853;2;-0.09609568;-0.10321283;0.45855427; +13853;3;0.021774292;-0.062576294;0.059280396 +13855;0;-0.147995;4.7747498;7.944748 +13856;12;0.22562556;0.072133034;0.26143733;0.93570316 +13856;3;0.011993408;-0.0650177;0.055618286 +13860;0;-0.138443;4.803253;7.9208984 +13860;1;-0.15078454;4.5254407;8.702515 +13860;3;0.0046691895;-0.06806946;0.051956177 +13860;9;2AEC2AEBC4E1;-72;-2147483648 +13863;4;13.093567;-2.6901245;-64.34631 +13863;6;-0.3665328;-0.54504627;0.017476413 +13863;7;0.9301859;-0.3064525;0.20209156;0.0;0.36678445;0.7983035;-0.4776826;0.0;-0.014943378 +13863;0;-0.12411499;4.803253;7.897049 +13863;12;0.22575329;0.07197706;0.26150334;0.93566597 +13863;3;-0.0032653809;-0.06806946;0.047668457 +13863;0;-0.16711426;4.86026;7.8350525 +13863;1;-0.14687736;4.526363;8.702102 +13863;3;-0.0093688965;-0.06745911;0.0446167 +13865;0;-0.157547;4.879257;7.849365 +13865;12;0.22584935;0.071815364;0.26157406;0.93563545 +13866;3;-0.016082764;-0.06867981;0.042175293 +13868;1;-0.14311835;4.526808;8.701933 +13868;0;-0.138443;4.893524;7.8016815 +13869;3;-0.020370483;-0.06929016;0.037902832 +13871;4;12.792969;-1.6403198;-64.64691 +13871;6;-0.33852;-0.56013745;0.017743414 +13871;7;0.93996817;-0.2813419;0.19314882;0.0;0.34093082;0.7991021;-0.49517867;0.0;-0.015031115 +13872;0;-0.157547;4.8887787;7.782593 +13872;3;-0.024642944;-0.06990051;0.033615112 +13872;12;0.22591704;0.07164905;0.26163262;0.93561554 +13874;1;-0.1394641;4.5268936;8.701948 +13874;0;-0.13366699;4.893524;7.7253723 +13875;2;-0.03297223;-0.29514742;0.8422613; +13875;3;-0.028305054;-0.07296753;0.031173706 +13875;0;-0.138443;4.8887787;7.7539673 +13875;12;0.22596425;0.07147741;0.26167485;0.93560535 +13876;3;-0.030136108;-0.07357788;0.027511597 +13879;0;-0.10978699;4.907776;7.7158203 +13879;1;-0.13576931;4.5267153;8.702099 +13879;3;-0.032577515;-0.07296753;0.023239136 +13882;4;14.143372;-0.59051514;-65.84625 +13882;6;-0.36131394;-0.56647193;0.014227855 +13882;7;0.93263936;-0.29828623;0.20300026;0.0;0.36061013;0.7893181;-0.4969278;0.0;-0.012005053 +13882;12;0.22600111;0.071290754;0.2616792;0.9356095 +13882;1;-0.13223587;4.526336;8.702351 +13882;0;-0.12411499;4.9030304;7.7205963 +13882;3;-0.036849976;-0.07234192;0.021408081 +13883;0;-0.095443726;4.9315186;7.7205963 +13883;3;-0.040527344;-0.07234192;0.020187378 +13884;0;-0.07635498;4.9267883;7.7587433 +13884;12;0.22602323;0.07110963;0.26169226;0.93561435 +13885;3;-0.0423584;-0.06867981;0.015914917 +13885;5;999.59894 +13888;0;-0.07156372;4.9457855;7.734909 +13888;1;-0.12883587;4.5256763;8.7027445 +13888;3;-0.046020508;-0.06745911;0.014694214 +13889;4;11.8927;-2.090454;-63.746643 +13889;6;-0.33339122;-0.56887585;0.009251781 +13889;7;0.94326663;-0.27570993;0.18501909;0.0;0.3319447;0.79611695;-0.50597477;0.0;-0.00779458 +13889;0;-0.028564453;4.950531;7.730133 +13889;3;-0.05029297;-0.0650177;0.0128479 +13890;12;0.22602989;0.07092967;0.26169842;0.93562466 +13891;0;-0.038131714;4.9315186;7.7253723 +13891;1;-0.12565097;4.5247536;8.703271 +13891;2;-0.07949145;-0.37314844;0.9568949; +13892;3;-0.053955078;-0.063797;0.009796143 +13893;0;-0.052444458;4.9125214;7.7969055 +13894;12;0.22601593;0.070756406;0.26169866;0.93564105 +13894;3;-0.057632446;-0.063186646;0.008575439 +13896;1;-0.12272588;4.523417;8.704007 +13896;0;-0.07156372;4.907776;7.8302765 +13896;3;-0.061904907;-0.061965942;0.008575439 +13899;12;0.22600561;0.07050286;0.26134813;0.93576074 +13899;4;12.643433;0.45928955;-64.94751 +13899;6;-0.33208555;-0.55985177;0.009139106 +13899;7;0.9437427;-0.27624384;0.18176632;0.0;0.33058992;0.80103934;-0.49904534;0.0;-0.0077437665 +13899;0;-0.028564453;4.9125214;7.858902 +13899;3;-0.069229126;-0.059524536;0.006134033 +13901;0;-0.06678772;4.9362793;7.892288 +13902;3;-0.077178955;-0.059524536;0.0055236816 +13903;1;-0.11993714;4.5216475;8.704967 +13904;12;0.22594328;0.07033324;0.2613401;0.93579066 +13906;1;-0.11725643;4.519254;8.706244 +13907;0;-0.028564453;4.893524;7.901825 +13907;3;-0.08023071;-0.058303833;0.0043029785 +13907;0;-0.033355713;4.879257;7.9542847 +13907;3;-0.09062195;-0.059524536;0.0043029785 +13908;4;12.792969;-1.3412476;-63.89618 +13908;6;-0.3699788;-0.55021936;0.0041934024 +13908;7;0.931534;-0.30822772;0.19297703;0.0;0.36363676;0.7947316;-0.48597336;0.0;-0.0035744873 +13908;0;-0.052444458;4.9125214;7.992447 +13909;3;-0.097335815;-0.06074524;0.0043029785 +13910;12;0.22584681;0.07015942;0.26133016;0.9358298 +13913;0;-0.009475708;4.9030304;8.021057 +13913;1;-0.114524454;4.5161724;8.70788 +13913;2;-0.1108972;-0.36763668;0.7891226; +13913;3;-0.104660034;-0.06135559;0.00491333 +13913;0;-0.06201172;4.9030304;8.106903 +13913;12;0.22571349;0.06997119;0.26132095;0.93587863 +13913;3;-0.11260986;-0.06135559;0.0043029785 +13915;0;-0.06201172;4.8887787;8.173676 +13915;1;-0.11181563;4.512437;8.709852 +13915;3;-0.11993408;-0.062576294;0.0024719238 +13917;4;11.593628;-0.440979;-64.19678 +13917;6;-0.32818648;-0.5390179;0.007586615 +13917;7;0.94534606;-0.27662516;0.17262511;0.0;0.32600385;0.8124091;-0.4834388;0.0;-0.006510871 +13917;0;-0.07156372;4.869766;8.226135 +13918;3;-0.12849426;-0.063797;0.0012512207 +13918;12;0.22561364;0.06955557;0.2604132;0.9361867 +13919;0;-0.095443726;4.8555145;8.297668 +13919;1;-0.109088495;4.5078764;8.712248 +13920;3;-0.13703918;-0.06562805;3.0517578E-5 +13922;0;-0.06201172;4.869766;8.335815 +13922;12;0.2254035;0.06934257;0.26040187;0.93625635 +13922;3;-0.14315796;-0.0650177;-0.0011901855 +13923;5;999.6002 +13924;0;-0.047683716;4.8887787;8.421677 +13924;1;-0.106303535;4.502636;8.714992 +13925;3;-0.14926147;-0.06562805;-0.0036315918 +13927;4;12.643433;0.1586914;-64.497375 +13927;6;-0.36067662;-0.5259505;0.005661961 +13927;7;0.93464005;-0.30521092;0.18246672;0.0;0.35556132;0.8092013;-0.46772772;0.0;-0.004896705 +13927;0;-0.052444458;4.8460083;8.464584 +13927;3;-0.15782166;-0.06562805;-0.004852295 +13928;12;0.22515741;0.069114685;0.26038724;0.93633646 +13929;0;-0.057235718;4.8460083;8.531357 +13930;1;-0.10358688;4.4967284;8.718074 +13930;2;-0.07911314;-0.35218096;0.38637733; +13930;3;-0.16329956;-0.062576294;-0.00730896 +13934;12;0.22487578;0.068878934;0.26036662;0.93642724 +13934;1;-0.10116573;4.49016;8.721487 +13934;0;-0.07156372;4.8127594;8.583832 +13934;3;-0.17002869;-0.060134888;-0.009140015 +13934;0;-0.08111572;4.784256;8.6362915 +13935;3;-0.17614746;-0.058914185;-0.013412476 +13936;4;11.743164;-1.6403198;-64.64691 +13936;6;-0.35604125;-0.5058682;0.00939215 +13936;7;0.93565637;-0.30490994;0.17769937;0.0;0.3528167;0.819893;-0.45088327;0.0;-0.0082157 +13937;0;-0.07156372;4.7985077;8.698288 +13937;12;0.22457361;0.06859179;0.26011702;0.93659014 +13937;3;-0.18103027;-0.055862427;-0.017074585 +13939;0;-0.07156372;4.7652435;8.750748 +13939;1;-0.099055365;4.4830127;8.725187 +13939;3;-0.18530273;-0.055252075;-0.019515991 +13941;0;-0.07156372;4.7414856;8.779373 +13941;12;0.22422001;0.06836232;0.26008072;0.9367017 +13942;3;-0.18835449;-0.05279541;-0.023803711 +13943;0;-0.08111572;4.7224884;8.827072 +13944;1;-0.09722988;4.4754257;8.729101 +13944;3;-0.1895752;-0.047912598;-0.025619507 +13946;4;12.342834;-1.3412476;-65.097046 +13946;6;-0.3779786;-0.49123687;0.009189167 +13946;7;0.9277737;-0.32540327;0.18261664;0.0;0.3730556;0.8195096;-0.43500996;0.0;-0.008102435 +13946;0;-0.12411499;4.712982;8.86998 +13947;3;-0.19140625;-0.04425049;-0.026855469 +13947;12;0.22384085;0.068139374;0.26003298;0.9368219 +13948;0;-0.10978699;4.684494;8.917694 +13948;1;-0.09588957;4.467604;8.733123 +13949;2;-0.049863786;-0.26370716;-0.03633213; +13949;3;-0.1932373;-0.042419434;-0.029296875 +13951;0;-0.138443;4.636963;8.960602 +13952;12;0.2234428;0.067934066;0.25997978;0.9369465 +13952;3;-0.1920166;-0.039367676;-0.029891968 +13953;0;-0.16233826;4.6322327;8.984451 +13953;1;-0.09488204;4.4595876;8.73723 +13953;3;-0.19140625;-0.03692627;-0.032958984 +13955;4;12.942505;-1.1901855;-66.14685 +13955;6;-0.38063157;-0.47596985;0.018066837 +13955;7;0.9252034;-0.33021343;0.18696983;0.0;0.37913162;0.82523394;-0.41862634;0.0;-0.01605781 +13956;0;-0.157547;4.622711;8.994003 +13956;3;-0.19140625;-0.0332489;-0.03479004 +13956;12;0.2230365;0.0677319;0.2598787;0.937086 +13958;0;-0.16711426;4.61322;9.008301 +13958;1;-0.09422315;4.451593;8.741313 +13958;3;-0.1895752;-0.031417847;-0.037231445 +13960;0;-0.19099426;4.5657043;9.056 +13961;12;0.22262271;0.06755638;0.2598139;0.9372151 +13961;3;-0.18713379;-0.0320282;-0.03845215 +13962;5;999.6002 +13962;0;-0.19577026;4.5989685;9.046463 +13963;1;-0.09382962;4.443667;8.745349 +13963;3;-0.18347168;-0.0320282;-0.041503906 +13965;4;11.29303;-1.7913818;-64.94751 +13965;6;-0.34012607;-0.4702282;0.021637155 +13965;7;0.93922174;-0.297398;0.17151406;0.0;0.34276906;0.8403953;-0.41981572;0.0;-0.019287258 +13965;0;-0.19577026;4.5799713;9.08461 +13965;3;-0.18040466;-0.030807495;-0.04333496 +13966;12;0.22221243;0.06739333;0.25974122;0.9373443 +13968;0;-0.22442627;4.5514526;9.11322 +13968;1;-0.093566;4.4359713;8.749258 +13968;2;0.04651667;-0.14274597;-0.2930956; +13968;3;-0.1749115;-0.029586792;-0.046401978 +13971;0;-0.19099426;4.52771;9.132294 +13971;12;0.22181205;0.06723683;0.25965747;0.93747354 +13972;3;-0.17063904;-0.029586792;-0.048843384 +13972;0;-0.23876953;4.4991913;9.208603 +13973;3;-0.16452026;-0.030197144;-0.053115845 +13973;1;-0.09349289;4.428571;8.753007 +13975;4;12.792969;-0.29144287;-63.597107 +13975;6;-0.38131693;-0.45434195;0.025923155 +13975;7;0.92363006;-0.33438918;0.18732654;0.0;0.38257664;0.83401185;-0.3975664;0.0;-0.023290642 +13975;0;-0.23876953;4.494446;9.21814 +13976;3;-0.15719604;-0.028366089;-0.05555725 +13976;12;0.22142851;0.06708541;0.2595282;0.9376109 +13977;0;-0.23399353;4.4754486;9.175232 +13978;3;-0.14987183;-0.029586792;-0.060440063 +13978;1;-0.09360091;4.421631;8.756514 +13979;0;-0.26264954;4.4897003;9.184769 +13981;12;0.2210684;0.06695435;0.25941506;0.9377366 +13981;3;-0.13948059;-0.030197144;-0.064712524 +13982;0;-0.24832153;4.465927;9.160919 +13982;1;-0.09388176;4.4153376;8.7596855 +13982;3;-0.12786865;-0.030807495;-0.06838989 +13984;4;11.8927;-0.14038086;-65.69672 +13984;6;-0.33771738;-0.45345122;0.027099982 +13984;7;0.939234;-0.29784986;0.17066059;0.0;0.3424124;0.8481626;-0.40419567;0.0;-0.024358293 +13985;0;-0.23399353;4.53244;9.170456 +13985;3;-0.11566162;-0.031417847;-0.0708313 +13985;12;0.22074324;0.06683567;0.25927955;0.937859 +13987;17;1;38dead6d7725;4980;427;-62; +13988;17;1;38dead6d60ff;3828;889;-60; +13988;17;1;1c1bb5efa29a;4151;5247;-73; +13989;17;1;1c1bb5ecd182;4387;1727;-61; +13989;0;-0.20533752;4.480179;9.170456 +13989;2;0.09885128;-0.063865185;-0.42673302; +13989;3;-0.10343933;-0.030197144;-0.07571411 +13989;1;-0.0942091;4.4100785;8.762331 +13990;0;-0.21966553;4.5086975;9.175232 +13990;12;0.22047149;0.066731185;0.25912517;0.937973 +13991;3;-0.08999634;-0.03263855;-0.07937622 +13992;0;-0.22921753;4.494446;9.146606 +13992;1;-0.09469524;4.405871;8.764442 +13993;3;-0.07473755;-0.0320282;-0.084243774 +13994;4;11.8927;-0.440979;-65.24658 +13994;6;-0.34544992;-0.4566024;0.025055148 +13994;7;0.93688756;-0.30393034;0.1728236;0.0;0.34890687;0.84453094;-0.4062406;0.0;-0.022486037 +13995;0;-0.24832153;4.5181885;9.19429 +13995;3;-0.061294556;-0.033859253;-0.08792114 +13995;12;0.22027186;0.0665949;0.25872466;0.93814015 +13996;0;-0.23876953;4.546707;9.132294 +13997;1;-0.09532002;4.4028997;8.765928 +13997;3;-0.047851562;-0.035705566;-0.09036255 +13999;0;-0.25787354;4.522949;9.094147 +13999;12;0.22012281;0.06653202;0.2585228;0.93823534 +14000;3;-0.031967163;-0.03630066;-0.09585571 +14001;5;999.6002 +14001;0;-0.25309753;4.5514526;9.094147 +14001;1;-0.0959798;4.401149;8.7668 +14002;3;-0.019744873;-0.038757324;-0.10134888 +14004;4;12.042236;-0.59051514;-64.64691 +14004;6;-0.34451708;-0.46387786;0.027823634 +14004;7;0.9366703;-0.302051;0.17723927;0.0;0.3493273;0.8417725;-0.4115695;0.0;-0.024880141 +14004;0;-0.24354553;4.5799713;9.070297 +14004;3;-0.0051116943;-0.039978027;-0.10624695 +14005;12;0.2200401;0.06648423;0.25829884;0.9383198 +14006;0;-0.23876953;4.5799713;9.027374 +14006;1;-0.096704;4.400619;8.767058 +14007;2;0.10635914;-0.11549902;-0.361166; +14007;3;0.0071105957;-0.042419434;-0.109298706 +14011;12;0.22002245;0.06645216;0.2580445;0.93839616 +14011;0;-0.24354553;4.5989685;9.008301 +14011;3;0.02116394;-0.04547119;-0.112350464 +14013;1;-0.097393595;4.401284;8.766717 +14013;0;-0.24832153;4.65123;8.970154 +14013;3;0.031555176;-0.046691895;-0.11723328 +14013;4;11.593628;0.1586914;-64.19678 +14013;6;-0.31791002;-0.47819933;0.027676016 +14014;7;0.9455464;-0.27751806;0.1700751;0.0;0.3245585;0.84333664;-0.42830455;0.0;-0.024568321 +14014;0;-0.22921753;4.660721;8.960602 +14014;3;0.04498291;-0.049743652;-0.121520996 +14014;12;0.22009696;0.06634767;0.25741076;0.9385602 +14016;1;-0.0980595;4.4030213;8.765837 +14016;0;-0.22921753;4.660721;8.908142 +14016;3;0.055374146;-0.05279541;-0.1227417 +14019;12;0.22020352;0.06633701;0.25710818;0.93861884 +14019;0;-0.22442627;4.6749725;8.860458 +14019;3;0.06513977;-0.055252075;-0.12579346 +14022;0;-0.20054626;4.684494;8.803207 +14023;1;-0.09856494;4.405753;8.76446 +14024;3;0.074920654;-0.05769348;-0.12884521 +14024;4;11.8927;-0.440979;-65.24658 +14024;6;-0.32999033;-0.48891625;0.022777105 +14024;7;0.94233394;-0.28607082;0.17369564;0.0;0.33406943;0.835209;-0.43683338;0.0;-0.020106854 +14024;0;-0.22442627;4.7414856;8.769836 +14024;3;0.083465576;-0.058914185;-0.13128662 +14025;12;0.22036712;0.06633028;0.25678787;0.9386686 +14026;0;-0.21487427;4.7462463;8.741211 +14027;1;-0.09902589;4.4093833;8.762628 +14027;3;0.09324646;-0.06074524;-0.13555908 +14027;2;0.09010473;-0.24694157;-0.12623978; +14028;12;0.22057898;0.06632934;0.25644904;0.9387115 +14028;0;-0.18621826;4.7747498;8.703064 +14029;3;0.10119629;-0.06074524;-0.13494873 +14031;0;-0.157547;4.7985077;8.664902 +14031;3;0.1048584;-0.062576294;-0.1374054 +14031;1;-0.099432416;4.41385;8.760374 +14033;4;12.193298;0.9094238;-65.69672 +14033;6;-0.324222;-0.5056758;0.018180199 +14033;7;0.9449368;-0.2787013;0.17152211;0.0;0.3268659;0.82926667;-0.45329377;0.0;-0.015904022 +14033;0;-0.13366699;4.8222656;8.669678 +14034;3;0.107910156;-0.062576294;-0.1386261 +14034;12;0.22085558;0.066272125;0.25583032;0.93881935 +14036;1;-0.09977808;4.4187536;8.757897 +14036;0;-0.143219;4.8365173;8.6410675 +14036;3;0.111572266;-0.063186646;-0.1404419 +14038;0;-0.100234985;4.8460083;8.564758 +14038;3;0.11401367;-0.062576294;-0.1398468 +14038;12;0.22113748;0.06627989;0.2554675;0.93885124 +14040;5;999.6002 +14040;0;-0.12890625;4.884018;8.502762 +14041;1;-0.10012853;4.4240284;8.75523 +14042;3;0.11401367;-0.06135559;-0.14228821 +14043;4;11.743164;-0.29144287;-65.54718 +14043;6;-0.31959987;-0.52133644;0.015159354 +14043;7;0.9468801;-0.27244836;0.17085055;0.0;0.32131794;0.82324266;-0.4680023;0.0;-0.013144996 +14043;0;-0.138443;4.8982697;8.455063 +14043;3;0.11401367;-0.06074524;-0.14595032 +14043;12;0.22143911;0.06629489;0.25509802;0.93887955 +14045;1;-0.1006573;4.429441;8.752487 +14045;2;-9.560436E-4;-0.40107632;0.1563816; +14046;0;-0.10978699;4.94104;8.483673 +14046;3;0.11401367;-0.06135559;-0.14595032 +14048;0;-0.11456299;4.9362793;8.397842 +14049;12;0.22174506;0.0663166;0.2547204;0.93890834 +14049;3;0.111572266;-0.059524536;-0.14595032 +14050;0;-0.12411499;4.9220276;8.397842 +14050;3;0.11035156;-0.060134888;-0.14778137 +14051;1;-0.10125223;4.4348755;8.749728 +14054;4;11.593628;-1.1901855;-65.69672 +14054;6;-0.31794587;-0.5300932;0.014778315 +14054;7;0.94744;-0.2697126;0.17208281;0.0;0.31967926;0.819518;-0.47559994;0.0;-0.012749674 +14056;0;-0.11456299;4.974289;8.354904 +14056;3;0.107910156;-0.06074524;-0.14900208 +14056;12;0.22206527;0.06629489;0.25414157;0.938991 +14058;1;-0.101875916;4.440208;8.747016 +14058;0;-0.09068298;5.007553;8.35968 +14058;3;0.1060791;-0.06074524;-0.15205383 +14058;0;-0.10499573;5.074051;8.321533 +14058;12;0.22236656;0.066318884;0.2537549;0.9390226 +14058;3;0.103637695;-0.060134888;-0.15205383 +14060;1;-0.10258409;4.445437;8.744351 +14060;0;-0.10499573;5.050308;8.35968 +14060;3;0.10179138;-0.061965942;-0.15388489 +14065;4;12.792969;-0.29144287;-63.597107 +14066;6;-0.35138842;-0.54341364;0.012559119 +14066;7;0.93658656;-0.29461896;0.18975057;0.0;0.3502714;0.80364645;-0.4811052;0.0;-0.010749677 +14066;0;-0.13366699;5.050308;8.311981 +14066;3;0.09753418;-0.061965942;-0.15388489 +14068;12;0.22265764;0.06634364;0.2533603;0.9390584 +14068;2;-0.028015852;-0.54236984;0.38506222; +14068;1;-0.10329822;4.4504666;8.741784 +14068;0;-0.11456299;5.0693054;8.273819 +14068;3;0.09385681;-0.062576294;-0.1557312 +14069;12;0.22294141;0.066364124;0.25296122;0.9390972 +14069;1;-0.104006924;4.455227;8.73935 +14070;0;-0.12411499;5.131073;8.288132 +14070;3;0.0901947;-0.06440735;-0.1569519 +14070;0;-0.12890625;5.1120605;8.311981 +14070;3;0.08590698;-0.0662384;-0.16061401 +14071;4;11.442566;0.30975342;-64.64691 +14071;6;-0.29610896;-0.55133903;0.0155072445 +14071;7;0.95399386;-0.24856278;0.16766685;0.0;0.29953486;0.8147516;-0.49644578;0.0;-0.01320891 +14072;0;-0.095443726;5.107315;8.335815 +14072;3;0.08287048;-0.06806946;-0.16366577 +14074;1;-0.104652286;4.459638;8.737093 +14074;0;-0.10499573;5.1453247;8.340591 +14074;3;0.07736206;-0.06745911;-0.16427612 +14074;12;0.22323884;0.06627323;0.25212237;0.93925864 +14076;0;-0.057235718;5.154831;8.364441 +14076;12;0.22349006;0.066274345;0.25170484;0.93931067 +14076;3;0.0730896;-0.066848755;-0.16549683 +14077;5;999.5981 +14078;0;-0.10499573;5.164322;8.369217 +14078;1;-0.105332404;4.4636736;8.7350235 +14078;3;0.06881714;-0.0650177;-0.16915894 +14080;4;12.792969;1.05896;-65.54718 +14080;6;-0.32604393;-0.55283517;0.012544807 +14080;7;0.94513255;-0.27258608;0.18005951;0.0;0.3265128;0.80620384;-0.4933811;0.0;-0.010675843 +14080;0;-0.100234985;5.140564;8.397842 +14080;3;0.06637573;-0.061965942;-0.1728363 +14081;12;0.22371891;0.06627231;0.25128236;0.93936956 +14084;2;-0.04234433;-0.6559353;0.37271595; +14084;1;-0.106321715;4.467344;8.733135 +14084;0;-0.095443726;5.154831;8.407364 +14084;3;0.06086731;-0.06135559;-0.1746521 +14085;12;0.22392507;0.06627593;0.25084946;0.9394358 +14089;1;-0.10754468;4.4705687;8.73147 +14089;0;-0.100234985;5.1168213;8.445526 +14089;3;0.05659485;-0.060134888;-0.17771912 +14089;0;-0.10499573;5.131073;8.488449 +14090;3;0.052322388;-0.058303833;-0.18077087 +14090;0;-0.11933899;5.1263123;8.526611 +14090;3;0.04988098;-0.05708313;-0.18321228 +14091;12;0.22410573;0.06628289;0.2504078;0.93951005 +14091;4;11.8927;1.5090942;-64.94751 +14091;6;-0.305384;-0.54126793;0.013995149 +14091;7;0.95147026;-0.257682;0.16823868;0.0;0.30750674;0.8174014;-0.48712873;0.0;-0.011994236 +14092;0;-0.10978699;5.121567;8.559982 +14093;1;-0.10903583;4.4734178;8.729992 +14093;3;0.04498291;-0.054641724;-0.18504333 +14095;0;-0.10499573;5.121567;8.583832 +14095;3;0.039489746;-0.051574707;-0.18748474 +14095;12;0.22428875;0.06621217;0.24961448;0.9396825 +14097;0;-0.15278625;5.1453247;8.650604 +14097;1;-0.11082861;4.475853;8.728721 +14097;3;0.034606934;-0.04547119;-0.1905365 +14103;4;12.792969;-1.3412476;-67.49725 +14103;6;-0.33370864;-0.5365139;0.017660081 +14103;7;0.94173014;-0.28152722;0.18408336;0.0;0.3360266;0.8120808;-0.4770856;0.0;-0.0151779745 +14103;0;-0.16711426;5.097824;8.712601 +14103;3;0.032165527;-0.04119873;-0.1905365 +14103;12;0.22441982;0.066232346;0.24915661;0.93977135 +14103;0;-0.18621826;5.0883026;8.698288 +14103;1;-0.11318434;4.4778132;8.727685 +14103;3;0.031555176;-0.03692627;-0.1917572 +14103;2;-0.019854665;-0.62706566;0.13682652; +14105;17;1;38dead6d7725;6198;761;-60; +14105;17;1;38dead6d60ff;2698;1752;-59; +14106;17;1;1c1bb5efa29a;4935;3517;-65; +14106;17;1;1c1bb5ecd182;6330;598;-61; +14107;12;0.22452077;0.06627211;0.24869554;0.93986654 +14108;0;-0.19577026;5.074051;8.750748 +14108;1;-0.11595301;4.479602;8.72673 +14108;3;0.030944824;-0.0320282;-0.1917572 +14108;0;-0.18621826;5.0265503;8.774612 +14108;3;0.030334473;-0.027755737;-0.19419861 +14109;4;13.392639;0.009155273;-65.097046 +14109;6;-0.35398963;-0.5201211;0.021219207 +14109;7;0.93413067;-0.30080244;0.19213961;0.0;0.35645583;0.81395555;-0.45871082;0.0;-0.018411778 +14109;0;-0.21966553;5.040802;8.846146 +14110;3;0.031555176;-0.021652222;-0.19360352 +14110;12;0.22460738;0.066327184;0.24822557;0.9399662 +14111;0;-0.22921753;5.0027924;8.908142 +14111;1;-0.11921643;4.481273;8.725828 +14112;3;0.03704834;-0.016159058;-0.19238281 +14114;0;-0.26742554;4.974289;8.955841 +14114;12;0.22468023;0.066408455;0.24776736;0.9400639 +14114;3;0.043151855;-0.00881958;-0.19238281 +14116;5;999.5981 +14116;0;-0.2960968;5.0027924;8.970154 +14116;1;-0.12302811;4.4832387;8.724767 +14116;3;0.052322388;3.5095215E-4;-0.19116211 +14118;4;13.392639;0.009155273;-65.54718 +14118;6;-0.33614954;-0.50851583;0.03299713 +14118;7;0.9382195;-0.28811747;0.19165732;0.0;0.3448388;0.8245816;-0.44849902;0.0;-0.028816711 +14119;0;-0.32476807;4.9933014;9.036911 +14119;3;0.06086731;0.0070648193;-0.1905365 +14119;12;0.22476444;0.066524684;0.24731694;0.94015414 +14121;0;-0.3104248;4.960037;9.075058 +14121;1;-0.12755173;4.485835;8.723367 +14121;3;0.0718689;0.013763428;-0.18687439 +14121;2;0.08920677;-0.5108824;-0.19844913; +14123;0;-0.3295288;4.9362793;9.079834 +14123;12;0.22487247;0.06668587;0.24687356;0.9402334 +14124;3;0.087753296;0.018661499;-0.18321228 +14125;0;-0.38685608;4.9125214;9.089371 +14126;1;-0.13249531;4.4893107;8.721505 +14126;3;0.103637695;0.023544312;-0.18077087 +14128;4;12.942505;0.1586914;-64.94751 +14128;6;-0.31477112;-0.49511775;0.0425357 +14128;7;0.94375205;-0.27241996;0.18740186;0.0;0.32853022;0.83668023;-0.4382169;0.0;-0.03741642 +14128;0;-0.39640808;4.884018;9.075058 +14128;3;0.1219635;0.029647827;-0.18016052 +14129;12;0.22502388;0.06688239;0.24642484;0.94030094 +14131;0;-0.42507935;4.9267883;9.075058 +14131;1;-0.13783993;4.4941416;8.718933 +14131;3;0.14273071;0.033935547;-0.17771912 +14133;0;-0.4202881;4.8887787;9.103683 +14133;12;0.22524214;0.067126386;0.24600972;0.94034004 +14133;3;0.16593933;0.040649414;-0.1758728 +14135;0;-0.40119934;4.893524;9.13707 +14135;1;-0.14354727;4.5006547;8.715481 +14136;3;0.18548584;0.048599243;-0.17649841 +14138;4;11.29303;0.45928955;-65.69672 +14138;6;-0.25980282;-0.491295;0.043880783 +14139;7;0.96019405;-0.22650574;0.16347039;0.0;0.27664313;0.8521327;-0.44422808;0.0;-0.03867827 +14139;0;-0.39640808;4.960037;9.208603 +14139;3;0.20259094;0.062026978;-0.17527771 +14139;12;0.22554687;0.06741436;0.24560249;0.94035286 +14141;0;-0.45851135;4.950531;9.14183 +14141;1;-0.15000148;4.5088415;8.71114 +14141;2;0.21562734;-0.39826727;-0.40958118; +14141;3;0.21603394;0.07058716;-0.1728363 +14143;0;-0.5922699;4.9030304;9.117996 +14143;12;0.2259297;0.06777329;0.2451987;0.94034046 +14144;3;0.23252869;0.07424927;-0.1716156 +14145;0;-0.65914917;4.893524;9.075058 +14145;1;-0.15735123;4.518253;8.706133 +14145;3;0.24534607;0.073638916;-0.17527771 +14147;4;11.442566;0.7598877;-64.64691 +14147;6;-0.20980787;-0.49343702;0.07250573 +14147;7;0.96835476;-0.18342724;0.16924365;0.0;0.241285;0.86139697;-0.44696397;0.0;-0.063800596 +14148;0;-0.6639252;4.8887787;9.051224 +14148;3;0.25634766;0.073028564;-0.1758728 +14149;12;0.22640868;0.06806501;0.24426925;0.94044614 +14150;0;-0.64004517;4.9220276;9.03215 +14150;1;-0.16484596;4.52878;8.700522 +14150;3;0.26489258;0.06997681;-0.1770935 +14152;0;-0.64004517;4.974289;9.089371 +14153;12;0.22690935;0.068504065;0.24386477;0.9403986 +14153;3;0.27223206;0.06263733;-0.17649841 +14154;5;999.5981 +14155;0;-0.60661316;4.9552917;9.151382 +14155;1;-0.17202653;4.5400324;8.694516 +14155;3;0.27589417;0.05897522;-0.17527771 +14160;4;12.792969;-1.0406494;-64.34631 +14160;6;-0.27631652;-0.49536118;0.06618968 +14160;7;0.9513828;-0.2400207;0.19303028;0.0;0.30246395;0.8464235;-0.43827227;0.0;-0.058190968 +14160;0;-0.5301666;5.017044;9.222916 +14160;3;0.27651978;0.05531311;-0.1728363 +14160;12;0.22745243;0.068932265;0.24345207;0.9403429 +14161;1;-0.17865261;4.551602;8.688333 +14161;0;-0.55882263;5.074051;9.222916 +14161;3;0.27467346;0.05470276;-0.16976929 +14161;2;0.3978191;-0.39060307;-0.43876266; +14162;0;-0.65914917;5.131073;9.160919 +14164;3;0.27101135;0.050430298;-0.16732788 +14164;12;0.2280227;0.06934616;0.24303839;0.9402815 +14166;0;-0.73080444;5.1785736;9.160919 +14167;1;-0.18516053;4.563147;8.6821375 +14167;3;0.26367188;0.044311523;-0.16793823 +14168;4;13.093567;-1.0406494;-65.097046 +14168;6;-0.24528526;-0.5131485;0.07960556 +14168;7;0.957516;-0.21155693;0.19597596;0.0;0.27993444;0.8451264;-0.45540974;0.0;-0.069279395 +14168;0;-0.76901245;5.1358337;9.151382 +14168;3;0.2557373;0.03881836;-0.16793823 +14169;12;0.22859125;0.06974976;0.2426167;0.9402225 +14170;1;-0.19132654;4.5740924;8.676242 +14171;0;-0.8120117;5.06456;9.0607605 +14171;3;0.24656677;0.02720642;-0.16976929 +14172;0;-0.826355;5.0455627;9.065521 +14172;3;0.24230957;0.011947632;-0.1728363 +14172;12;0.22913149;0.07012771;0.2422076;0.9401683 +14176;1;-0.19669943;4.584372;8.670695 +14176;0;-0.816803;5.0883026;9.036911 +14176;3;0.2386322;-0.002090454;-0.174057 +14179;4;12.792969;-1.0406494;-65.097046 +14179;6;-0.21595785;-0.5110757;0.09014026 +14179;7;0.9633713;-0.1869018;0.19231102;0.0;0.25641978;0.85195863;-0.45652533;0.0;-0.07851561 +14179;0;-0.7642517;5.211838;8.965378 +14179;3;0.2386322;-0.0149383545;-0.1734314 +14179;12;0.22965524;0.07044899;0.24178126;0.9401262 +14179;1;-0.20085369;4.594617;8.665175 +14179;2;0.52767086;-0.5391779;-0.41385365; +14180;0;-0.71647644;5.297348;8.979691 +14180;3;0.23802185;-0.027755737;-0.1746521 +14182;0;-0.6687012;5.35437;8.994003 +14182;3;0.2398529;-0.042419434;-0.174057 +14183;12;0.23019074;0.07070128;0.24133584;0.94009084 +14184;1;-0.20379035;4.604922;8.659635 +14185;0;-0.62094116;5.368622;9.070297 +14185;3;0.24107361;-0.054031372;-0.1734314 +14186;4;11.8927;-1.4907837;-64.497375 +14186;6;-0.23008458;-0.5334111;0.0683521 +14186;7;0.9634535;-0.19637728;0.18219064;0.0;0.26134035;0.8383858;-0.4783415;0.0;-0.058810648 +14186;0;-0.5683899;5.3638763;9.08461 +14186;3;0.24230957;-0.062576294;-0.1728363 +14188;12;0.230749;0.07086458;0.24078327;0.94008327 +14189;1;-0.20561345;4.615319;8.654055 +14189;0;-0.5206146;5.3828583;9.027374 +14189;3;0.24290466;-0.06745911;-0.1722107 +14193;0;-0.5062866;5.4161377;9.027374 +14193;3;0.24841309;-0.07052612;-0.1722107 +14193;12;0.231323;0.0709951;0.24031363;0.9400525 +14194;5;999.5981 +14194;0;-0.5158386;5.501648;8.970154 +14194;3;0.25268555;-0.074798584;-0.1703949 +14194;1;-0.20693845;4.625975;8.648332 +14196;4;11.8927;-1.7913818;-64.497375 +14196;6;-0.24662493;-0.5494266;0.05744284 +14196;7;0.9608233;-0.208202;0.18294935;0.0;0.27280265;0.8270193;-0.49154642;0.0;-0.048961703 +14197;0;-0.48718262;5.568161;8.951065 +14197;3;0.26185608;-0.07662964;-0.1728363 +14197;12;0.23191963;0.07110501;0.23983897;0.9400185 +14199;1;-0.20792264;4.6373434;8.642218 +14200;0;-0.43463135;5.610916;8.846146 +14200;2;0.29996514;-0.7996445;-0.35975075; +14200;3;0.270401;-0.0821228;-0.1734314 +14201;0;-0.38685608;5.6964264;8.855682 +14202;3;0.27955627;-0.08578491;-0.1746521 +14202;12;0.23255871;0.071203865;0.2393575;0.9399758 +14203;1;-0.20849638;4.6495194;8.635659 +14204;0;-0.3343048;5.758194;8.81752 +14204;3;0.2911682;-0.09007263;-0.1734314 +14206;4;12.342834;0.7598877;-65.097046 +14206;6;-0.26443636;-0.5781806;0.03789555 +14206;7;0.9591354;-0.21888252;0.17930342;0.0;0.28116292;0.80834824;-0.51722383;0.0;-0.031728346 +14206;0;-0.2722168;5.8104553;8.836609 +14206;3;0.3003235;-0.09251404;-0.1728363 +14207;12;0.23325859;0.07124655;0.23868959;0.93996906 +14209;0;-0.25787354;5.9102325;8.836609 +14209;3;0.3070526;-0.09434509;-0.1722107 +14209;1;-0.20863429;4.6626544;8.628571 +14214;0;-0.21009827;5.948242;8.846146 +14214;12;0.23400162;0.07132551;0.23819396;0.9399041 +14214;3;0.3131714;-0.09617615;-0.16915894 +14214;0;-0.16711426;6.0432434;8.850922 +14215;3;0.31376648;-0.095565796;-0.16854858 +14215;1;-0.20846823;4.6764736;8.621093 +14217;4;12.193298;-2.5405884;-64.94751 +14217;6;-0.3065387;-0.59899306;0.018878758 +14217;7;0.9500022;-0.24922515;0.18810326;0.0;0.311854;0.7874033;-0.53173614;0.0;-0.01559111 +14217;0;-0.12890625;6.1050262;8.879532 +14217;3;0.31132507;-0.09617615;-0.16671753 +14218;0;-0.10499573;6.1572723;8.898605 +14218;1;-0.20813145;4.690466;8.613497 +14218;3;0.30400085;-0.09310913;-0.16244507 +14218;2;-0.0076919645;-1.2318568;-0.24347878; +14219;12;0.23478512;0.07139877;0.2376999;0.9398281 +14220;0;-0.07635498;6.176285;8.922455 +14220;3;0.29362488;-0.08885193;-0.15939331 +14220;12;0.23557714;0.07146749;0.23721251;0.93974787 +14222;1;-0.20780815;4.703913;8.606168 +14222;0;-0.07635498;6.2475433;8.941528 +14222;3;0.28199768;-0.08578491;-0.1563263 +14224;4;12.193298;-1.7913818;-66.44745 +14224;6;-0.30718789;-0.60984313;0.008539159 +14224;7;0.9516741;-0.2478718;0.18131742;0.0;0.30703002;0.78136396;-0.5433257;0.0;-0.006999786 +14224;0;-0.042907715;6.2808075;8.994003 +14224;3;0.26856995;-0.0809021;-0.15388489 +14225;12;0.23634519;0.071511686;0.23665579;0.9396921 +14227;1;-0.20759872;4.7164264;8.599321 +14227;0;0.023986816;6.352066;8.984451 +14227;3;0.2520752;-0.075408936;-0.15022278 +14229;0;0.014419556;6.38533;9.008301 +14229;3;0.23130798;-0.06867981;-0.14595032 +14230;12;0.23705338;0.07157532;0.23621099;0.93962073 +14231;1;-0.20764826;4.7275686;8.5932 +14232;0;0.062194824;6.4043274;9.098923 +14232;3;0.21054077;-0.06074524;-0.1410675 +14233;5;999.6002 +14235;12;0.2376789;0.07163802;0.23579484;0.9395624 +14235;4;13.392639;-0.29144287;-66.596985 +14235;6;-0.34912202;-0.6132979;-0.006835299 +14235;7;0.94099724;-0.27973157;0.19045852;0.0;0.33836806;0.7684219;-0.5431709;0.0;0.0055895513 +14235;0;0.066970825;6.4375916;9.14183 +14235;3;0.18670654;-0.05279541;-0.1386261 +14237;1;-0.2081254;4.7368493;8.588077 +14237;2;-0.24346937;-1.5921497;-0.4569826; +14237;0;0.04786682;6.375824;9.246765 +14237;3;0.15739441;-0.043640137;-0.13494873 +14238;0;0.03831482;6.38533;9.304001 +14239;12;0.23819329;0.07170491;0.23541348;0.9395227 +14239;3;0.13233948;-0.031417847;-0.13067627 +14242;0;0.10041809;6.399582;9.356461 +14242;1;-0.20922562;4.7438183;8.584202 +14242;3;0.10241699;-0.021652222;-0.12945557 +14243;4;11.442566;-0.59051514;-65.84625 +14243;6;-0.32037693;-0.59986275;-0.010732074 +14243;7;0.9509701;-0.2599427;0.16758795;0.0;0.30915606;0.7834135;-0.53915304;0.0;0.008858225 +14244;0;0.03831482;6.328308;9.399368 +14244;3;0.07003784;-0.0082092285;-0.12701416 +14244;12;0.2386166;0.07163471;0.23450468;0.939648 +14246;0;0.04307556;6.30455;9.470917 +14246;1;-0.21118699;4.748243;8.581707 +14246;3;0.038269043;0.0040130615;-0.12579346 +14248;0;0.052627563;6.2475433;9.547226 +14249;12;0.2388448;0.071721226;0.23419355;0.9396609 +14249;3;0.0046691895;0.015609741;-0.12640381 +14252;0;0.019195557;6.2095337;9.609222 +14252;1;-0.21412097;4.749844;8.580749 +14252;3;-0.028915405;0.028427124;-0.12884521 +14253;4;12.942505;-1.1901855;-64.497375 +14253;6;-0.36710998;-0.5737023;-0.0019976154 +14253;7;0.9337558;-0.3014555;0.19293697;0.0;0.35790676;0.7839337;-0.5072974;0.0;0.0016777907 +14254;0;-0.033355713;6.143036;9.685532 +14254;3;-0.0594635;0.036987305;-0.13067627 +14254;12;0.23890533;0.071825996;0.2339124;0.9397076 +14256;1;-0.2181734;4.7485514;8.581362 +14256;0;-0.06201172;6.0432434;9.723679 +14256;2;-0.27619871;-1.5075994;-0.93243504; +14256;3;-0.092453;0.045532227;-0.13618469 +14258;0;-0.057235718;5.962494;9.771393 +14258;12;0.2387944;0.07194688;0.23364748;0.93979245 +14258;3;-0.12664795;0.052871704;-0.1404419 +14260;0;-0.095443726;5.881729;9.804764 +14261;3;-0.15904236;0.05470276;-0.144104 +14262;1;-0.22312438;4.744368;8.583548 +14263;4;12.792969;-1.3412476;-66.596985 +14263;6;-0.3509596;-0.5403139;0.0097341165 +14263;7;0.9372773;-0.29482394;0.18598425;0.0;0.34848472;0.80527395;-0.47967932;0.0;-0.0083473325 +14263;0;-0.138443;5.7724457;9.852463 +14263;3;-0.1907959;0.052261353;-0.15144348 +14264;12;0.23851913;0.072062396;0.23334251;0.9399293 +14270;1;-0.22857589;4.7372136;8.587356 +14270;12;0.23807444;0.07216572;0.23306993;0.9401016 +14270;1;-0.2339145;4.7273684;8.592635 +14273;12;0.23748815;0.07221708;0.23276798;0.9403208 +14275;1;-0.23864357;4.715241;8.599166 +14275;2;-0.10990128;-0.87842226;-1.3473692; +14278;0;-0.157547;5.6774445;9.919235 +14278;3;-0.22195435;0.046157837;-0.1599884 +14278;0;-0.16711426;5.534912;9.957382 +14278;3;-0.24699402;0.038208008;-0.16671753 +14278;0;-0.20533752;5.420868;10.019394 +14278;3;-0.27204895;0.024765015;-0.1728363 +14278;5;999.6002 +14278;4;13.693237;-3.590393;-65.097046 +14278;6;-0.4163829;-0.49584833;0.02049114 +14278;7;0.91042304;-0.3557447;0.21112944;0.0;0.4132858;0.8044135;-0.42674798;0.0;-0.018022036 +14278;0;-0.24354553;5.278351;10.100464 +14278;3;-0.29403687;0.012542725;-0.18138123 +14278;0;-0.23399353;5.230835;10.13385 +14278;3;-0.31053162;-2.746582E-4;-0.1893158 +14278;12;0.23679365;0.07219301;0.23243065;0.9405812 +14278;0;-0.22921753;5.107315;10.186325 +14278;3;-0.32214355;-0.013092041;-0.19482422 +14279;1;-0.24264729;4.701489;8.606581 +14279;0;-0.24354553;4.9885406;10.262619 +14280;3;-0.33374023;-0.024093628;-0.2052002 +14281;4;12.792969;-1.6403198;-65.097046 +14281;6;-0.39329955;-0.45234585;0.02372687 +14282;7;0.91941565;-0.34469366;0.18937056;0.0;0.392708;0.83075285;-0.39449987;0.0;-0.021338519 +14282;0;-0.21487427;4.8555145;10.358002 +14282;3;-0.33740234;-0.0320282;-0.21192932 +14282;12;0.23602377;0.072091855;0.23203218;0.9408808 +14284;0;-0.171875;4.7700043;10.372314 +14284;1;-0.24607067;4.686644;8.614576 +14284;3;-0.34291077;-0.039367676;-0.21742249 +14286;0;-0.157547;4.6797333;10.42955 +14287;12;0.23520875;0.07193898;0.23160888;0.9412008 +14287;3;-0.33740234;-0.042419434;-0.2223053 +14289;0;-0.15278625;4.5657043;10.486786 +14289;1;-0.24915202;4.6713815;8.622773 +14289;3;-0.33312988;-0.042419434;-0.2259674 +14291;4;11.442566;-1.3412476;-66.29639 +14291;6;-0.39261737;-0.4105882;0.014568377 +14291;7;0.921588;-0.35080793;0.16616066;0.0;0.3879396;0.84712106;-0.3631649;0.0;-0.013357071 +14291;0;-0.138443;4.44693;10.544006 +14292;3;-0.32640076;-0.039367676;-0.22964478 +14292;12;0.23437746;0.071755916;0.23115459;0.94153386 +14294;0;-0.16711426;4.347168;10.582169 +14294;1;-0.25240833;4.6561937;8.63089 +14294;3;-0.31848145;-0.034484863;-0.23391724 +14295;2;-0.10173106;-0.061032295;-1.7744522; +14296;0;-0.16233826;4.214142;10.615555 +14297;12;0.23355213;0.07157929;0.23067775;0.94186926 +14297;3;-0.30503845;-0.02897644;-0.23635864 +14298;0;-0.15278625;4.166626;10.648941 +14298;1;-0.2561685;4.641607;8.638633 +14299;3;-0.28915405;-0.019821167;-0.23757935 +14301;4;13.093567;-0.29144287;-65.84625 +14301;6;-0.47219044;-0.37292427;0.01434657 +14301;7;0.88810515;-0.42357525;0.178475;0.0;0.45944625;0.8293614;-0.31791347;0.0;-0.013360013 +14302;17;1;38dead6d7725;3910;541;-65; +14303;17;1;38dead6d60ff;3992;713;-60; +14303;17;1;1c1bb5efa29a;8060;846;-69; +14304;17;1;1c1bb5ecd182;5915;1328;-64; +14304;0;-0.12890625;4.109619;10.663239 +14304;3;-0.27020264;-0.0069885254;-0.23635864 +14304;12;0.23276109;0.07142903;0.23016798;0.94220114 +14304;0;-0.17666626;4.0478516;10.577393 +14304;1;-0.26070064;4.6282444;8.645663 +14304;3;-0.24516296;0.0070648193;-0.23574829 +14305;0;-0.2960968;3.952835;10.529694 +14306;12;0.23202555;0.071348205;0.2296796;0.9425078 +14306;3;-0.21890259;0.013763428;-0.23391724 +14308;0;-0.38208008;3.8768158;10.491547 +14308;1;-0.26637927;4.6167364;8.651641 +14308;3;-0.18774414;0.022323608;-0.23330688 +14308;5;999.6002 +14311;4;11.8927;-0.74157715;-64.94751 +14311;6;-0.40947437;-0.3537405;0.036401812 +14311;7;0.9117033;-0.37347656;0.17120865;0.0;0.40942833;0.86053234;-0.30307174;0.0;-0.034140397 +14311;0;-0.39640808;3.8245544;10.453384 +14311;3;-0.15231323;0.03149414;-0.23452759 +14312;12;0.23137833;0.071353026;0.22919911;0.9427835 +14313;0;-0.39640808;3.7817993;10.367554 +14313;3;-0.11505127;0.038208008;-0.23330688 +14313;1;-0.27281678;4.6076765;8.656269 +14313;2;-0.045114577;0.6168585;-1.891448; +14315;0;-0.40119934;3.7437897;10.37709 +14315;12;0.23085739;0.07142901;0.22871597;0.9430227 +14315;3;-0.073516846;0.04675293;-0.22964478 +14317;0;-0.44895935;3.6962738;10.358002 +14318;1;-0.27978343;4.601765;8.659191 +14318;3;-0.03440857;0.054092407;-0.22413635 +14320;4;11.8927;0.1586914;-65.69672 +14320;6;-0.38401735;-0.34246904;0.04331709 +14320;7;0.9208492;-0.35289183;0.16584364;0.0;0.38777962;0.873325;-0.2948398;0.0;-0.04078884 +14320;0;-0.48718262;3.682022;10.372314 +14320;3;0.004058838;0.062026978;-0.21925354 +14322;12;0.23051344;0.0715394;0.22806866;0.9432552 +14323;0;-0.48239136;3.6962738;10.310318 +14323;1;-0.28728533;4.599092;8.660366 +14323;3;0.042541504;0.073028564;-0.21376038 +14325;0;-0.5110626;3.7865448;10.1577 +14325;3;0.07736206;0.0846405;-0.20458984 +14327;12;0.23033115;0.07176879;0.2276052;0.9433943 +14328;0;-0.57315063;3.8055573;9.962158 +14328;1;-0.29544547;4.599761;8.659736 +14328;3;0.11340332;0.088912964;-0.19726562 +14332;4;13.243103;-0.14038086;-64.94751 +14332;6;-0.3876383;-0.36434418;0.057469428 +14332;7;0.91653925;-0.35318998;0.18765008;0.0;0.39632756;0.8650324;-0.30764166;0.0;-0.05366745 +14332;0;-0.6687012;3.7770538;9.8619995 +14332;3;0.14822388;0.08647156;-0.19360352 +14333;12;0.23031637;0.072089545;0.22716592;0.9434793 +14334;1;-0.30384886;4.603437;8.657492 +14334;0;-0.68304443;3.7342834;9.728455 +14334;3;0.18365479;0.080963135;-0.19419861 +14334;2;0.19500178;0.87233925;-1.4895964; +14335;0;-0.68304443;3.6962738;9.585388 +14335;3;0.21969604;0.07485962;-0.1899414 +14337;12;0.23045933;0.072465755;0.22674914;0.94351584 +14338;1;-0.31186295;4.610168;8.653624 +14338;0;-0.70692444;3.729538;9.404144 +14340;3;0.25146484;0.06385803;-0.1905365 +14341;4;13.392639;1.05896;-64.64691 +14341;6;-0.32731563;-0.37659404;0.075030476 +14341;7;0.9353819;-0.2989723;0.18888192;0.0;0.34670123;0.88055193;-0.32315117;0.0;-0.06970709 +14341;0;-0.69737244;3.7770538;9.304001 +14341;3;0.28321838;0.051651;-0.1917572 +14341;12;0.23077944;0.07285866;0.22629969;0.94351524 +14342;1;-0.3189861;4.6197124;8.6482725 +14342;0;-0.69737244;3.796051;9.294464 +14342;3;0.30949402;0.040649414;-0.19360352 +14344;0;-0.65914917;3.8245544;9.213379 +14344;3;0.3339386;0.03086853;-0.19726562 +14345;12;0.23125976;0.07324296;0.22585112;0.94347537 +14348;1;-0.32523075;4.631586;8.641686 +14348;0;-0.63049316;3.8483124;9.127518 +14349;3;0.35409546;0.023544312;-0.20031738 +14349;5;999.6002 +14349;4;13.243103;-1.1901855;-64.94751 +14349;6;-0.34409916;-0.39815;0.06896653 +14349;7;0.9301285;-0.31096128;0.19535604;0.0;0.36169863;0.8677448;-0.34087083;0.0;-0.06352157 +14349;0;-0.57315063;3.8150635;9.070297 +14350;3;0.3718109;0.018661499;-0.20397949 +14350;12;0.23187841;0.07360582;0.22537185;0.94340986 +14351;1;-0.3309174;4.6451645;8.63418 +14353;0;-0.54927063;3.8150635;8.994003 +14353;3;0.3846283;0.012542725;-0.2076416 +14353;2;0.28655416;0.8688483;-0.6224108; +14353;0;-0.5445099;3.8388062;8.903381 +14354;3;0.39562988;0.0113220215;-0.21070862 +14354;12;0.2325996;0.07395883;0.22486247;0.94332623 +14356;0;-0.55882263;3.8578186;8.688751 +14356;1;-0.33638948;4.6599684;8.625986 +14356;3;0.40600586;0.011947632;-0.21559143 +14358;4;13.093567;-0.29144287;-66.29639 +14358;6;-0.31682038;-0.4170894;0.064227186 +14358;7;0.9401711;-0.28483844;0.18693641;0.0;0.335611;0.8687693;-0.3641498;0.0;-0.058680743 +14360;0;-0.5158386;3.9100647;8.54567 +14366;3;0.41456604;0.0070648193;-0.21986389 +14366;12;0.23339821;0.07430479;0.22429356;0.94323725 +14366;0;-0.43940735;3.9148254;8.507523 +14366;1;-0.34187046;4.6757603;8.617221 +14366;3;0.42189026;3.5095215E-4;-0.2223053 +14366;0;-0.38685608;3.8958282;8.459839 +14366;12;0.23424412;0.074661694;0.22373478;0.9431321 +14366;3;0.4298401;-0.002090454;-0.2259674 +14366;0;-0.39640808;3.8815765;8.41214 +14366;3;0.43533325;-0.003326416;-0.22779846 +14366;1;-0.346958;4.6921635;8.608097 +14370;4;11.593628;-0.74157715;-64.94751 +14370;6;-0.30888867;-0.43189296;0.047088496 +14370;7;0.9456262;-0.27608532;0.17195389;0.0;0.3224342;0.865193;-0.38402802;0.0;-0.042748798 +14370;12;0.23512964;0.075003535;0.22315352;0.9430223 +14370;0;-0.3295288;3.8483124;8.316757 +14370;3;0.43840027;-8.69751E-4;-0.23086548 +14371;0;-0.2960968;3.8673248;8.245209 +14372;1;-0.35201523;4.7090135;8.598685 +14372;2;0.049660534;0.8450551;0.08036804; +14372;3;0.44084167;-8.69751E-4;-0.23269653 +14372;0;-0.24354553;3.9005737;8.125992 +14373;12;0.2360452;0.07534641;0.22255887;0.94290686 +14373;3;0.44511414;0.002166748;-0.23330688 +14375;0;-0.20054626;3.8768158;8.130753 +14375;1;-0.3571495;4.726184;8.589048 +14375;3;0.44633484;0.0052337646;-0.23452759 +14377;4;13.392639;-1.0406494;-65.84625 +14377;6;-0.40390497;-0.44480515;0.024660155 +14377;7;0.91508394;-0.35476986;0.19172814;0.0;0.4026486;0.8300577;-0.38584757;0.0;-0.02225833 +14378;0;-0.147995;3.9195862;7.997223 +14378;3;0.4506073;0.011947632;-0.23513794 +14378;12;0.2369775;0.07569074;0.22194155;0.9427909 +14380;0;-0.138443;3.9575806;7.854141 +14380;1;-0.36254892;4.7437067;8.579156 +14380;3;0.451828;0.01499939;-0.236969 +14382;0;-0.033355713;3.9860992;7.806427 +14382;3;0.45487976;0.016830444;-0.2394104 +14383;12;0.23792678;0.0760576;0.22134043;0.9426635 +14384;0;0.03352356;3.962326;7.773056 +14385;1;-0.3681174;4.7615013;8.569056 +14385;3;0.45610046;0.018661499;-0.24307251 +14385;5;999.6002 +14389;4;13.392639;-1.0406494;-65.84625 +14389;6;-0.44133633;-0.47141448;-0.0043127635 +14389;7;0.90500987;-0.38055772;0.1900867;0.0;0.4253732;0.80555964;-0.41246966;0.0;0.0038423445 +14389;0;0.08607483;3.9908295;7.777817 +14389;3;0.4542694;0.024154663;-0.24490356 +14390;12;0.23888484;0.07643473;0.22073756;0.94253206 +14390;1;-0.37391424;4.779339;8.558867 +14391;2;-0.33787555;0.8465967;0.6479702; +14391;0;0.09562683;3.9765778;7.7492065 +14391;3;0.44999695;0.029647827;-0.24797058 +14392;0;0.1290741;3.9480896;7.682434 +14392;12;0.23984322;0.07682414;0.22012527;0.9424003 +14393;3;0.44328308;0.038208008;-0.25224304 +14394;0;0.1434021;3.9860992;7.6347504 +14394;1;-0.3803027;4.7968097;8.548807 +14394;3;0.43533325;0.04675293;-0.2552948 +14396;4;12.342834;-1.940918;-65.54718 +14396;6;-0.44443858;-0.48109815;-0.018780606 +14396;7;0.9064294;-0.3811462;0.18197094;0.0;0.42202926;0.80036706;-0.42579812;0.0;0.01664779 +14397;0;0.20072937;4.019348;7.558426 +14397;3;0.42617798;0.05531311;-0.26078796 +14397;12;0.24078548;0.07722005;0.21944092;0.9422872 +14399;0;0.21984863;4.0478516;7.510742 +14399;1;-0.38746354;4.8137264;8.538971 +14399;3;0.41944885;0.06263733;-0.2662964 +14401;0;0.26760864;4.0478516;7.515518 +14401;3;0.41151428;0.06997681;-0.2687378 +14402;12;0.24168059;0.077663474;0.21882023;0.9421659 +14404;0;0.27236938;4.085861;7.4916687 +14404;1;-0.39543658;4.8301177;8.529344 +14404;3;0.3980713;0.07791138;-0.27178955 +14407;12;0.24253969;0.07813974;0.21818618;0.94205284 +14407;4;12.342834;-1.940918;-65.54718 +14407;6;-0.46369419;-0.49901733;-0.0363403 +14407;7;0.9015924;-0.3927139;0.18140264;0.0;0.43140864;0.7853364;-0.4439969;0.0;0.031901695 +14407;0;0.28671265;4.1048584;7.477356 +14407;3;0.38401794;0.085250854;-0.2748413 +14408;0;0.27716064;4.142868;7.5012054 +14409;1;-0.40409836;4.845423;8.520251 +14409;2;-0.6630448;0.81129026;0.9642124; +14409;3;0.36691284;0.09196472;-0.27850342 +14411;0;0.30104065;4.1523743;7.4630585 +14412;12;0.24333113;0.078637116;0.21755658;0.94195294 +14412;3;0.34797668;0.097457886;-0.28155518 +14413;0;0.25328064;4.142868;7.4821167 +14413;1;-0.41346192;4.8593388;8.511873 +14414;3;0.32781982;0.10296631;-0.28277588 +14416;4;13.693237;-1.0406494;-65.54718 +14416;6;-0.47949663;-0.50543886;-0.033838548 +14416;7;0.8942765;-0.40364853;0.1932287;0.0;0.44653463;0.7762901;-0.4449498;0.0;0.029601794 +14417;0;0.30104065;4.1618805;7.477356 +14417;3;0.30522156;0.105407715;-0.28277588 +14417;12;0.24403912;0.0791463;0.21690929;0.9418765 +14418;1;-0.4232615;4.871585;8.504389 +14418;0;0.27236938;4.199875;7.4487457 +14419;3;0.2814026;0.10784912;-0.2834015 +14421;0;0.26760864;4.2378845;7.439209 +14421;12;0.24465184;0.07966256;0.21628495;0.94181746 +14421;3;0.25941467;0.109680176;-0.2834015 +14423;0;0.26760864;4.2711487;7.4487457 +14423;1;-0.43329135;4.882013;8.497901 +14424;3;0.2349701;0.109680176;-0.2834015 +14424;5;999.59265 +14425;4;13.693237;-1.0406494;-65.54718 +14425;6;-0.4719455;-0.52035654;-0.03591123 +14425;7;0.8982266;-0.39444733;0.19390781;0.0;0.4384273;0.77279603;-0.45887643;0.0;0.031151388 +14426;0;0.27236938;4.299652;7.4868927 +14426;3;0.20809937;0.11029053;-0.28277588 +14426;12;0.24516025;0.08016579;0.21567056;0.9417835 +14428;0;0.25328064;4.3043976;7.4916687 +14428;1;-0.4433701;4.890446;8.49253 +14428;2;-0.75331265;0.68269825;1.0155363; +14428;3;0.18182373;0.109680176;-0.28277588 +14430;0;0.23893738;4.3186646;7.5727386 +14431;12;0.24555624;0.08064714;0.21506657;0.94177735 +14431;3;0.154953;0.11029053;-0.28277588 +14433;0;0.25328064;4.3376617;7.5918274 +14433;1;-0.4534651;4.8966575;8.488418 +14433;3;0.13111877;0.11090088;-0.28155518 +14435;4;13.093567;-0.59051514;-65.54718 +14435;6;-0.44825515;-0.5188544;-0.033349905 +14435;7;0.9078696;-0.3763538;0.18474469;0.0;0.4182515;0.7825951;-0.46109688;0.0;0.028955283 +14435;0;0.25805664;4.3376617;7.6728973 +14436;3;0.10545349;0.11273193;-0.28033447 +14436;12;0.245836;0.08108178;0.21440792;0.9418172 +14438;0;0.23416138;4.3091583;7.6728973 +14438;1;-0.46358627;4.9007487;8.485509 +14438;3;0.08042908;0.12007141;-0.27850342 +14440;0;0.23893738;4.3519135;7.730133 +14440;12;0.24599324;0.081510834;0.21383005;0.9418705 +14441;3;0.055374146;0.12310791;-0.27789307 +14442;0;0.21028137;4.3281555;7.7969055 +14443;1;-0.47406536;4.90274;8.483779 +14443;3;0.02909851;0.12922668;-0.2748413 +14445;4;13.093567;-0.59051514;-65.54718 +14445;6;-0.4455723;-0.5066052;-0.026963314 +14445;7;0.9076739;-0.3768426;0.18471001;0.0;0.4190136;0.7890243;-0.44929755;0.0;0.023573777 +14445;12;0.24602868;0.081935;0.21327366;0.9419506 +14446;0;0.20550537;4.3519135;7.8398285 +14446;3;0.007736206;0.1347351;-0.2736206 +14447;0;0.16729736;4.3614197;7.8779755 +14448;1;-0.48492032;4.902671;8.483206 +14448;2;-0.7490592;0.579092;0.75371075; +14448;3;-0.014266968;0.14021301;-0.27178955 +14450;12;0.24594514;0.08235776;0.21274114;0.942056 +14450;0;0.1338501;4.356659;7.9638214 +14450;3;-0.03503418;0.14755249;-0.2675171 +14452;0;0.10041809;4.3614197;8.030594 +14452;1;-0.4962415;4.9007645;8.483652 +14453;3;-0.05458069;0.1524353;-0.26507568 +14454;4;13.542175;-1.4907837;-64.94751 +14454;6;-0.4514791;-0.4974979;-0.01250379 +14454;7;0.90233576;-0.38340873;0.19694628;0.0;0.43089366;0.7907281;-0.43483293;0.0;0.010987787 +14457;12;0.24575731;0.08277936;0.21221064;0.94218767 +14457;0;0.07652283;4.375656;8.068741 +14457;3;-0.072906494;0.15855408;-0.26139832 +14457;1;-0.507934;4.897235;8.484999 +14459;0;0.066970825;4.389923;8.135513 +14459;3;-0.09121704;0.16404724;-0.25712585 +14460;12;0.24547285;0.083211854;0.21173127;0.94233155 +14461;0;0.009643555;4.389923;8.135513 +14461;3;-0.10832214;0.17198181;-0.25346375 +14462;1;-0.520044;4.8922186;8.487159 +14462;0;-0.023803711;4.389923;8.202286 +14462;3;-0.12605286;0.17749023;-0.24980164 +14465;5;999.59265 +14465;4;13.542175;-2.090454;-66.89758 +14465;6;-0.42184335;-0.49141335;0.0029020747 +14466;7;0.91177124;-0.3609922;0.1958517;0.0;0.4106905;0.80437607;-0.4293161;0.0;-0.002558659 +14467;12;0.24510023;0.08365399;0.21128301;0.94249 +14467;0;-0.06201172;4.4184265;8.221359 +14467;3;-0.14009094;0.17993164;-0.24246216 +14467;0;-0.11933899;4.413666;8.278595 +14467;2;-0.5949986;0.51283264;0.34987354; +14468;3;-0.15353394;0.18115234;-0.2381897 +14468;1;-0.5324734;4.8858385;8.490062 +14470;12;0.24464501;0.084102385;0.21086694;0.9426616 +14470;0;-0.147995;4.380417;8.345367 +14470;3;-0.16880798;0.18054199;-0.23330688 +14474;0;-0.20054626;4.366165;8.38829 +14474;3;-0.18469238;0.1817627;-0.23025513 +14474;1;-0.54484326;4.8782187;8.493659 +14475;12;0.24412453;0.08452855;0.2104406;0.9428536 +14475;4;13.243103;-2.5405884;-65.69672 +14475;6;-0.39222482;-0.47980145;0.023903329 +14475;7;0.9195797;-0.33908466;0.1984812;0.0;0.39233106;0.8197221;-0.41729143;0.0;-0.021202305 +14475;0;-0.24832153;4.3281555;8.464584 +14475;3;-0.20057678;0.18054199;-0.22413635 +14477;0;-0.3152008;4.3043976;8.540909 +14477;1;-0.5572343;4.869138;8.498064 +14477;3;-0.21829224;0.17687988;-0.21925354 +14481;12;0.24352026;0.084949866;0.21007615;0.94305325 +14481;0;-0.29130554;4.290146;8.617218 +14481;3;-0.23477173;0.17382812;-0.21315002 +14482;0;-0.3199768;4.233139;8.664902 +14482;3;-0.25187683;0.1695404;-0.2064209 +14482;1;-0.5690592;4.8586197;8.503299 +14488;12;0.24284251;0.08533249;0.20974183;0.9432679 +14488;1;-0.58032286;4.846628;8.509379 +14488;2;-0.32698524;0.5674548;-0.062086105; +14489;4;14.292908;-2.8411865;-66.14685 +14489;6;-0.4177627;-0.4541678;0.03691115 +14489;7;0.90680796;-0.36458763;0.21160166;0.0;0.42023766;0.8213436;-0.38573956;0.0;-0.0331618 +14489;0;-0.38685608;4.2426453;8.698288 +14489;3;-0.27082825;0.16282654;-0.19909668 +14489;0;-0.43940735;4.209381;8.7603 +14489;3;-0.28852844;0.153656;-0.19360352 +14489;12;0.24208863;0.08567362;0.2094381;0.9434982 +14489;0;-0.47283936;4.209381;8.831833 +14489;3;-0.30381775;0.14450073;-0.18748474 +14492;0;-0.5206146;4.1618805;8.941528 +14493;3;-0.3203125;0.13595581;-0.18322754 +14493;1;-0.5906927;4.833121;8.516345 +14493;4;12.342834;-1.940918;-65.84625 +14493;6;-0.31305063;-0.43498483;0.058158685 +14493;7;0.94224674;-0.27928388;0.18485582;0.0;0.33074534;0.8628009;-0.38233772;0.0;-0.05271301 +14495;0;-0.5301666;4.100113;9.008301 +14495;3;-0.339859;0.12617493;-0.17651367 +14495;12;0.24129145;0.08586258;0.2088078;0.94382495 +14495;0;-0.5636139;4.0763702;9.056 +14496;1;-0.6001229;4.81808;8.524204 +14496;3;-0.3581848;0.117004395;-0.1691742 +14507;17;1;38dead6d7725;3322;1636;-65; +14507;17;1;38dead6d60ff;3019;1790;-63; +14508;17;1;1c1bb5efa29a;8494;3858;-71; +14509;17;1;1c1bb5ecd182;3907;1237;-73; +14509;12;0.24039038;0.08607856;0.20854811;0.9440926 +14509;1;-0.6084637;4.8014946;8.532968 +14509;12;0.23941539;0.08622343;0.20831849;0.94437766 +14509;2;-0.10501754;0.7275605;-0.5500927; +14509;1;-0.61566997;4.78364;8.542473 +14509;0;-0.5874939;4.043091;9.108459 +14509;3;-0.3740692;0.10784912;-0.16122437 +14509;0;-0.55882263;4.019348;9.179993 +14510;3;-0.38934326;0.09806824;-0.15452576 +14510;5;999.59265 +14510;4;14.442444;0.009155273;-64.64691 +14510;6;-0.38075694;-0.41201493;0.060798947 +14510;7;0.9176258;-0.34052435;0.20495397;0.0;0.39352646;0.85069263;-0.34850988;0.0;-0.05567672 +14510;0;-0.5874939;3.9813385;9.213379 +14510;3;-0.4021759;0.08769226;-0.14718628 +14510;12;0.23838215;0.08630073;0.20811594;0.9446767 +14511;0;-0.5874939;3.9955902;9.299225 +14511;3;-0.41377258;0.077301025;-0.13986206 +14511;0;-0.6113739;3.9290771;9.342148 +14511;3;-0.42294312;0.06814575;-0.13069153 +14512;1;-0.6217169;4.764763;8.55258 +14513;0;-0.63049316;3.8768158;9.404144 +14513;3;-0.4315033;0.060195923;-0.12275696 +14513;4;13.392639;0.009155273;-65.097046 +14513;6;-0.34511834;-0.3902285;0.066943996 +14513;7;0.9303189;-0.31287482;0.1913537;0.0;0.36149633;0.8702905;-0.3345371;0.0;-0.06186506 +14513;0;-0.6495819;3.8863068;9.413681 +14513;3;-0.4388275;0.050430298;-0.112976074 +14514;12;0.23731339;0.08629157;0.20785762;0.9450034 +14514;0;-0.6687012;3.8245544;9.418457 +14514;1;-0.626687;4.7451787;8.563099 +14515;3;-0.44065857;0.040039062;-0.10321045 +14519;0;-0.6161499;3.796051;9.404144 +14519;12;0.23620832;0.086244956;0.2077156;0.94531566 +14519;3;-0.4388275;0.029647827;-0.09465027 +14520;1;-0.63032985;4.725396;8.573764 +14520;0;-0.63049316;3.7770538;9.404144 +14521;3;-0.4363861;0.018051147;-0.0867157 +14523;4;13.542175;-1.1901855;-65.69672 +14523;6;-0.36843812;-0.38114202;0.066943996 +14523;7;0.92183936;-0.33431393;0.19607686;0.0;0.38256544;0.86594707;-0.32214773;0.0;-0.062093724 +14523;0;-0.59706116;3.7580414;9.418457 +14523;3;-0.42965698;0.0070648193;-0.07632446 +14523;12;0.23510604;0.08613666;0.20760606;0.94562435 +14524;1;-0.63261664;4.7058983;8.584312 +14524;0;-0.59706116;3.7485352;9.4423065 +14524;3;-0.419281;-0.0057678223;-0.06716919 +14525;2;-0.047895193;0.90160704;-0.8358469; +14531;0;-0.5349426;3.7865448;9.423233 +14531;12;0.23403467;0.08596834;0.20752251;0.94592375 +14531;3;-0.405838;-0.015533447;-0.056167603 +14531;1;-0.6333912;4.687363;8.594391 +14531;0;-0.5062866;3.8103027;9.399368 +14531;3;-0.3899536;-0.025924683;-0.04699707 +14533;4;14.442444;-0.59051514;-67.49725 +14533;6;-0.40699846;-0.3846304;0.053811897 +14533;7;0.90899503;-0.36693254;0.19770862;0.0;0.41381463;0.8512187;-0.32277614;0.0;-0.04985618 +14533;0;-0.47763062;3.8197937;9.43277 +14533;3;-0.37101746;-0.0320282;-0.037841797 +14533;12;0.23303185;0.085737355;0.2074451;0.9462092 +14534;0;-0.46328735;3.8197937;9.394608 +14534;1;-0.63290614;4.6702356;8.603746 +14534;3;-0.35147095;-0.03692627;-0.026229858 +14535;0;-0.45851135;3.8197937;9.351685 +14536;12;0.23211503;0.08547439;0.20741697;0.9464645 +14536;3;-0.32765198;-0.041809082;-0.014633179 +14538;0;-0.4298401;3.8483124;9.342148 +14538;1;-0.6314662;4.6549096;8.612153 +14538;3;-0.30137634;-0.046691895;-0.0054779053 +14539;5;999.59265 +14540;4;12.942505;-1.7913818;-66.14685 +14540;6;-0.3950625;-0.39037627;0.045978416 +14540;7;0.9152657;-0.35591087;0.18872255;0.0;0.40060222;0.85353357;-0.33316416;0.0;-0.042504296 +14541;0;-0.39163208;3.8815765;9.261063 +14541;3;-0.27511597;-0.051574707;0.006134033 +14541;12;0.23130582;0.08519443;0.20742485;0.9466861 +14543;0;-0.36297607;3.9005737;9.19429 +14543;1;-0.6290623;4.6418147;8.619394 +14543;2;-0.21676677;0.8289223;-0.7460041; +14543;3;-0.24945068;-0.054641724;0.014694214 +14545;0;-0.37728882;3.9100647;9.14183 +14546;12;0.23062414;0.084904276;0.20746425;0.94686973 +14546;3;-0.22013855;-0.055252075;0.025680542 +14548;0;-0.34864807;3.962326;9.094147 +14548;3;-0.19203186;-0.055252075;0.036071777 +14549;1;-0.6259764;4.6311674;8.625344 +14550;4;14.593506;0.9094238;-65.69672 +14550;6;-0.41666353;-0.41063038;0.038318872 +14550;7;0.9075839;-0.37106773;0.19646908;0.0;0.41839886;0.83842593;-0.34926236;0.0;-0.0351248 +14551;0;-0.3295288;4.0145874;9.036911 +14551;3;-0.16638184;-0.05769348;0.0446167 +14552;12;0.23008353;0.08461532;0.20752044;0.9470148 +14553;0;-0.3343048;4.090622;8.974915 +14553;1;-0.6223445;4.6230683;8.629951 +14553;3;-0.14073181;-0.058303833;0.051956177 +14555;0;-0.3104248;4.1571198;8.912918 +14555;12;0.22968319;0.08434532;0.20762384;0.9471135 +14555;3;-0.11567688;-0.058914185;0.059890747 +14557;0;-0.3343048;4.2188873;8.865219 +14557;1;-0.61827326;4.6173363;8.63331 +14558;3;-0.093688965;-0.060134888;0.06843567 +14560;4;15.04364;0.30975342;-65.097046 +14560;6;-0.41619548;-0.44390023;0.03769185 +14560;7;0.9074414;-0.36510187;0.20796841;0.0;0.41879842;0.82599056;-0.37728956;0.0;-0.034030825 +14560;0;-0.3343048;4.275894;8.793686 +14560;3;-0.073532104;-0.059524536;0.07577515 +14561;12;0.22941221;0.08409136;0.20775026;0.94717395 +14562;0;-0.3343048;4.3519135;8.774612 +14562;1;-0.6138179;4.613692;8.635576 +14562;2;-0.3174795;0.5154705;-0.3298664; +14563;3;-0.05581665;-0.059524536;0.08065796 +14564;0;-0.2960968;4.366165;8.717377 +14565;12;0.22925468;0.08384955;0.20790361;0.9471999 +14565;3;-0.041152954;-0.058914185;0.08494568 +14567;0;-0.3104248;4.480179;8.626755 +14567;1;-0.60911715;4.611715;8.636966 +14567;3;-0.032592773;-0.058303833;0.08860779 +14569;4;13.243103;-0.14038086;-66.44745 +14569;6;-0.33973628;-0.47873142;0.03596844 +14569;7;0.9367125;-0.2957758;0.18731347;0.0;0.3486415;0.83684826;-0.4220594;0.0;-0.03191799 +14570;0;-0.3199768;4.5419617;8.579071 +14570;3;-0.024658203;-0.05769348;0.0934906 +14571;12;0.22919777;0.08360532;0.2079936;0.9472155 +14571;0;-0.2960968;4.560959;8.54567 +14572;1;-0.6043;4.6107855;8.637799 +14572;3;-0.019760132;-0.055862427;0.09837341 +14574;0;-0.35820007;4.6417236;8.459839 +14574;12;0.22918704;0.08339229;0.20817852;0.94719625 +14574;3;-0.019165039;-0.055862427;0.10020447 +14576;0;-0.3438568;4.6797333;8.35968 +14576;1;-0.59946054;4.6104655;8.638308 +14577;3;-0.019760132;-0.058303833;0.102645874 +14577;5;999.59985 +14579;4;13.243103;0.45928955;-65.24658 +14579;6;-0.31398517;-0.5099744;0.041109595 +14579;7;0.94411045;-0.26955223;0.1897287;0.0;0.32767183;0.83008814;-0.4512037;0.0;-0.03586858 +14579;0;-0.3390808;4.760498;8.33107 +14579;3;-0.0234375;-0.06074524;0.10508728 +14579;12;0.22920816;0.08318893;0.20838058;0.9471646 +14581;0;-0.3534088;4.7794952;8.273819 +14581;1;-0.5943408;4.6102495;8.638778 +14581;2;-0.30940747;0.033194065;0.13610172; +14581;3;-0.03137207;-0.0662384;0.10630798 +14583;0;-0.32476807;4.8365173;8.202286 +14584;12;0.2292349;0.08297509;0.2085923;0.94713026 +14584;3;-0.036865234;-0.06990051;0.1081543 +14586;0;-0.3199768;4.8555145;8.178452 +14586;1;-0.5888002;4.6096797;8.639461 +14586;3;-0.045425415;-0.07357788;0.10752869 +14588;4;13.392639;-0.29144287;-65.097046 +14588;6;-0.3154833;-0.53543574;0.03910443 +14588;7;0.9437308;-0.26685172;0.19535168;0.0;0.32900095;0.81760013;-0.472534;0.0;-0.033623055 +14589;0;-0.3295288;4.917267;8.164139 +14589;3;-0.056427002;-0.07846069;0.10874939 +14590;12;0.22924726;0.08272871;0.20877637;0.94710827 +14591;0;-0.3056488;4.9933014;8.130753 +14592;1;-0.5829116;4.6085596;8.640457 +14592;3;-0.06680298;-0.083343506;0.10997009 +14593;0;-0.3295288;4.998047;8.102127 +14594;12;0.22923018;0.08246525;0.20899265;0.9470877 +14594;3;-0.07841492;-0.08639526;0.1105957 +14595;0;-0.28652954;5.050308;8.08783 +14596;3;-0.08879089;-0.08944702;0.10752869 +14596;1;-0.57660574;4.6066585;8.641894 +14598;4;13.542175;0.1586914;-65.24658 +14598;6;-0.31107074;-0.5579098;0.035412434 +14598;7;0.9456724;-0.25966555;0.19564633;0.0;0.3237306;0.80764747;-0.4928529;0.0;-0.030036341 +14598;0;-0.26742554;5.0788116;8.03537 +14598;3;-0.10101318;-0.09310913;0.10630798 +14599;12;0.22917454;0.08216905;0.2092135;0.94707817 +14600;0;-0.26742554;5.0930634;8.001968 +14601;3;-0.11140442;-0.095565796;0.10508728 +14601;1;-0.5700623;4.60394;8.643777 +14601;2;-0.30905676;-0.3510852;0.51577854; +14603;0;-0.25309753;5.06456;8.016281 +14603;12;0.22907354;0.08184915;0.20942749;0.94708294 +14603;3;-0.12055969;-0.09617615;0.10205078 +14605;0;-0.2722168;5.0930634;7.98291 +14605;3;-0.13278198;-0.09739685;0.10205078 +14606;1;-0.5634063;4.6003475;8.646126 +14607;4;13.392639;-0.29144287;-66.596985 +14607;6;-0.30117476;-0.56762666;0.034086738 +14607;7;0.94899875;-0.25012267;0.19193801;0.0;0.31396785;0.80522674;-0.50302505;0.0;-0.028735667 +14608;0;-0.28652954;5.0835724;7.997223 +14608;3;-0.14376831;-0.09617615;0.099594116 +14608;12;0.22893114;0.08150213;0.20959337;0.9471107 +14610;0;-0.28652954;5.0930634;7.987671 +14611;1;-0.55681694;4.5958385;8.648951 +14611;3;-0.15293884;-0.094955444;0.0947113 +14613;0;-0.26264954;5.0883026;8.001968 +14613;12;0.22873461;0.08115361;0.20979837;0.9471427 +14614;3;-0.16271973;-0.090667725;0.091049194 +14615;0;-0.23876953;5.1025696;7.9685974 +14615;1;-0.5505258;4.5905156;8.652179 +14616;3;-0.17004395;-0.08456421;0.087387085 +14616;5;999.59985 +14617;4;12.342834;-0.59051514;-64.64691 +14617;6;-0.29252476;-0.56934685;0.029954845 +14617;7;0.95243335;-0.2428811;0.18406373;0.0;0.3037011;0.8064734;-0.50731283;0.0;-0.025225794 +14618;0;-0.24354553;5.0835724;8.030594 +14618;3;-0.17982483;-0.0796814;0.08554077 +14618;12;0.2284908;0.08080683;0.20999166;0.9471884 +14620;0;-0.25787354;5.121567;8.03537 +14620;1;-0.5447922;4.584399;8.655784 +14620;2;-0.32567835;-0.4859352;0.6392269; +14620;3;-0.18714905;-0.07296753;0.08126831 +14623;0;-0.28652954;5.06456;8.049683 +14623;3;-0.19203186;-0.0650177;0.0776062 +14623;12;0.22819799;0.080479234;0.21018013;0.94724506 +14625;1;-0.5398535;4.5776463;8.659666 +14625;0;-0.29130554;5.059799;8.059219 +14625;3;-0.19570923;-0.05647278;0.07455444 +14627;4;13.842773;0.45928955;-65.24658 +14627;6;-0.31427106;-0.560336;0.0361299 +14627;7;0.9444668;-0.26185113;0.1985357;0.0;0.32717913;0.8055884;-0.49394444;0.0;-0.03059813 +14627;0;-0.3199768;5.017044;8.08783 +14628;3;-0.19937134;-0.047912598;0.070877075 +14628;12;0.2278636;0.08017796;0.21034655;0.94731414 +14629;1;-0.5358085;4.570471;8.663707 +14630;0;-0.3199768;5.031311;8.140289 +14630;3;-0.2024231;-0.041809082;0.067840576 +14634;0;-0.36297607;5.0122986;8.140289 +14634;12;0.22749716;0.07991969;0.21052216;0.94738495 +14635;3;-0.2036438;-0.0332489;0.066604614 +14636;1;-0.5325725;4.562994;8.667846 +14637;0;-0.38208008;4.960037;8.154587 +14637;3;-0.20730591;-0.026535034;0.062942505 +14637;4;14.143372;0.009155273;-67.04712 +14637;6;-0.30320606;-0.5459778;0.046820376 +14637;7;0.9460819;-0.25517374;0.19953804;0.0;0.3214485;0.8156357;-0.48105007;0.0;-0.039999012 +14637;0;-0.39163208;4.9790497;8.192749 +14638;3;-0.20730591;-0.019821167;0.0605011 +14638;12;0.22710605;0.079697125;0.21069369;0.9474595 +14641;1;-0.53009605;4.5553007;8.672044 +14641;0;-0.41073608;5.0027924;8.2118225 +14641;2;-0.22836363;-0.44121122;0.52949333; +14642;3;-0.2024231;-0.012481689;0.058670044 +14643;0;-0.39640808;4.974289;8.254761 +14643;3;-0.19937134;-0.004547119;0.054397583 +14643;12;0.22669633;0.07950895;0.210861;0.94753623 +14644;1;-0.5283407;4.547787;8.676093 +14645;0;-0.40119934;4.9362793;8.273819 +14645;3;-0.19815063;0.0033874512;0.05255127 +14649;4;13.093567;1.3595581;-67.04712 +14649;6;-0.26818135;-0.53740984;0.048452273 +14649;7;0.956553;-0.22762625;0.18218857;0.0;0.28857464;0.8283307;-0.48020095;0.0;-0.041606035 +14649;0;-0.43463135;4.9220276;8.340591 +14649;12;0.22629662;0.07933481;0.21091993;0.94763315 +14649;3;-0.19386292;0.010101318;0.051956177 +14649;1;-0.52737314;4.5403776;8.680033 +14649;0;-0.44895935;4.907776;8.350128 +14649;3;-0.1902008;0.01927185;0.04827881 +14653;12;0.22588892;0.07922633;0.21107939;0.9477041 +14653;0;-0.44418335;4.9362793;8.35968 +14653;3;-0.18470764;0.024154663;0.047668457 +14654;1;-0.52714443;4.533294;8.683747 +14654;0;-0.47283936;4.8982697;8.41214 +14655;3;-0.17675781;0.03086853;0.046447754 +14656;5;999.59985 +14657;4;14.292908;1.2084961;-66.89758 +14657;6;-0.29173705;-0.52660686;0.05615008 +14657;7;0.94812363;-0.24864927;0.19807817;0.0;0.31417745;0.82798773;-0.46446583;0.0;-0.048517216 +14657;12;0.22548966;0.079159684;0.21123514;0.94777 +14658;0;-0.48239136;4.907776;8.41214 +14658;3;-0.17370605;0.038208008;0.0446167 +14663;1;-0.52755165;4.526655;8.687185 +14663;0;-0.5062866;4.869766;8.46936 +14663;2;-0.12318486;-0.37423992;0.31582832; +14663;3;-0.1706543;0.044921875;0.044006348 +14663;0;-0.5158386;4.850769;8.512299 +14664;3;-0.16453552;0.048599243;0.042785645 +14664;12;0.22510679;0.079130396;0.21138962;0.947829 +14664;0;-0.5349426;4.8317566;8.540909 +14664;1;-0.52855366;4.5202312;8.690469 +14664;3;-0.16087341;0.053482056;0.042175293 +14666;4;13.542175;2.2598267;-66.89758 +14667;6;-0.25912848;-0.513993;0.062551275 +14667;7;0.9568481;-0.22312923;0.18615876;0.0;0.2854448;0.84171575;-0.45829654;0.0;-0.0544334 +14667;0;-0.5445099;4.8127594;8.569519 +14667;12;0.22473657;0.07911884;0.21147834;0.94789803 +14667;3;-0.15660095;0.057754517;0.04095459 +14668;0;-0.5636139;4.8317566;8.607666 +14669;1;-0.52999973;4.5141172;8.693558 +14669;3;-0.15171814;0.06263733;0.04156494 +14671;0;-0.5683899;4.8222656;8.631531 +14671;12;0.22437455;0.079149544;0.21163148;0.9479471 +14671;3;-0.14620972;0.065078735;0.043395996 +14673;0;-0.54927063;4.817505;8.6410675 +14673;1;-0.53177226;4.508389;8.696423 +14673;3;-0.1413269;0.06997681;0.044006348 +14675;4;14.442444;1.05896;-67.04712 +14675;6;-0.2911602;-0.5077357;0.06347974 +14675;7;0.9471281;-0.25085;0.2000564;0.0;0.31603056;0.8370686;-0.4465879;0.0;-0.055434365 +14675;0;-0.5253906;4.803253;8.674438 +14675;3;-0.13705444;0.07485962;0.044006348 +14676;12;0.22402948;0.079200864;0.21178982;0.94798905 +14677;0;-0.5397186;4.7747498;8.693527 +14677;2;-0.034941375;-0.29767752;0.07836437; +14677;1;-0.5338297;4.5030184;8.699078 +14677;3;-0.13095093;0.077301025;0.046447754 +14680;0;-0.5110626;4.760498;8.70784 +14680;12;0.22369967;0.079273865;0.21195471;0.948024 +14683;3;-0.12728882;0.08035278;0.047668457 +14684;1;-0.53605056;4.498014;8.70153 +14684;0;-0.5015106;4.7319946;8.73645 +14684;3;-0.11933899;0.08279419;0.04827881 +14688;1;-0.53842384;4.4935074;8.703712 +14689;12;0.22338931;0.07935717;0.21210703;0.94805616 +14690;12;0.22310208;0.07946042;0.21228729;0.9480747 +14690;4;13.693237;0.7598877;-65.84625 +14690;6;-0.2972369;-0.49571216;0.057341464 +14690;7;0.94659406;-0.25762555;0.19387846;0.0;0.31846264;0.8410579;-0.43726793;0.0;-0.050411645 +14690;0;-0.5015106;4.712982;8.731674 +14691;3;-0.113845825;0.085250854;0.050735474 +14691;0;-0.49671936;4.7319946;8.750748 +14691;3;-0.1083374;0.0846405;0.050109863 +14691;0;-0.46328735;4.6654816;8.7603 +14691;3;-0.10040283;0.08401489;0.05255127 +14691;0;-0.45851135;4.6559753;8.78891 +14692;1;-0.5407327;4.48941;8.705683 +14692;3;-0.09307861;0.08401489;0.051956177 +14693;5;999.59985 +14694;4;12.942505;-0.14038086;-66.44745 +14694;6;-0.29429272;-0.48660588;0.052122056 +14694;7;0.94864124;-0.25639403;0.18531616;0.0;0.31298447;0.84592307;-0.4318044;0.0;-0.046051137 +14694;0;-0.45373535;4.627472;8.750748 +14694;3;-0.085128784;0.08279419;0.05317688 +14694;12;0.22283834;0.07956773;0.21247125;0.9480866 +14696;0;-0.42507935;4.622711;8.755524 +14696;1;-0.5429323;4.485958;8.707325 +14697;2;-0.110363245;-0.18562174;-0.052108765; +14697;3;-0.07841492;0.0821991;0.05255127 +14699;0;-0.46328735;4.603714;8.807983 +14699;12;0.2226102;0.07967792;0.21265367;0.94808996 +14699;3;-0.06802368;0.07974243;0.05317688 +14701;0;-0.4298401;4.560959;8.822296 +14702;1;-0.5450301;4.4830923;8.70867 +14709;3;-0.05886841;0.080963135;0.054397583 +14709;4;15.342712;0.7598877;-65.54718 +14709;6;-0.37249693;-0.47665644;0.04868352 +14709;7;0.922192;-0.32337505;0.21210977;0.0;0.38430753;0.82759964;-0.40912902;0.0;-0.043239877 +14709;0;-0.37252808;4.5847015;8.846146 +14709;3;-0.049087524;0.07913208;0.055007935 +14710;12;0.2224169;0.079785936;0.21283086;0.94808644 +14710;0;-0.37252808;4.57045;8.84137 +14710;1;-0.54694617;4.48102;8.709617 +14710;3;-0.040542603;0.07852173;0.056228638 +14710;12;0.22226717;0.0798991;0.21301106;0.94807166 +14711;17;1;38dead6d7725;3171;1106;-64; +14712;17;1;38dead6d60ff;4393;838;-65; +14712;17;1;1c1bb5efa29a;6201;1198;-68; +14713;17;1;1c1bb5ecd182;8910;2332;-69; +14713;0;-0.37728882;4.5514526;8.86998 +14713;3;-0.03137207;0.07974243;0.056228638 +14713;0;-0.3295288;4.537201;8.893829 +14713;3;-0.020980835;0.0821991;0.058670044 +14713;1;-0.54876244;4.4796476;8.710209 +14713;4;13.392639;1.6586304;-66.29639 +14713;6;-0.33109254;-0.47145823;0.03703446 +14713;7;0.9395726;-0.2896128;0.18255891;0.0;0.3407568;0.8425197;-0.41718724;0.0;-0.03298671 +14714;0;-0.35820007;4.5419617;8.860458 +14714;3;-0.010009766;0.08401489;0.058059692 +14714;12;0.22215787;0.080015935;0.21319133;0.94804686 +14715;0;-0.37252808;4.53244;8.84137 +14716;1;-0.55071455;4.4791455;8.710342 +14716;2;-0.21041417;-0.06416845;-0.14928532; +14716;3;-0.001449585;0.085250854;0.058670044 +14718;0;-0.37252808;4.5086975;8.81752 +14718;12;0.22209343;0.080153055;0.2133742;0.9480093 +14718;3;0.00894165;0.08769226;0.06111145 +14720;0;-0.38685608;4.4991913;8.774612 +14720;1;-0.552794;4.4794455;8.710056 +14720;3;0.017486572;0.09013367;0.062332153 +14722;4;13.392639;0.7598877;-65.84625 +14722;6;-0.32660797;-0.47340223;0.044059575 +14722;7;0.9397742;-0.2855478;0.1878478;0.0;0.3395403;0.8429722;-0.41726518;0.0;-0.039201323 +14723;0;-0.34864807;4.53244;8.798447 +14723;3;0.027267456;0.09196472;0.06416321 +14723;12;0.22207622;0.08029585;0.21351224;0.94797003 +14725;0;-0.3295288;4.53244;8.774612 +14725;1;-0.5549333;4.4805694;8.709343 +14725;3;0.03703308;0.09257507;0.066604614 +14727;0;-0.37252808;4.546707;8.73645 +14728;12;0.22209784;0.08046711;0.21370336;0.9479075 +14728;3;0.048034668;0.096847534;0.06965637 +14730;0;-0.35820007;4.5514526;8.731674 +14730;1;-0.55715436;4.4825892;8.708161 +14730;3;0.05657959;0.09989929;0.07394409 +14732;5;999.5956 +14733;4;14.442444;1.6586304;-65.54718 +14733;6;-0.35175902;-0.48016423;0.04100008 +14733;7;0.9314556;-0.30558762;0.1975011;0.0;0.36203435;0.83261126;-0.4191533;0.0;-0.036353562 +14733;0;-0.38685608;4.5657043;8.717377 +14734;3;0.06636047;0.1035614;0.07577515 +14734;12;0.2221657;0.08065621;0.21390319;0.94783044 +14734;0;-0.34864807;4.556198;8.65538 +14735;3;0.074905396;0.104782104;0.0776062 +14735;1;-0.5595412;4.4854736;8.706523 +14735;2;-0.2411241;-0.03417492;-0.05597782; +14737;0;-0.36775208;4.6084595;8.593384 +14737;12;0.22227888;0.08086906;0.21411973;0.94773686 +14737;3;0.08589172;0.10784912;0.08004761 +14739;0;-0.3343048;4.5894623;8.536133 +14739;1;-0.5619759;4.4892235;8.704433 +14739;3;0.09384155;0.109069824;0.08370972 +14741;4;14.743042;-0.29144287;-65.84625 +14741;6;-0.37197974;-0.49299344;0.03914349 +14741;7;0.92416453;-0.3201797;0.20833854;0.0;0.38043606;0.82067376;-0.426337;0.0;-0.034473486 +14742;0;-0.35820007;4.636963;8.497986 +14742;3;0.10421753;0.11090088;0.087387085 +14743;12;0.22243679;0.08109637;0.21433622;0.9476314 +14744;0;-0.3390808;4.660721;8.483673 +14744;1;-0.5644288;4.4938846;8.701869 +14744;3;0.11216736;0.11151123;0.08982849 +14747;0;-0.3295288;4.684494;8.426437 +14747;12;0.22264162;0.081341244;0.21457276;0.9475088 +14747;3;0.12132263;0.11212158;0.0934906 +14749;0;-0.3390808;4.6987305;8.38829 +14749;1;-0.5668023;4.499389;8.69887 +14749;3;0.12866211;0.113342285;0.0947113 +14751;4;13.693237;0.7598877;-67.04712 +14751;6;-0.31522566;-0.5102572;0.04040112 +14751;7;0.9438347;-0.27053893;0.18969604;0.0;0.32853264;0.82962185;-0.4514353;0.0;-0.03524519 +14752;0;-0.3390808;4.7319946;8.350128 +14752;3;0.13661194;0.11395264;0.09837341 +14753;12;0.22289121;0.08159776;0.21482036;0.9473719 +14754;1;-0.5691347;4.5056767;8.695462 +14754;0;-0.3199768;4.7747498;8.30722 +14754;2;-0.27325362;-0.15129948;0.23606491; +14754;3;0.1421051;0.11456299;0.102645874 +14757;0;-0.3152008;4.784256;8.2642975 +14758;3;0.14637756;0.11212158;0.10571289 +14758;12;0.22318257;0.08186419;0.21507698;0.9472221 +14760;1;-0.5712584;4.5126004;8.691732 +14760;0;-0.28652954;4.827011;8.249985 +14761;3;0.15187073;0.11151123;0.10874939 +14761;4;13.842773;-0.440979;-66.44745 +14761;6;-0.3325072;-0.5291239;0.034716964 +14761;7;0.93893826;-0.2817767;0.19747587;0.0;0.34277838;0.8159668;-0.46551168;0.0;-0.029963387 +14761;0;-0.2960968;4.841263;8.2165985 +14761;3;0.15249634;0.109069824;0.1105957 +14762;12;0.22351053;0.082126364;0.21532251;0.94706637 +14763;0;-0.2817688;4.869766;8.183212 +14764;1;-0.57309675;4.519909;8.687813 +14764;3;0.15309143;0.105407715;0.11242676 +14765;0;-0.2722168;4.874527;8.140289 +14767;12;0.22385864;0.08238775;0.21560353;0.9468974 +14767;3;0.15249634;0.1023407;0.11669922 +14770;0;-0.25787354;4.907776;8.173676 +14770;3;0.14759827;0.09562683;0.12159729 +14770;1;-0.5745218;4.5273123;8.683863 +14770;5;999.5956 +14774;4;13.542175;-0.14038086;-67.196655 +14774;6;-0.3181893;-0.54052114;0.031538814 +14774;7;0.9442546;-0.26824793;0.19085649;0.0;0.32810378;0.8144;-0.47864437;0.0;-0.027038177 +14774;0;-0.2960968;4.960037;8.121216 +14774;3;0.14576721;0.09074402;0.12463379 +14775;12;0.2242156;0.08263315;0.21589194;0.94672585 +14775;0;-0.26264954;4.969528;8.111679 +14775;3;0.13905334;0.08279419;0.12892151 +14775;1;-0.5753296;4.534577;8.680018 +14775;2;-0.3373919;-0.32990503;0.4865198; +14777;0;-0.24832153;5.007553;8.09259 +14777;12;0.22456995;0.08284624;0.2161954;0.94655406 +14777;3;0.13172913;0.07424927;0.13441467 +14779;0;-0.26264954;5.031311;8.102127 +14779;1;-0.5753019;4.5414557;8.676423 +14781;3;0.1237793;0.065078735;0.1399231 +14781;4;14.442444;1.05896;-65.84625 +14781;6;-0.3305299;-0.55547255;0.032406006 +14781;7;0.93982863;-0.27574947;0.20170344;0.0;0.34053516;0.8036601;-0.4880227;0.0;-0.027528986 +14781;0;-0.26264954;5.031311;8.09259 +14782;3;0.11399841;0.05531311;0.14541626 +14782;12;0.22491176;0.08301113;0.21648908;0.9463912 +14782;1;-0.5742484;4.547695;8.673224 +14783;0;-0.21966553;5.0550537;8.097366 +14783;3;0.10362244;0.045532227;0.15029907 +14785;0;-0.23399353;5.0930634;8.09259 +14785;12;0.22522812;0.083123714;0.21682481;0.94622934 +14785;3;0.0932312;0.036376953;0.1570282 +14787;0;-0.22921753;5.15007;8.1689 +14788;1;-0.5721378;4.553164;8.670494 +14789;3;0.08041382;0.026611328;0.16191101 +14790;4;15.04364;0.7598877;-65.84625 +14790;6;-0.35157415;-0.56233025;0.028052421 +14790;7;0.9333125;-0.29134738;0.20986804;0.0;0.35828036;0.79426587;-0.49069044;0.0;-0.023729658 +14790;0;-0.17666626;5.140564;8.1689 +14790;3;0.06819153;0.017440796;0.16557312 +14791;12;0.22551137;0.08317477;0.21717943;0.9460759 +14792;0;-0.19099426;5.173828;8.2070465 +14792;1;-0.5689526;4.5576496;8.668346 +14793;2;-0.38733912;-0.5147629;0.53060055; +14793;3;0.05596924;0.010726929;0.16923523 +14795;0;-0.19099426;5.2355957;8.249985 +14795;12;0.22575277;0.083164506;0.21755157;0.94593376 +14795;3;0.0443573;0.0046081543;0.17350769 +14797;0;-0.16711426;5.2070923;8.2642975 +14797;1;-0.56499755;4.561167;8.666755 +14798;3;0.033981323;3.5095215E-4;0.17779541 +14801;4;14.892578;-0.74157715;-65.69672 +14801;6;-0.37411082;-0.5621452;0.020218475 +14801;7;0.9267047;-0.30920798;0.213562;0.0;0.3754007;0.7875904;-0.48864663;0.0;-0.017105961 +14802;0;-0.157547;5.221344;8.297668 +14802;3;0.022369385;-0.0027160645;0.18267822 +14802;12;0.2259479;0.083101355;0.21793222;0.9458051 +14802;0;-0.17666626;5.2450867;8.335815 +14802;1;-0.5604663;4.563762;8.665684 +14803;3;0.011383057;-0.0051574707;0.18817139 +14804;0;-0.18621826;5.264099;8.373978 +14804;12;0.2260983;0.083004616;0.21833843;0.945684 +14804;3;9.918213E-4;-0.0082092285;0.19244385 +14807;0;-0.18621826;5.264099;8.38353 +14807;1;-0.5555161;4.5654545;8.665111 +14807;3;-0.0075683594;-0.011260986;0.19551086 +14808;5;999.5956 +14813;4;14.292908;-0.14038086;-66.44745 +14813;6;-0.34757444;-0.56057787;0.022208743 +14813;7;0.93594813;-0.28848597;0.20193279;0.0;0.35163513;0.7963019;-0.492195;0.0;-0.018808104 +14814;0;-0.20533752;5.2736053;8.416901 +14814;3;-0.014877319;-0.011260986;0.19978333 +14814;12;0.2262027;0.08287937;0.2187685;0.9455706 +14814;0;-0.171875;5.278351;8.445526 +14814;2;-0.41732526;-0.6711192;0.30996227; +14815;1;-0.5502234;4.5664167;8.664941 +14815;3;-0.025268555;-0.013092041;0.20527649 +14816;0;-0.171875;5.2688446;8.488449 +14816;12;0.22626984;0.08272878;0.21921653;0.94546396 +14816;3;-0.033203125;-0.010650635;0.2077179 +14816;0;-0.15278625;5.302109;8.54567 +14816;1;-0.54468095;4.566604;8.665193 +14817;3;-0.041152954;-0.011260986;0.21321106 +14818;4;14.442444;-0.59051514;-66.596985 +14819;6;-0.36440957;-0.55524474;0.017876888 +14819;7;0.9308266;-0.3028566;0.20454758;0.0;0.3651453;0.7939707;-0.48608592;0.0;-0.015190461 +14819;0;-0.147995;5.2926025;8.593384 +14819;3;-0.04786682;-0.0069885254;0.21871948 +14820;12;0.22629794;0.08255681;0.21967149;0.9453667 +14821;0;-0.16233826;5.278351;8.631531 +14821;1;-0.5390414;4.566117;8.665801 +14821;3;-0.053375244;-0.0057678223;0.21871948 +14823;0;-0.18144226;5.2926025;8.6410675 +14824;12;0.2262875;0.08238269;0.22016871;0.9452687 +14824;3;-0.05886841;-0.003326416;0.22299194 +14826;0;-0.15278625;5.287857;8.698288 +14826;3;-0.06375122;-0.002090454;0.2260437 +14826;1;-0.53347653;4.565115;8.666675 +14828;4;14.292908;0.1586914;-66.44745 +14828;6;-0.36087596;-0.54615366;0.017563289 +14828;7;0.93222266;-0.30172884;0.19980136;0.0;0.36157385;0.79948664;-0.47967222;0.0;-0.015007562 +14828;0;-0.16711426;5.2926025;8.722153 +14828;3;-0.069244385;3.5095215E-4;0.2260437 +14829;12;0.22624694;0.08220806;0.22068512;0.94517314 +14830;0;-0.157547;5.2736053;8.717377 +14831;1;-0.52798414;4.5636625;8.667775 +14832;2;-0.41450816;-0.71271133;0.029854774; +14832;3;-0.07229614;9.460449E-4;0.224823 +14833;0;-0.15278625;5.3068542;8.7603 +14834;3;-0.07475281;3.5095215E-4;0.22421265 +14835;0;-0.12890625;5.2926025;8.78891 +14835;1;-0.5225675;4.5618954;8.669033 +14836;3;-0.077804565;-8.69751E-4;0.22299194 +14838;4;16.54358;-1.1901855;-65.69672 +14838;6;-0.44116658;-0.54198146;0.01466587 +14838;7;0.90092677;-0.3658013;0.23349608;0.0;0.4337893;0.7746639;-0.46013334;0.0;-0.012563628 +14838;12;0.22618169;0.08203424;0.22121403;0.9450802 +14838;0;-0.11456299;5.2688446;8.774612 +14838;3;-0.08085632;-0.0039367676;0.22238159 +14838;12;0.22609818;0.081858456;0.22174132;0.9449918 +14840;0;-0.10978699;5.278351;8.745987 +14840;1;-0.5170363;4.559864;8.670434 +14840;3;-0.08024597;-0.0082092285;0.22116089 +14842;0;-0.09068298;5.2593536;8.793686 +14843;12;0.22600283;0.08167285;0.22226492;0.9449078 +14843;3;-0.081466675;-0.012481689;0.22055054 +14845;0;-0.06201172;5.2450867;8.807983 +14845;1;-0.5111778;4.557715;8.671911 +14845;3;-0.081466675;-0.019195557;0.21565247 +14847;5;999.5956 +14847;4;14.442444;0.009155273;-66.596985 +14847;6;-0.38856855;-0.53708756;0.0070402827 +14847;7;0.9240647;-0.32552093;0.200351;0.0;0.3821882;0.79515094;-0.47081548;0.0;-0.0060489783 +14847;0;-0.052444458;5.2165833;8.865219 +14848;3;-0.081466675;-0.023483276;0.21383667 +14848;12;0.22590457;0.08146594;0.22278099;0.9448275 +14850;0;-0.07635498;5.1833344;8.898605 +14850;1;-0.50498956;4.55542;8.673479 +14850;3;-0.07963562;-0.03263855;0.21138 +14850;2;-0.45586926;-0.6924219;-0.13843536; +14852;0;-0.052444458;5.1690826;8.903381 +14852;12;0.22580512;0.08123653;0.22327739;0.94475394 +14853;3;-0.07963562;-0.039978027;0.21138 +14854;1;-0.49825153;4.553124;8.675075 +14854;0;-0.057235718;5.140564;8.931976 +14855;3;-0.07841492;-0.050354004;0.20527649 +14857;4;15.792847;-0.29144287;-66.29639 +14857;6;-0.4373808;-0.5222189;0.006407869 +14857;7;0.9044918;-0.3671128;0.21707807;0.0;0.42645496;0.7851257;-0.4491257;0.0;-0.005553755 +14857;0;-0.033355713;5.1453247;8.979691 +14857;3;-0.07536316;-0.059524536;0.20161438 +14858;12;0.22571445;0.08097364;0.22375517;0.94468516 +14859;0;0.023986816;5.1358337;9.017838 +14859;1;-0.490858;4.550858;8.676684 +14859;3;-0.073532104;-0.06806946;0.19978333 +14861;0;0.03831482;5.1025696;9.056 +14862;12;0.22563568;0.080669716;0.22420828;0.94462246 +14862;3;-0.07107544;-0.074798584;0.19551086 +14864;0;0.08129883;5.0788116;9.098923 +14864;1;-0.4827876;4.5486565;8.678292 +14864;3;-0.06741333;-0.0796814;0.1930542 +14866;4;15.193176;-1.4907837;-67.196655 +14866;6;-0.4662577;-0.5090827;-0.008934758 +14866;7;0.89517874;-0.39254045;0.21110876;0.0;0.44563895;0.7799847;-0.4393515;0.0;0.0078016547 +14866;0;0.07652283;5.0930634;9.122772 +14867;3;-0.06619263;-0.08395386;0.18878174 +14867;12;0.2255714;0.08032859;0.22464189;0.9445639 +14868;0;0.10997009;5.031311;9.132294 +14869;1;-0.47444817;4.5466204;8.679818 +14869;2;-0.5484718;-0.5575576;-0.35758972; +14869;3;-0.060699463;-0.08639526;0.18450928 +14871;0;0.09562683;4.998047;9.184769 +14872;12;0.2255199;0.07997013;0.22505128;0.9445091 +14872;3;-0.056427002;-0.08822632;0.18084717 +14873;0;0.1338501;4.98378;9.14183 +14874;1;-0.46604446;4.5448117;8.681221 +14874;3;-0.052749634;-0.090667725;0.1759491 +14876;4;14.292908;-1.1901855;-66.89758 +14876;6;-0.45938754;-0.4990763;-0.014640453 +14876;7;0.89933497;-0.3893156;0.1990725;0.0;0.43707126;0.78699505;-0.4354393;0.0;0.012854225 +14876;0;0.1577301;4.998047;9.199066 +14876;3;-0.04664612;-0.091293335;0.17106628 +14877;12;0.2254886;0.07960246;0.22542481;0.94445866 +14878;0;0.124298096;5.0027924;9.208603 +14878;1;-0.4576665;4.543334;8.68244 +14879;3;-0.041763306;-0.091293335;0.16740417 +14881;0;0.119506836;4.9933014;9.21814 +14881;12;0.2254753;0.079241134;0.22578655;0.94440573 +14881;3;-0.034423828;-0.08944702;0.16374207 +14883;0;0.1481781;4.974289;9.261063 +14883;1;-0.44950816;4.5422797;8.683418 +14884;3;-0.025878906;-0.08395386;0.1570282 +14885;5;999.6028 +14885;4;14.292908;-0.74157715;-66.89758 +14885;6;-0.46152872;-0.49284637;-0.015998753 +14885;7;0.89862895;-0.39232007;0.19634426;0.0;0.43848315;0.78881425;-0.4307026;0.0;0.014094137 +14886;0;0.1529541;4.9552917;9.265839 +14886;3;-0.016098022;-0.0796814;0.15396118 +14886;12;0.22548372;0.07888963;0.22612888;0.94435126 +14888;1;-0.4418866;4.541884;8.684016 +14889;2;-0.6344712;-0.43659782;-0.53976727; +14889;0;0.19117737;4.98378;9.256302 +14889;3;-0.0087890625;-0.07357788;0.14968872 +14890;0;0.1481781;4.98378;9.246765 +14891;12;0.22552563;0.078571916;0.22644983;0.9442908 +14891;3;0.0016021729;-0.06562805;0.14541626 +14894;0;0.1434021;4.998047;9.222916 +14894;1;-0.4349891;4.542224;8.684186 +14894;3;0.013824463;-0.058303833;0.1423645 +14897;4;14.892578;-0.14038086;-66.89758 +14897;6;-0.46653453;-0.49656498;-0.015547204 +14897;7;0.89635587;-0.39546967;0.20037445;0.0;0.4431245;0.78526366;-0.43243694;0.0;0.013668927 +14897;0;0.1434021;4.9933014;9.256302 +14897;3;0.022979736;-0.04852295;0.13807678 +14897;12;0.22559997;0.078296;0.22674777;0.9442245 +14898;0;0.1481781;5.050308;9.256302 +14898;1;-0.42889944;4.5434837;8.68383 +14898;3;0.030929565;-0.04119873;0.13563538 +14900;0;0.1290741;5.097824;9.213379 +14900;12;0.22571756;0.0780752;0.22704293;0.94414383 +14901;3;0.04008484;-0.03263855;0.13258362 +14902;0;0.1290741;5.140564;9.242004 +14904;1;-0.4236911;4.5455422;8.683009 +14907;3;0.045578003;-0.022872925;0.13014221 +14908;12;0.22586684;0.077906474;0.22732788;0.94405335 +14908;4;13.842773;-1.1901855;-65.24658 +14908;6;-0.4495428;-0.5075627;-0.013965121 +14908;7;0.90350753;-0.37977034;0.19861649;0.0;0.42839825;0.787103;-0.4437834;0.0;0.012204166 +14908;0;0.16729736;5.1690826;9.227692 +14908;3;0.051696777;-0.013092041;0.13075256 +14908;1;-0.41930375;4.5482345;8.681811 +14908;0;0.1720581;5.264099;9.208603 +14908;2;-0.62052447;-0.5316596;-0.5589924; +14908;3;0.05718994;-0.0027160645;0.13075256 +14910;0;0.1720581;5.387619;9.19429 +14911;3;0.06452942;0.005844116;0.13014221 +14911;12;0.22604398;0.07779145;0.22761211;0.94395196 +14915;1;-0.41576177;4.5516453;8.680194 +14915;0;0.124298096;5.444641;9.16568 +14915;3;0.06758118;0.017440796;0.13563538 +14915;4;13.842773;0.1586914;-66.44745 +14916;6;-0.40944964;-0.535974;-0.013560421 +14916;7;0.9200126;-0.342279;0.1908457;0.0;0.39171553;0.788703;-0.4738213;0.0;0.011658507 +14916;0;0.1625061;5.4921417;9.160919 +14916;3;0.070632935;0.027832031;0.13748169 +14916;12;0.22624813;0.07772365;0.22787015;0.94384646 +14918;1;-0.41293898;4.5555387;8.678287 +14918;0;0.17684937;5.601425;9.16568 +14918;3;0.07246399;0.03515625;0.13748169 +14920;0;0.1625061;5.6536713;9.222916 +14920;3;0.074295044;0.044921875;0.13685608 +14924;17;1;38dead6d7725;5248;379;-60; +14924;17;1;38dead6d60ff;4616;1222;-60; +14925;17;1;1c1bb5efa29a;4546;1237;-69; +14926;17;1;1c1bb5ecd182;7807;2084;-70; +14926;0;0.1529541;5.701187;9.222916 +14926;12;0.2264642;0.07771343;0.22818534;0.9437193 +14926;3;0.07307434;0.05897522;0.14051819 +14926;1;-0.41084367;4.559692;8.676205 +14926;5;999.6028 +14926;4;13.542175;-0.440979;-66.89758 +14926;6;-0.39975134;-0.5536001;-0.016582618 +14926;7;0.92442405;-0.33105892;0.18931481;0.0;0.38110515;0.7835711;-0.49068832;0.0;0.014105146 +14926;0;0.114746094;5.7962036;9.203827 +14926;3;0.06941223;0.073028564;0.1435852 +14926;12;0.22668476;0.07774834;0.22850963;0.9435849 +14926;0;0.071746826;5.9007263;9.251541 +14927;1;-0.4098018;4.563914;8.674034 +14927;2;-0.6070285;-1.0525837;-0.5302334; +14927;3;0.063308716;0.08708191;0.14724731 +14929;0;-0.023803711;5.9434814;9.251541 +14930;12;0.2268924;0.077846736;0.22885744;0.94344264 +14930;3;0.05657959;0.1023407;0.15213013 +14932;1;-0.4099423;4.5677648;8.672 +14932;0;-0.047683716;5.9767303;9.237228 +14933;3;0.048034668;0.1164093;0.15274048 +14934;4;15.193176;-0.74157715;-65.24658 +14934;6;-0.40282506;-0.57427585;0.0051620775 +14934;7;0.91884565;-0.32913348;0.21770126;0.0;0.39459333;0.7723831;-0.49771526;0.0;-0.0043339883 +14934;0;-0.10978699;6.01474;9.280151 +14934;3;0.03642273;0.12678528;0.15457153 +14935;12;0.22706208;0.078005776;0.22923562;0.94329685 +14936;0;-0.157547;6.048004;9.284912 +14937;1;-0.41122785;4.570923;8.670275 +14937;3;0.021148682;0.13595581;0.15762329 +14939;12;0.22717765;0.07822129;0.22964184;0.94315237 +14939;0;-0.22921753;6.0955048;9.346909 +14939;3;0.00894165;0.14205933;0.1594696 +14941;0;-0.32476807;6.171524;9.365997 +14942;1;-0.41329616;4.5730047;8.669079 +14942;3;-0.009384155;0.14511108;0.16069031 +14944;4;14.593506;-1.1901855;-65.69672 +14944;6;-0.3346563;-0.5823503;0.034661338 +14944;7;0.9376959;-0.27430776;0.21326406;0.0;0.3462494;0.7888396;-0.50778276;0.0;-0.028942391 +14944;0;-0.39640808;6.2475433;9.351685 +14944;3;-0.027709961;0.14328003;0.1582489 +14944;12;0.22722588;0.07846922;0.23007107;0.9430155 +14946;0;-0.46328735;6.2475433;9.370773 +14946;1;-0.41573748;4.573787;8.66855 +14946;3;-0.045425415;0.1365509;0.15518188 +14946;2;-0.25212553;-1.5158281;-0.6472912; +14950;12;0.22719467;0.07871818;0.2305094;0.94289535 +14950;0;-0.5540619;6.2475433;9.404144 +14951;3;-0.06741333;0.12432861;0.15213013 +14951;1;-0.417883;4.5729322;8.668898 +14952;0;-0.5636139;6.242798;9.48999 +14952;3;-0.09063721;0.11212158;0.14724731 +14953;4;15.04364;-1.3412476;-66.596985 +14953;6;-0.2993965;-0.5810517;0.059320677 +14953;7;0.9442358;-0.2465392;0.21825933;0.0;0.32551944;0.79870117;-0.50607663;0.0;-0.049556237 +14954;0;-0.64482117;6.1905365;9.566299 +14954;3;-0.11445618;0.1005249;0.14173889 +14955;12;0.22707848;0.07892033;0.23092823;0.94280386 +14955;0;-0.68304443;6.2000275;9.585388 +14955;1;-0.41934624;4.570025;8.670359 +14955;3;-0.14195251;0.08708191;0.13807678 +14958;0;-0.71170044;6.147766;9.661682 +14958;12;0.22686404;0.079052165;0.23132603;0.94274694 +14958;3;-0.16760254;0.07424927;0.13380432 +14963;0;-0.75468445;6.086014;9.671219 +14963;1;-0.42001316;4.564819;8.67307 +14963;3;-0.19325256;0.06324768;0.1277008 +14964;12;0.22653683;0.07910312;0.23169993;0.94272953 +14964;5;999.6028 +14964;4;15.04364;-0.29144287;-67.04712 +14964;6;-0.26602435;-0.5603118;0.07787624 +14964;7;0.95102984;-0.22269788;0.21435454;0.0;0.30199206;0.817292;-0.49074897;0.0;-0.06590148 +14964;0;-0.76901245;6.0337524;9.728455 +14964;3;-0.21647644;0.049209595;0.1240387 +14965;0;-0.840683;5.9529877;9.747543 +14965;1;-0.41997382;4.557366;8.6769905 +14965;2;0.21542653;-1.5786705;-0.9335413; +14965;3;-0.24090576;0.036987305;0.12097168 +14969;12;0.22609882;0.07907877;0.23204653;0.9427515 +14969;0;-0.859787;5.857971;9.80954 +14969;3;-0.26289368;0.025375366;0.11853027 +14970;0;-0.86935425;5.7201843;9.847702 +14970;1;-0.41909817;4.547653;8.682126 +14970;3;-0.28182983;0.0113220215;0.114868164 +14972;4;15.792847;-0.29144287;-67.49725 +14972;6;-0.27961555;-0.5245465;0.08805164 +14972;7;0.94528335;-0.23888013;0.22220661;0.0;0.3172476;0.8319346;-0.455235;0.0;-0.07611476 +14972;0;-0.91233826;5.6299133;9.895386 +14973;3;-0.30015564;-0.0014953613;0.10997009 +14973;12;0.2255516;0.078971736;0.23237251;0.94281125 +14974;0;-0.9219055;5.5206604;9.952621 +14975;1;-0.41738436;4.5362034;8.688197 +14975;3;-0.3154297;-0.01675415;0.10571289 +14977;0;-0.9219055;5.411377;10.005081 +14977;3;-0.32765198;-0.033859253;0.10386658 +14977;12;0.22492488;0.07878901;0.23267546;0.94290155 +14979;0;-0.90278625;5.287857;10.067078 +14981;1;-0.4145475;4.523049;8.695188 +14981;3;-0.3386383;-0.05279541;0.10205078 +14983;4;15.342712;-1.3412476;-67.04712 +14983;6;-0.29663882;-0.4820058;0.08943785 +14983;7;0.94039935;-0.259004;0.22037734;0.0;0.33073515;0.84736747;-0.41543087;0.0;-0.07914231 +14983;0;-0.826355;5.173828;10.143387 +14983;3;-0.34780884;-0.071121216;0.10020447 +14983;12;0.2242237;0.07851471;0.23295587;0.94302213 +14984;0;-0.7881317;5.107315;10.21492 +14984;3;-0.3557434;-0.087005615;0.09837341 +14986;0;-0.7403717;4.950531;10.1577 +14988;3;-0.35940552;-0.102890015;0.09654236 +14988;1;-0.41016808;4.508809;8.702787 +14988;2;0.41144195;-0.9534764;-1.2925701; +14988;12;0.2234884;0.07814081;0.23321237;0.94316435 +14989;0;-0.76901245;4.8365173;10.224472 +14990;1;-0.40445033;4.493733;8.71085 +14990;3;-0.36245728;-0.12060547;0.092285156 +14992;4;14.442444;0.009155273;-66.596985 +14992;6;-0.3156838;-0.4407533;0.07507158 +14992;7;0.93797296;-0.28079545;0.20337333;0.0;0.34000802;0.8597375;-0.38111162;0.0;-0.067833275 +14993;0;-0.7881317;4.7700043;10.300781 +14993;3;-0.36245728;-0.13894653;0.08984375 +14993;12;0.2227283;0.077679865;0.23342824;0.94332886 +14994;0;-0.71647644;4.7557526;10.362778 +14994;3;-0.36061096;-0.15786743;0.08677673 +14994;1;-0.39742073;4.478253;8.719141 +14996;0;-0.57315063;4.7082367;10.415237 +14996;12;0.22197014;0.0771361;0.23363142;0.94350183 +14996;3;-0.3514557;-0.17375183;0.08433533 +14998;0;-0.5015106;4.5799713;10.42955 +14998;1;-0.38875932;4.4628863;8.7274065 +14998;3;-0.34046936;-0.18353271;0.08067322 +15000;5;999.6028 +15001;4;15.04364;-0.29144287;-67.49725 +15001;6;-0.4101191;-0.41335624;0.048048537 +15001;7;0.90832245;-0.36513755;0.2040215;0.0;0.41595137;0.83983535;-0.3487991;0.0;-0.043984856 +15001;0;-0.47763062;4.4279175;10.372314 +15001;3;-0.32214355;-0.19146729;0.079452515 +15002;12;0.22123708;0.076506294;0.23380414;0.94368255 +15003;0;-0.44418335;4.313904;10.386612 +15003;1;-0.37923792;4.4482975;8.7352705 +15003;2;0.19388774;-0.21681595;-1.5997791; +15003;3;-0.30441284;-0.20063782;0.07884216 +15006;0;-0.38208008;4.266403;10.396164 +15007;12;0.2205624;0.07583781;0.23394956;0.94385827 +15007;3;-0.28303528;-0.20918274;0.07762146 +15008;0;-0.3343048;4.2283936;10.424774 +15008;3;-0.25982666;-0.21162415;0.07640076 +15008;1;-0.36891675;4.4351463;8.742395 +15010;4;14.442444;1.05896;-66.596985 +15010;6;-0.43948066;-0.38515428;0.032057315 +15010;7;0.8993843;-0.39429983;0.1887737;0.0;0.4361485;0.83867484;-0.32618842;0.0;-0.029703721 +15011;0;-0.28652954;4.2473907;10.45816 +15011;3;-0.23477173;-0.2110138;0.07823181 +15012;12;0.21998176;0.07514197;0.23405902;0.9440223 +15013;0;-0.3438568;4.1571198;10.381866 +15013;1;-0.3583078;4.4238935;8.748536 +15013;3;-0.2091217;-0.20674133;0.08799744 +15015;0;-0.2960968;4.0716095;10.310318 +15015;12;0.21950428;0.074462466;0.23417144;0.94415945 +15015;3;-0.17980957;-0.20063782;0.09716797 +15017;0;-0.22921753;3.9955902;10.300781 +15017;1;-0.3476499;4.41476;8.753578 +15018;3;-0.14926147;-0.19696045;0.10021973 +15019;4;15.492249;0.9094238;-66.44745 +15020;6;-0.51094496;-0.3699416;0.02224877 +15020;7;0.86813354;-0.45592;0.1961658;0.0;0.49589702;0.8132715;-0.30442658;0.0;-0.020741895 +15020;0;-0.143219;3.933838;10.315094 +15020;3;-0.11932373;-0.19329834;0.10266113 +15021;12;0.21913987;0.073813014;0.23431487;0.9442594 +15022;0;-0.08111572;3.9100647;10.381866 +15022;2;-0.12838247;0.3118744;-1.6185522; +15022;3;-0.092453;-0.18475342;0.10144043 +15023;1;-0.33699372;4.4080377;8.757382 +15024;0;-0.01423645;3.8388062;10.372314 +15025;12;0.21890439;0.073203065;0.23447421;0.944322 +15025;3;-0.061904907;-0.17253113;0.10083008 +15027;0;0.057418823;3.8388062;10.381866 +15027;1;-0.32688546;4.403616;8.75999 +15027;3;-0.033187866;-0.15664673;0.09838867 +15029;4;13.693237;0.009155273;-67.49725 +15029;6;-0.54142624;-0.35416445;-0.0055306274 +15029;7;0.85794985;-0.48337382;0.1739876;0.0;0.51370716;0.80378777;-0.30005026;0.0;0.0051873517 +15030;0;0.10997009;3.8293152;10.338928 +15030;3;-0.0051116943;-0.13648987;0.09838867 +15030;12;0.21879064;0.072649576;0.23460862;0.94435775 +15032;0;0.1338501;3.8197937;10.272156 +15032;1;-0.31806925;4.401637;8.761309 +15032;3;0.022994995;-0.1138916;0.09716797 +15034;0;0.1434021;3.7628021;10.248322 +15035;12;0.21878801;0.07220566;0.23476872;0.9443526 +15035;3;0.04988098;-0.09251404;0.09472656 +15037;0;0.1481781;3.729538;10.172012 +15037;1;-0.31106266;4.4019494;8.761403 +15038;3;0.0743103;-0.07052612;0.09350586 +15039;5;999.6028 +15040;0;0.114746094;3.6725311;10.138611 +15040;12;0.21888447;0.071890675;0.2349374;0.94431233 +15040;4;13.842773;-0.14038086;-66.89758 +15040;6;-0.5736257;-0.34750977;-0.01131725 +15040;7;0.8419767;-0.5102415;0.17529663;0.0;0.53940904;0.7897305;-0.2921707;0.0;0.01064052 +15041;3;0.099349976;-0.047912598;0.091659546 +15041;0;0.1481781;3.6535187;10.062302 +15042;1;-0.30606475;4.4042873;8.760405 +15042;2;-0.46572712;0.6441674;-1.494029; +15042;3;0.119522095;-0.024093628;0.08921814 +15044;0;0.114746094;3.6487732;9.976471 +15044;12;0.21906677;0.07170802;0.23511082;0.94424075 +15045;3;0.13967896;-8.69751E-4;0.092285156 +15046;0;0.08129883;3.6535187;9.871536 +15047;1;-0.30306628;4.408524;8.758377 +15047;3;0.1561737;0.019882202;0.09288025 +15049;4;13.842773;-0.440979;-67.196655 +15049;6;-0.56181586;-0.35446244;-0.008235496 +15049;7;0.84778327;-0.49960607;0.17792533;0.0;0.53028667;0.7936781;-0.29811263;0.0;0.0077234334 +15049;0;0.023986816;3.6202698;9.761841 +15049;3;0.1726532;0.036376953;0.095336914 +15050;12;0.21932557;0.07165816;0.23528576;0.9441409 +15052;0;-0.038131714;3.6107635;9.70462 +15052;1;-0.30185112;4.414216;8.755552 +15052;3;0.18060303;0.049819946;0.095947266 +15056;0;-0.08111572;3.5965118;9.628311 +15066;12;0.21963714;0.07172813;0.23549317;0.94401145 +15066;3;0.19221497;0.05958557;0.09777832 +15066;0;-0.12411499;3.591751;9.513855 +15067;3;0.20075989;0.065704346;0.09899902 +15067;4;14.892578;0.45928955;-67.196655 +15067;6;-0.52442294;-0.36095744;0.01304497 +15067;7;0.8632326;-0.46844715;0.18811363;0.0;0.5046588;0.8098321;-0.29915106;0.0;-0.012203994 +15067;0;-0.18621826;3.5680084;9.451843 +15067;1;-0.3018158;4.4208646;8.752198 +15067;3;0.2056427;0.06814575;0.10021973 +15068;0;-0.18144226;3.5632477;9.385086 +15068;1;-0.30234122;4.4282393;8.74845 +15068;2;-0.308491;0.83241415;-0.9207678; +15068;12;0.21998465;0.07187586;0.23571539;0.94386387 +15068;12;0.22036552;0.072062515;0.23594657;0.943703 +15069;1;-0.30286452;4.435933;8.7445345 +15069;3;0.20932007;0.06814575;0.10144043 +15069;0;-0.20533752;3.606018;9.323074 +15069;3;0.20869446;0.0663147;0.103881836 +15069;0;-0.23876953;3.5585022;9.203827 +15069;3;0.21054077;0.060806274;0.10328674 +15069;4;14.892578;0.45928955;-67.196655 +15069;6;-0.48764253;-0.36881703;0.025936602 +15069;7;0.8787621;-0.43703696;0.19177008;0.0;0.47664654;0.8240325;-0.3062327;0.0;-0.024189768 +15069;0;-0.25787354;3.5727692;9.14183 +15069;3;0.20809937;0.054092407;0.10450745 +15070;12;0.2207618;0.07225465;0.23617697;0.94353807 +15073;1;-0.30303764;4.443678;8.740596 +15073;0;-0.3104248;3.5537567;9.056 +15073;3;0.20625305;0.04737854;0.103881836 +15075;0;-0.3199768;3.5347595;8.970154 +15075;3;0.20625305;0.03515625;0.10144043 +15077;12;0.22116484;0.07243074;0.23640938;0.94337195 +15077;0;-0.32476807;3.525238;8.908142 +15078;1;-0.30261612;4.4513125;8.736724 +15078;3;0.2056427;0.02293396;0.099609375 +15080;5;999.61 +15080;4;14.442444;-0.29144287;-67.04712 +15080;6;-0.45411086;-0.3765946;0.0364413 +15080;7;0.8921773;-0.40792298;0.19395475;0.0;0.45041287;0.8356761;-0.31428295;0.0;-0.033880085 +15081;0;-0.38685608;3.525238;8.798447 +15081;3;0.20625305;0.010101318;0.095947266 +15081;12;0.22157118;0.07257288;0.23663002;0.9432103 +15081;1;-0.30135652;4.4590054;8.732843 +15081;0;-0.38208008;3.5585022;8.741211 +15082;2;-0.052928507;0.91781235;-0.29378223; +15082;3;0.20503235;-8.69751E-4;0.09288025 +15082;0;-0.38208008;3.5299988;8.6458435 +15082;3;0.20869446;-0.010650635;0.09106445 +15083;12;0.22199377;0.07266508;0.23682569;0.9430547 +15086;1;-0.29928872;4.4667583;8.728952 +15086;0;-0.37728882;3.5109863;8.598129 +15086;3;0.21420288;-0.021652222;0.087402344 +15089;12;0.22243129;0.072708756;0.236988;0.94290745 +15089;4;14.442444;-0.29144287;-67.04712 +15089;6;-0.42671707;-0.38734138;0.043852203 +15089;7;0.9026008;-0.38322252;0.19609267;0.0;0.42856067;0.8428891;-0.32538253;0.0;-0.04059047 +15089;0;-0.37252808;3.5205078;8.555222 +15090;3;0.2203064;-0.027755737;0.08433533 +15090;1;-0.29658303;4.474982;8.724832 +15090;0;-0.41073608;3.5394897;8.49321 +15090;3;0.22520447;-0.03263855;0.08250427 +15093;0;-0.4202881;3.548996;8.478897 +15093;12;0.22290389;0.07272495;0.23713173;0.94275844 +15093;3;0.23252869;-0.034484863;0.08128357 +15094;0;-0.4298401;3.5442505;8.426437 +15095;1;-0.29364637;4.483722;8.720443 +15095;3;0.24168396;-0.033859253;0.079452515 +15097;4;14.892578;-0.14038086;-66.44745 +15097;6;-0.417984;-0.3976829;0.050966714 +15097;7;0.90471363;-0.3742413;0.20356017;0.0;0.4234232;0.8425884;-0.33280256;0.0;-0.046968974 +15097;0;-0.45373535;3.5680084;8.373978 +15098;3;0.2520752;-0.03263855;0.079452515 +15098;12;0.22340882;0.07273282;0.23725899;0.9426064 +15099;1;-0.2908119;4.493275;8.715619 +15099;0;-0.43463135;3.5632477;8.302444 +15099;3;0.26367188;-0.027755737;0.080062866 +15100;2;0.06508097;0.96765757;0.22157955; +15102;12;0.2239547;0.072753996;0.23737739;0.9424453 +15102;0;-0.45373535;3.5205078;8.288132 +15102;3;0.27711487;-0.02470398;0.080062866 +15105;1;-0.2882883;4.503782;8.7102785 +15105;0;-0.46806335;3.5442505;8.2595215 +15105;3;0.2862854;-0.019821167;0.08250427 +15107;4;14.892578;-0.14038086;-66.44745 +15109;6;-0.39928558;-0.40476686;0.056609 +15109;7;0.9112011;-0.3573462;0.2049785;0.0;0.4086659;0.84688956;-0.3402506;0.0;-0.052006885 +15109;0;-0.47283936;3.5394897;8.2070465 +15109;3;0.29666138;-0.0149383545;0.08433533 +15109;12;0.22455058;0.072805464;0.23749158;0.9422708 +15109;1;-0.28608754;4.515297;8.704388 +15110;0;-0.49671936;3.5537567;8.14505 +15110;3;0.30644226;-0.011260986;0.08862305 +15113;12;0.2251949;0.07289326;0.23761861;0.9420781 +15115;1;-0.28421563;4.5276117;8.69805 +15118;0;-0.5397186;3.5537567;8.140289 +15118;3;0.3168335;-0.0051574707;0.09288025 +15118;0;-0.5445099;3.5774994;8.097366 +15118;3;0.32476807;-2.746582E-4;0.09716797 +15118;5;999.61 +15119;4;13.392639;-0.59051514;-67.04712 +15119;6;-0.31935987;-0.4151892;0.06714422 +15119;7;0.93880045;-0.28728488;0.19005533;0.0;0.3389461;0.8687724;-0.36104;0.0;-0.061393496 +15119;0;-0.5540619;3.6107635;8.068741 +15119;3;0.32965088;0.007659912;0.10144043 +15119;12;0.22587907;0.073012255;0.23776188;0.94186896 +15119;1;-0.28269008;4.54066;8.691294 +15120;2;0.17685467;0.9946871;0.53202534; +15120;0;-0.57315063;3.6012573;7.98291 +15120;3;0.333313;0.014389038;0.10450745 +15121;12;0.22659588;0.07316389;0.23792765;0.9416431 +15121;0;-0.5253906;3.6012573;7.9256744 +15121;3;0.33638;0.022323608;0.10939026 +15129;1;-0.2815924;4.5541115;8.68429 +15129;0;-0.57315063;3.6535187;7.854141 +15129;3;0.3388214;0.029052734;0.11122131 +15129;12;0.22733085;0.073341034;0.23807223;0.9414157 +15129;4;13.392639;-0.59051514;-67.04712 +15129;6;-0.2938261;-0.43438363;0.072845206 +15130;7;0.9457335;-0.2627197;0.19122383;0.0;0.3181656;0.86825264;-0.380668;0.0;-0.06602162 +15130;0;-0.5540619;3.639267;7.849365 +15130;3;0.3376007;0.033935547;0.116104126 +15130;0;-0.5779419;3.70578;7.777817 +15130;1;-0.28091878;4.5677824;8.677129 +15130;3;0.3351593;0.03881836;0.119766235 +15131;17;1;38dead6d7725;5479;811;-64; +15131;17;1;38dead6d60ff;4504;1949;-58; +15132;17;1;1c1bb5efa29a;2407;4414;-73; +15133;17;1;1c1bb5ecd182;5228;1379;-67; +15133;12;0.22806737;0.0735608;0.2382815;0.94116735 +15133;0;-0.6113739;3.6772919;7.734909 +15133;3;0.33087158;0.04675293;0.124053955 +15133;1;-0.2805987;4.581301;8.670009 +15133;0;-0.6018219;3.7010345;7.682434 +15133;3;0.32476807;0.05104065;0.12771606 +15135;4;15.492249;-1.7913818;-66.44745 +15135;6;-0.35589918;-0.44774866;0.07817774 +15135;7;0.92268956;-0.3140862;0.223593;0.0;0.37906185;0.84493506;-0.37735513;0.0;-0.07039954 +15135;0;-0.62094116;3.7010345;7.6681366 +15136;12;0.22878881;0.073800765;0.23851578;0.94091415 +15136;3;0.31498718;0.056533813;0.13320923 +15137;0;-0.6161499;3.6962738;7.649048 +15138;1;-0.28056198;4.5943;8.663129 +15138;2;0.25251874;0.9400773;0.8841839; +15138;3;0.3003235;0.05958557;0.13871765 +15141;12;0.22947766;0.074053824;0.23877735;0.9406602 +15143;0;-0.59706116;3.7342834;7.5727386 +15143;3;0.2850647;0.061416626;0.14482117 +15143;1;-0.28053162;4.6062813;8.656765 +15143;0;-0.6161499;3.7770538;7.5822906 +15143;3;0.2679596;0.065078735;0.14970398 +15145;4;14.442444;-0.59051514;-67.04712 +15145;6;-0.2930502;-0.46084762;0.08108355 +15145;7;0.9438169;-0.2587372;0.20558394;0.0;0.322408;0.85749066;-0.4009523;0.0;-0.07254502 +15145;0;-0.57315063;3.7817993;7.601364 +15145;3;0.24719238;0.0675354;0.15763855 +15145;12;0.23010828;0.07429727;0.23905975;0.94041514 +15147;1;-0.28042197;4.616873;8.651124 +15148;0;-0.5827179;3.8388062;7.5441284 +15148;3;0.22520447;0.07058716;0.16497803 +15149;0;-0.59706116;3.8530579;7.5870514 +15149;12;0.23066168;0.07453123;0.23939101;0.9401768 +15150;3;0.20198059;0.07180786;0.17108154 +15152;1;-0.28021252;4.6257467;8.64639 +15152;0;-0.6018219;3.8673248;7.6108856 +15152;3;0.17755127;0.073638916;0.17842102 +15155;4;13.842773;-2.090454;-66.14685 +15155;6;-0.29331982;-0.4688735;0.07890964 +15155;7;0.94401133;-0.2579281;0.20570779;0.0;0.32233155;0.85397655;-0.40844375;0.0;-0.07032052 +15155;0;-0.5874939;3.9148254;7.5918274 +15155;3;0.15007019;0.073638916;0.1875763 +15155;12;0.23111965;0.07474463;0.23976736;0.9399514 +15155;5;999.61 +15156;0;-0.6018219;3.933838;7.6204376 +15156;1;-0.27975833;4.6325803;8.642745 +15156;2;0.26424563;0.8132553;1.0422812; +15156;3;0.123184204;0.07546997;0.19429016 +15158;0;-0.6018219;3.9860992;7.6204376 +15159;12;0.23146681;0.0749267;0.24018483;0.9397449 +15159;3;0.095077515;0.076690674;0.20040894 +15161;0;-0.6113739;4.009842;7.6156616 +15161;1;-0.2790951;4.637244;8.6402645 +15161;3;0.06513977;0.07608032;0.20529175 +15163;4;14.143372;-1.940918;-67.04712 +15163;6;-0.2844736;-0.48331943;0.080106705 +15163;7;0.9462948;-0.24850553;0.20681168;0.0;0.31544513;0.8498702;-0.42215508;0.0;-0.07085522 +15164;0;-0.6018219;4.0668488;7.6633606 +15164;3;0.035217285;0.073638916;0.21078491 +15164;12;0.23169689;0.075072795;0.24063186;0.93956214 +15166;0;-0.6161499;4.0716095;7.682434 +15166;1;-0.27813613;4.639529;8.63907 +15166;3;0.004058838;0.07058716;0.21629333 +15168;0;-0.6018219;4.0668488;7.7253723 +15168;12;0.23179537;0.07517933;0.24112636;0.93940246 +15169;3;-0.025863647;0.065704346;0.21995544 +15170;0;-0.62094116;4.1381226;7.787369 +15171;1;-0.2766699;4.639285;8.639248 +15171;3;-0.058242798;0.06263733;0.22483826 +15173;4;14.143372;-1.0406494;-66.596985 +15173;6;-0.27947554;-0.48713043;0.07956862 +15173;7;0.94789577;-0.24376447;0.20511611;0.0;0.31074142;0.84939325;-0.42658073;0.0;-0.07023901 +15173;0;-0.6018219;4.1381226;7.844589 +15174;3;-0.092453;0.056533813;0.22911072 +15174;12;0.23176274;0.075229645;0.24165085;0.9392718 +15175;0;-0.6113739;4.176132;7.863678 +15175;1;-0.27463824;4.6363897;8.640866 +15176;2;0.2844506;0.5733137;0.90375996; +15176;3;-0.12542725;0.050430298;0.23339844 +15178;0;-0.62094116;4.256897;7.9304504 +15178;12;0.23159377;0.07521912;0.2422019;0.9391724 +15178;3;-0.15782166;0.045532227;0.2376709 +15180;0;-0.5922699;4.223633;7.992447 +15180;1;-0.2719112;4.6307626;8.64397 +15180;3;-0.1907959;0.040039062;0.2401123 +15182;4;15.04364;-1.3412476;-67.796326 +15182;6;-0.3132002;-0.48501986;0.0739685 +15182;7;0.9381353;-0.27256966;0.21355957;0.0;0.34004068;0.8416288;-0.419563;0.0;-0.06537774 +15183;0;-0.64482117;4.2711487;8.03537 +15183;3;-0.22439575;0.0345459;0.24194336 +15183;12;0.2312812;0.07513601;0.24277377;0.93910843 +15185;0;-0.64482117;4.3043976;8.073517 +15185;1;-0.26869926;4.622447;8.6485195 +15185;3;-0.25738525;0.029647827;0.24316406 +15187;0;-0.63526917;4.290146;8.173676 +15187;12;0.23082843;0.07499112;0.24336752;0.9390776 +15188;3;-0.28793335;0.027832031;0.24377441 +15190;0;-0.67349243;4.2711487;8.288132 +15190;1;-0.26509443;4.6113286;8.654564 +15190;3;-0.31970215;0.02720642;0.24194336 +15192;4;14.743042;-1.940918;-67.796326 +15192;6;-0.30056718;-0.47450003;0.08108171 +15192;7;0.9410749;-0.26335344;0.21218634;0.0;0.33043545;0.8496429;-0.41099802;0.0;-0.0720449 +15192;0;-0.6782532;4.275894;8.345367 +15193;3;-0.3514557;0.02720642;0.24072266 +15193;12;0.23022792;0.074787565;0.2439736;0.93908405 +15193;5;999.61 +15194;0;-0.70692444;4.2711487;8.483673 +15194;1;-0.2615317;4.597488;8.662033 +15195;2;0.34018135;0.34603357;0.48495197; +15195;3;-0.38261414;0.029647827;0.24072266 +15197;0;-0.7260437;4.2426453;8.540909 +15197;12;0.22948016;0.07454523;0.24458498;0.9391273 +15197;3;-0.41316223;0.03149414;0.23828125 +15199;0;-0.7403717;4.199875;8.660141 +15199;1;-0.25821495;4.5808983;8.6709175 +15199;3;-0.44247437;0.033935547;0.2364502 +15202;4;14.143372;-2.9907227;-65.097046 +15202;6;-0.31702575;-0.45012033;0.0852845 +15202;7;0.9351602;-0.2806908;0.21607412;0.0;0.34582216;0.85552526;-0.38533574;0.0;-0.076696664 +15202;0;-0.7594757;4.176132;8.745987 +15202;3;-0.47180176;0.03515625;0.23155212 +15202;12;0.22858182;0.07427299;0.24520065;0.93920743 +15204;0;-0.7738037;4.1381226;8.831833 +15204;1;-0.25524092;4.5616713;8.681136 +15204;3;-0.49684143;0.033935547;0.22911072 +15206;0;-0.7976837;4.123871;8.874756 +15207;12;0.22753999;0.073978975;0.24582078;0.93932146 +15207;3;-0.5225067;0.030273438;0.22361755 +15209;0;-0.7499237;4.090622;8.974915 +15209;1;-0.25235945;4.5401244;8.692508 +15210;3;-0.5432739;0.027832031;0.21812439 +15212;4;14.892578;-3.1402588;-67.196655 +15212;6;-0.3497769;-0.4263421;0.08336411 +15212;7;0.9243863;-0.3120123;0.21944983;0.0;0.3738478;0.85535395;-0.35861874;0.0;-0.075813845 +15213;0;-0.8215637;4.052597;9.051224 +15213;3;-0.5646515;0.021713257;0.21078491 +15213;12;0.22637393;0.07365029;0.24643184;0.9394689 +15214;1;-0.24951346;4.5165434;8.704865 +15214;0;-0.8215637;4.000351;9.132294 +15214;2;0.47809276;0.4091115;-0.1588211; +15215;3;-0.58114624;0.013763428;0.2034607 +15216;0;-0.835907;3.9955902;9.213379 +15217;12;0.22510318;0.07328561;0.24701943;0.93964845 +15217;3;-0.59336853;0.0027923584;0.19306946 +15219;1;-0.24634393;4.4913874;8.717962 +15219;0;-0.802475;3.8958282;9.284912 +15219;3;-0.6049652;-0.007598877;0.18269348 +15221;4;15.342712;-1.0406494;-67.04712 +15221;6;-0.35947472;-0.39595097;0.08621361 +15221;7;0.9209223;-0.3245652;0.21577665;0.0;0.38156343;0.86365724;-0.3294016;0.0;-0.07944477 +15221;0;-0.7594757;3.8815765;9.375534 +15222;3;-0.61351013;-0.018600464;0.1716919 +15222;12;0.22375707;0.07286599;0.24756482;0.93985903 +15223;0;-0.74513245;3.8578186;9.423233 +15224;1;-0.24266198;4.465129;8.731544 +15225;3;-0.6184082;-0.030197144;0.16131592 +15228;0;-0.7260437;3.796051;9.518616 +15228;12;0.22236566;0.07239261;0.2480593;0.9400954 +15228;3;-0.61901855;-0.04425049;0.15153503 +15230;0;-0.71647644;3.7770538;9.571075 +15230;1;-0.23839004;4.4382887;8.745334 +15230;3;-0.6184082;-0.05708313;0.13687134 +15231;4;14.743042;-2.6901245;-66.596985 +15232;6;-0.41277114;-0.37491727;0.074719146 +15232;7;0.9024909;-0.37328467;0.21486926;0.0;0.42507052;0.8523847;-0.30455822;0.0;-0.069464326 +15232;0;-0.68782043;3.7010345;9.628311 +15232;3;-0.6159668;-0.06867981;0.12527466 +15232;12;0.2209579;0.0718662;0.2484962;0.94035244 +15232;5;999.6033 +15234;0;-0.64004517;3.663025;9.675995 +15234;2;0.46094704;0.61342144;-0.7152605; +15234;1;-0.23352417;4.411315;8.759103 +15234;3;-0.60679626;-0.0796814;0.11122131 +15235;0;-0.55882263;3.6487732;9.728455 +15236;12;0.21956047;0.071288414;0.24886335;0.9406265 +15236;3;-0.5939636;-0.09373474;0.099609375 +15240;1;-0.22805023;4.3849325;8.772483 +15240;0;-0.5206146;3.6440125;9.771393 +15240;3;-0.57748413;-0.102890015;0.08799744 +15241;12;0.2182113;0.0706736;0.24915145;0.9409105 +15242;4;14.292908;-1.1901855;-66.44745 +15242;6;-0.44862503;-0.3564879;0.053229142 +15242;7;0.89171505;-0.40645793;0.19908908;0.0;0.44984287;0.8443942;-0.2909297;0.0;-0.04985898 +15243;1;-0.22211966;4.359807;8.785151 +15244;0;-0.5110626;3.6535187;9.819077 +15244;3;-0.5597534;-0.11206055;0.07701111 +15246;12;0.21693972;0.070038535;0.24937907;0.94119173 +15246;0;-0.45373535;3.615509;9.852463 +15246;3;-0.5353241;-0.12243652;0.06539917 +15247;0;-0.40596008;3.5727692;9.876312 +15247;3;-0.50845337;-0.12854004;0.05441284 +15248;0;-0.38208008;3.6012573;9.881073 +15248;1;-0.21579818;4.3365526;8.796809 +15248;3;-0.47790527;-0.13587952;0.044021606 +15250;4;15.492249;-1.1901855;-66.89758 +15250;6;-0.5309492;-0.3492581;0.03864862 +15250;7;0.8549878;-0.475782;0.20646414;0.0;0.5173759;0.8102655;-0.27530366;0.0;-0.03630624 +15251;0;-0.3438568;3.5774994;9.89061 +15251;3;-0.44247437;-0.14320374;0.03363037 +15252;12;0.21578169;0.069399014;0.24953888;0.94146293 +15253;1;-0.20922114;4.315847;8.807145 +15253;0;-0.27697754;3.5585022;9.919235 +15253;2;0.17835078;0.7328887;-1.0491428; +15253;3;-0.40460205;-0.14627075;0.0256958 +15255;0;-0.24354553;3.525238;9.919235 +15256;12;0.21476685;0.068769105;0.24963474;0.9417158 +15256;3;-0.36489868;-0.1481018;0.016525269 +15257;0;-0.18621826;3.5394897;9.9049225 +15257;1;-0.2025279;4.2981644;8.815944 +15257;3;-0.32273865;-0.14749146;0.007369995 +15262;4;15.942383;-0.440979;-66.89758 +15262;6;-0.5845333;-0.34314862;0.018798362 +15262;7;0.83033246;-0.5196397;0.20130216;0.0;0.5569871;0.78534925;-0.27017018;0.0;-0.017701376 +15262;0;-0.13366699;3.5774994;9.871536 +15263;3;-0.27937317;-0.14320374;6.5612793E-4 +15263;12;0.21392256;0.068167485;0.24967435;0.94194114 +15263;0;-0.09068298;3.5727692;9.847702 +15263;1;-0.19617863;4.2841773;8.822893 +15263;3;-0.23539734;-0.13648987;-0.0054626465 +15266;12;0.21327287;0.06762927;0.24966396;0.94213 +15266;0;-0.06201172;3.6107635;9.799988 +15266;3;-0.19140625;-0.12609863;-0.010955811 +15267;0;0.009643555;3.6250305;9.838165 +15267;3;-0.14682007;-0.11206055;-0.0152282715 +15267;1;-0.19056648;4.273953;8.827974 +15270;4;14.593506;0.9094238;-66.89758 +15270;6;-0.5487323;-0.3530299;-9.802185E-4 +15270;7;0.8533628;-0.48943833;0.17950496;0.0;0.52131665;0.80056995;-0.2954939;0.0;9.197677E-4 +15270;0;0.019195557;3.663025;9.75708 +15270;3;-0.104660034;-0.09373474;-0.019500732 +15270;12;0.21281555;0.06717752;0.24961977;0.9422775 +15271;5;999.6033 +15272;0;0.10041809;3.6867828;9.75708 +15274;2;-0.15723105;0.6960249;-1.0206947; +15274;1;-0.18623386;4.267521;8.831177 +15274;3;-0.06434631;-0.074798584;-0.023788452 +15274;12;0.21254437;0.06684394;0.2495559;0.94237924 +15274;0;0.09562683;3.7437897;9.690308 +15275;3;-0.025253296;-0.05279541;-0.0262146 +15276;0;0.10041809;3.7580414;9.633072 +15276;1;-0.18366325;4.2646346;8.832625 +15277;3;0.011398315;-0.028366089;-0.028656006 +15279;4;14.442444;0.009155273;-67.49725 +15279;6;-0.55399233;-0.37194067;-0.0104239285 +15279;7;0.8523777;-0.49011478;0.1823175;0.0;0.5228363;0.7922817;-0.31453413;0.0;0.009711004 +15279;0;0.09085083;3.7913055;9.504303 +15279;3;0.04437256;-0.004547119;-0.03050232 +15280;12;0.21243827;0.066652045;0.24947569;0.942438 +15282;0;0.10997009;3.872055;9.418457 +15282;1;-0.18318443;4.264996;8.83246 +15283;3;0.0718689;0.016220093;-0.029281616 +15284;12;0.21247788;0.06661625;0.24940273;0.94245094 +15286;1;-0.18447912;4.267906;8.831028 +15288;0;0.119506836;3.8958282;9.275375 +15288;3;0.09446716;0.0357666;-0.029876709 +15288;0;0.10997009;3.9670868;9.208603 +15288;3;0.11830139;0.05104065;-0.029281616 +15289;12;0.21262759;0.06671327;0.24934176;0.9424265 +15290;4;14.593506;-2.090454;-65.69672 +15290;6;-0.56980294;-0.406749;-0.011941536 +15290;7;0.84449583;-0.4954521;0.20335682;0.0;0.53544986;0.77330947;-0.33953786;0.0;0.010966988 +15290;0;0.10041809;4.0336;9.089371 +15290;3;0.13478088;0.065704346;-0.028060913 +15291;1;-0.18712212;4.2729278;8.828544 +15291;0;0.124298096;4.1286316;8.922455 +15291;2;-0.3385708;0.40391445;-0.5297518; +15292;3;0.14822388;0.07852173;-0.029281616 +15293;0;0.119506836;4.1523743;8.807983 +15294;12;0.21287076;0.06691207;0.24929173;0.9423707 +15294;3;0.1561737;0.08769226;-0.03050232 +15295;0;0.119506836;4.2283936;8.726913 +15296;1;-0.19081832;4.279273;8.825391 +15296;3;0.16227722;0.09379578;-0.029876709 +15298;4;16.093445;0.009155273;-66.596985 +15298;6;-0.53112847;-0.45115304;-0.013693199 +15298;7;0.8651791;-0.45582813;0.20901155;0.0;0.50131154;0.77596503;-0.3828382;0.0;0.012322741 +15298;0;0.1338501;4.323395;8.621979 +15298;3;0.16227722;0.096847534;-0.029876709 +15299;12;0.21316919;0.06718574;0.24924596;0.9422958 +15300;0;0.124298096;4.375656;8.455063 +15300;1;-0.19500816;4.28634;8.821869 +15300;3;0.16349792;0.0993042;-0.032318115 +15303;0;0.10517883;4.4231873;8.326294 +15303;12;0.21349733;0.067498155;0.24920458;0.94221014 +15303;3;0.16105652;0.097457886;-0.03477478 +15306;1;-0.19943821;4.29365;8.818214 +15306;0;0.09085083;4.480179;8.269058 +15306;3;0.1543274;0.09501648;-0.035995483 +15307;4;15.193176;-1.1901855;-66.89758 +15307;6;-0.47805837;-0.4965009;-0.010986399 +15307;7;0.8902439;-0.40450653;0.20938082;0.0;0.4553818;0.78068143;-0.4279767;0.0;0.00965965 +15308;0;0.071746826;4.513443;8.11644 +15308;3;0.14700317;0.08769226;-0.03904724 +15308;12;0.2138335;0.067824796;0.2491553;0.9421236 +15308;5;999.6033 +15310;0;0.10517883;4.556198;8.11644 +15310;1;-0.20365877;4.3006606;8.814701 +15310;2;-0.35821426;-0.052030087;0.3693323; +15310;3;0.13478088;0.07913208;-0.042099 +15312;0;0.10517883;4.594223;8.021057 +15313;12;0.21415517;0.06813119;0.24909522;0.94204426 +15313;3;0.12623596;0.073638916;-0.044540405 +15318;1;-0.20734313;4.306994;8.811522 +15318;0;0.09562683;4.660721;7.9495087 +15318;3;0.11218262;0.065078735;-0.04638672 +15319;4;13.842773;-1.1901855;-66.44745 +15319;6;-0.42335466;-0.53024644;-0.012028695 +15319;7;0.91414905;-0.35440832;0.19678967;0.0;0.40524533;0.7865214;-0.46600476;0.0;0.010376696 +15319;17;1;38dead6d7725;4696;867;-64; +15320;17;1;38dead6d60ff;6175;3055;-65; +15320;17;1;1c1bb5efa29a;5540;440;-73; +15321;17;1;1c1bb5ecd182;4737;1379;-65; +15321;0;0.071746826;4.660721;7.901825 +15321;3;0.09753418;0.05470276;-0.05064392 +15321;12;0.21444856;0.06839725;0.24900977;0.94198084 +15321;1;-0.21050207;4.3124166;8.808795 +15321;0;0.066970825;4.7319946;7.8255157 +15321;3;0.083465576;0.043701172;-0.05432129 +15322;0;0.10517883;4.7700043;7.7635193 +15322;12;0.21470283;0.06861897;0.24891417;0.94193196 +15322;3;0.0718689;0.033325195;-0.056762695 +15324;0;0.09085083;4.7747498;7.777817 +15324;1;-0.21283583;4.3167996;8.806591 +15324;3;0.05659485;0.018661499;-0.061645508 +15326;4;15.04364;-1.940918;-67.04712 +15326;6;-0.44333318;-0.5505422;-0.0116802305 +15327;7;0.90588635;-0.36557114;0.21384025;0.0;0.42340386;0.7698522;-0.47755283;0.0;0.009954145 +15327;0;0.09562683;4.803253;7.7158203 +15327;3;0.043151855;0.0052337646;-0.06530762 +15327;12;0.21490975;0.06877888;0.24879679;0.9419042 +15329;0;0.114746094;4.8079987;7.7253723 +15329;1;-0.21420074;4.3200703;8.804955 +15329;2;-0.35398412;-0.3788314;0.95556164; +15329;3;0.027282715;-0.00881958;-0.07081604 +15332;0;0.10517883;4.827011;7.7110596 +15332;12;0.21507111;0.06886584;0.24865252;0.9418991 +15333;3;0.014450073;-0.022262573;-0.07325745 +15334;0;0.1338501;4.841263;7.7015076 +15334;1;-0.21456182;4.3221455;8.803926 +15334;3;-8.239746E-4;-0.034484863;-0.07814026 +15336;4;16.242981;-1.1901855;-67.64679 +15336;6;-0.46362355;-0.5611247;-0.017377978 +15336;7;0.89843804;-0.37861836;0.22238956;0.0;0.43885365;0.75728226;-0.48366413;0.0;0.014712448 +15336;0;0.1290741;4.86026;7.677658 +15337;3;-0.016082764;-0.04547119;-0.08180237 +15337;12;0.21518508;0.06887707;0.24847905;0.9419181 +15338;0;0.1338501;4.874527;7.7205963 +15339;1;-0.21404055;4.3230176;8.803511 +15339;3;-0.03135681;-0.05708313;-0.08547974 +15341;0;0.1386261;4.86026;7.682434 +15341;12;0.21524657;0.06881981;0.24828064;0.9419605 +15341;3;-0.046020508;-0.06806946;-0.089141846 +15343;0;0.1338501;4.8365173;7.696747 +15343;1;-0.2127124;4.3225937;8.803753 +15343;3;-0.06312561;-0.079071045;-0.09158325 +15346;4;15.04364;-1.6403198;-67.49725 +15346;6;-0.44075918;-0.56096137;-0.017388724 +15346;7;0.90823776;-0.36124322;0.211205;0.0;0.41819546;0.7658191;-0.48850155;0.0;0.014723057 +15346;0;0.1577301;4.8460083;7.734909 +15346;3;-0.07901001;-0.08885193;-0.09463501 +15347;12;0.21525028;0.06869613;0.24805924;0.942027 +15347;5;999.6033 +15348;0;0.1386261;4.817505;7.782593 +15348;1;-0.21058741;4.320733;8.804716 +15348;2;-0.3919298;-0.5008793;1.0782833; +15348;3;-0.093673706;-0.09739685;-0.09524536 +15351;0;0.17684937;4.793747;7.811203 +15351;12;0.2151882;0.06850575;0.24781947;0.9421181 +15352;3;-0.10710144;-0.106552124;-0.09524536 +15355;1;-0.20770761;4.3175282;8.806356 +15356;0;0.17684937;4.7700043;7.863678 +15356;3;-0.12237549;-0.11143494;-0.09829712 +15356;4;13.842773;-0.440979;-66.89758 +15356;6;-0.4223593;-0.5451367;-0.022485606 +15356;7;0.9166727;-0.3504992;0.19199283;0.0;0.39917585;0.7799178;-0.48206514;0.0;0.019224843 +15356;0;0.1816101;4.7794952;7.8779755 +15356;3;-0.13581848;-0.115722656;-0.09890747 +15357;12;0.21506739;0.068253376;0.24756005;0.94223225 +15359;1;-0.20439678;4.31303;8.808639 +15359;0;0.19117737;4.7414856;7.978134 +15359;3;-0.15048218;-0.119384766;-0.097076416 +15361;0;0.17684937;4.760498;7.992447 +15362;12;0.21488242;0.06796042;0.24730287;0.94236314 +15362;3;-0.16207886;-0.12060547;-0.097076416 +15363;1;-0.20079754;4.307299;8.811524 +15363;0;0.1816101;4.712982;8.06398 +15363;3;-0.1724701;-0.12184143;-0.09768677 +15366;4;14.593506;-0.74157715;-67.64679 +15366;6;-0.45051202;-0.5287957;-0.022517344 +15366;7;0.90494204;-0.37595388;0.1993454;0.0;0.42509055;0.77726734;-0.46384633;0.0;0.019440174 +15366;0;0.16729736;4.717743;8.106903 +15366;3;-0.18162537;-0.12060547;-0.09524536 +15366;12;0.21463509;0.06763551;0.2470503;0.9425092 +15367;0;0.1529541;4.7082367;8.154587 +15368;1;-0.19716345;4.3006067;8.814875 +15368;2;-0.4213652;-0.4257388;0.8219385; +15369;3;-0.19140625;-0.12243652;-0.0921936 +15370;0;0.1290741;4.6749725;8.221359 +15370;12;0.21433696;0.06729644;0.2468014;0.9426665 +15373;1;-0.19347203;4.2930756;8.818627 +15373;3;-0.19691467;-0.12060547;-0.09158325 +15373;0;0.124298096;4.6417236;8.249985 +15373;3;-0.20362854;-0.11999512;-0.088531494 +15376;4;13.093567;-1.0406494;-67.49725 +15376;6;-0.41426232;-0.51244295;-0.015065324 +15376;7;0.91828275;-0.3508115;0.1835433;0.0;0.3957076;0.7978281;-0.45484728;0.0;0.013129677 +15376;0;0.07652283;4.6179657;8.321533 +15377;12;0.2139959;0.06694088;0.24654545;0.9428362 +15377;3;-0.20851135;-0.11694336;-0.08547974 +15378;1;-0.18992214;4.2849374;8.822661 +15378;0;0.019195557;4.622711;8.38829 +15378;3;-0.21217346;-0.11633301;-0.080581665 +15380;12;0.2136195;0.06659119;0.24632254;0.94300455 +15380;0;0.023986816;4.5847015;8.435989 +15380;3;-0.21522522;-0.11143494;-0.07814026 +15382;1;-0.18646918;4.276397;8.826878 +15383;0;-0.01423645;4.6084595;8.497986 +15383;3;-0.21707153;-0.10899353;-0.07447815 +15385;4;13.842773;-1.7913818;-65.69672 +15385;6;-0.43240017;-0.49691182;0.0016752719 +15385;7;0.90762657;-0.3683707;0.20128803;0.0;0.41977575;0.7981525;-0.43213502;0.0;-0.001472662 +15385;0;-0.023803711;4.537201;8.559982 +15385;3;-0.21890259;-0.107177734;-0.07325745 +15385;12;0.2132191;0.06624487;0.24611998;0.9431724 +15387;5;999.6062 +15388;1;-0.1832216;4.267585;8.83121 +15388;2;-0.26527888;-0.31874228;0.41639042; +15388;0;-0.07156372;4.5657043;8.555222 +15388;3;-0.21829224;-0.103500366;-0.07020569 +15390;12;0.2128044;0.06591023;0.24593246;0.9433384 +15390;0;-0.09068298;4.5847015;8.626755 +15390;3;-0.21522522;-0.09983826;-0.06715393 +15393;0;-0.12411499;4.5657043;8.664902 +15393;1;-0.1802026;4.258753;8.835534 +15394;3;-0.21400452;-0.094955444;-0.06593323 +15394;4;14.593506;-0.14038086;-66.89758 +15394;6;-0.4125323;-0.4849082;0.014322898 +15394;7;0.9133379;-0.3547103;0.19998625;0.0;0.40700534;0.81049746;-0.42123693;0.0;-0.01267129 +15394;0;-0.143219;4.556198;8.712601 +15395;3;-0.21217346;-0.090667725;-0.064697266 +15395;12;0.21238306;0.06558816;0.24575539;0.943502 +15397;1;-0.17759186;4.250094;8.839755 +15397;0;-0.19577026;4.5752106;8.722153 +15397;3;-0.20973206;-0.087631226;-0.064086914 +15399;0;-0.21009827;4.5419617;8.774612 +15399;12;0.21196567;0.065293394;0.24559242;0.9436587 +15400;3;-0.20484924;-0.08456421;-0.064086914 +15401;0;-0.2722168;4.5847015;8.803207 +15402;1;-0.17533581;4.2416453;8.843858 +15402;3;-0.20179749;-0.08151245;-0.064697266 +15403;13;65.58699 +15405;0;-0.3343048;4.5799713;8.855682 +15405;12;0.21155573;0.06502292;0.24543321;0.94381076 +15405;3;-0.19691467;-0.079071045;-0.06347656 +15405;4;15.193176;-0.14038086;-66.89758 +15407;6;-0.38960212;-0.47700554;0.0377324 +15407;7;0.9178235;-0.33742246;0.20915587;0.0;0.39557177;0.8217993;-0.41008422;0.0;-0.03351252 +15407;2;-0.009297267;-0.3186512;0.08778381; +15407;1;-0.17344953;4.2335286;8.847782 +15407;0;-0.3343048;4.5847015;8.836609 +15407;3;-0.1920166;-0.07662964;-0.06593323 +15409;0;-0.34864807;4.6084595;8.879532 +15409;12;0.21116024;0.06477294;0.24527505;0.9439576 +15409;3;-0.18530273;-0.07234192;-0.06652832 +15411;0;-0.36297607;4.5799713;8.912918 +15411;1;-0.1718779;4.225857;8.8514805 +15411;3;-0.18040466;-0.06990051;-0.06715393 +15415;12;0.21078289;0.06454457;0.24510986;0.9441005 +15416;4;14.292908;-0.440979;-67.64679 +15416;6;-0.3587418;-0.4743354;0.040702224 +15416;7;0.9290385;-0.31233412;0.1983301;0.0;0.36820793;0.8329641;-0.41302982;0.0;-0.036198556 +15416;0;-0.39640808;4.5847015;8.927231 +15416;1;-0.17066318;4.2186337;8.854948 +15416;3;-0.17552185;-0.06562805;-0.068374634 +15416;0;-0.38208008;4.636963;8.965378 +15417;3;-0.17124939;-0.063797;-0.07081604 +15418;12;0.21042646;0.06434187;0.24494529;0.94423664 +15418;0;-0.44895935;4.61322;8.955841 +15419;3;-0.16514587;-0.061965942;-0.072647095 +15421;0;-0.48239136;4.646469;8.951065 +15421;1;-0.16983557;4.211843;8.858196 +15421;3;-0.16085815;-0.059524536;-0.07569885 +15422;4;14.892578;-1.1901855;-66.89758 +15422;6;-0.35879728;-0.47821537;0.053839978 +15423;7;0.9262669;-0.3117557;0.2117498;0.0;0.37382746;0.83128124;-0.4113691;0.0;-0.047776993 +15423;0;-0.47283936;4.670227;8.960602 +15423;3;-0.15536499;-0.061965942;-0.07997131 +15424;5;999.6062 +15424;12;0.21009006;0.06416262;0.2447716;0.9443687 +15434;0;-0.5301666;4.6417236;8.994003 +15434;1;-0.16926531;4.205499;8.861221 +15434;2;0.21063915;-0.39861298;-0.09201145; +15434;3;-0.15109253;-0.062576294;-0.084243774 +15435;12;0.20977241;0.06400015;0.2445829;0.94449925 +15435;1;-0.16881299;4.1996098;8.864022 +15435;12;0.20948042;0.06384469;0.24436949;0.9446298 +15435;0;-0.5301666;4.6417236;8.965378 +15435;3;-0.14375305;-0.063797;-0.08792114 +15435;0;-0.55882263;4.670227;8.979691 +15435;3;-0.13825989;-0.06562805;-0.09463501 +15435;4;14.892578;1.5090942;-66.89758 +15435;6;-0.31805226;-0.4787976;0.06215169 +15435;7;0.9390637;-0.2775519;0.20279099;0.0;0.33929372;0.8430355;-0.4173376;0.0;-0.05512719 +15436;0;-0.57315063;4.6797333;9.017838 +15436;1;-0.16848606;4.1942396;8.86657 +15437;3;-0.13215637;-0.06745911;-0.100738525 +15437;0;-0.5779419;4.6892242;9.017838 +15437;3;-0.12542725;-0.07052612;-0.10624695 +15438;17;1;38dead6d7725;5569;548;-66; +15438;17;1;38dead6d60ff;6297;3269;-67; +15439;17;1;1c1bb5efa29a;7271;1906;-66; +15439;17;1;1c1bb5ecd182;5500;1543;-66; +15439;12;0.2092152;0.06369575;0.24412867;0.94476086 +15439;0;-0.5827179;4.660721;9.056 +15440;3;-0.11932373;-0.07296753;-0.11174011 +15440;1;-0.16818303;4.189329;8.868897 +15440;0;-0.6113739;4.6654816;9.075058 +15440;3;-0.11383057;-0.07662964;-0.116622925 +15442;4;13.392639;0.009155273;-67.796326 +15442;6;-0.27430654;-0.47394338;0.067266956 +15442;7;0.9521263;-0.24102192;0.18805262;0.0;0.29979736;0.8565097;-0.4201342;0.0;-0.059807364 +15442;0;-0.6113739;4.6749725;9.041687 +15442;3;-0.10832214;-0.0809021;-0.11967468 +15442;12;0.20897779;0.06354882;0.2438556;0.9448938 +15444;0;-0.64482117;4.6417236;9.051224 +15444;1;-0.16781089;4.184935;8.870979 +15444;2;0.37154526;-0.46292973;-0.16395569; +15444;3;-0.10160828;-0.08456421;-0.124557495 +15447;12;0.20876907;0.06339934;0.24355802;0.9450268 +15447;0;-0.6161499;4.646469;9.051224 +15447;3;-0.093063354;-0.087631226;-0.12823486 +15449;0;-0.6495819;4.65123;9.008301 +15449;1;-0.16729786;4.1811223;8.872786 +15449;3;-0.085113525;-0.09007263;-0.13189697 +15452;4;13.693237;0.7598877;-63.89618 +15452;6;-0.29056838;-0.4755675;0.07198466 +15452;7;0.94616586;-0.25470513;0.19973849;0.0;0.31730372;0.85176575;-0.41690922;0.0;-0.063941486 +15453;0;-0.64482117;4.6417236;9.003525 +15453;3;-0.07595825;-0.09434509;-0.13433838 +15454;12;0.20859599;0.06324647;0.24323264;0.945159 +15454;0;-0.6782532;4.6322327;8.994003 +15454;3;-0.06617737;-0.09739685;-0.1386261 +15454;1;-0.16669083;4.178004;8.874267 +15456;0;-0.6639252;4.670227;8.998749 +15456;3;-0.056411743;-0.10166931;-0.13922119 +15457;12;0.2084627;0.063094154;0.2428868;0.9452875 +15462;0;-0.65437317;4.6797333;9.008301 +15462;3;-0.04663086;-0.10533142;-0.1398468 +15462;4;15.193176;0.45928955;-67.64679 +15462;6;-0.31047848;-0.47804305;0.07251377 +15462;7;0.93950236;-0.27126518;0.2091664;0.0;0.33644795;0.8454443;-0.41476095;0.0;-0.064328335 +15462;0;-0.64004517;4.6749725;8.970154 +15462;3;-0.037475586;-0.10839844;-0.14228821 +15463;5;999.6062 +15463;1;-0.16589046;4.1757627;8.875337 +15463;12;0.20837934;0.06293961;0.24252358;0.94540954 +15463;0;-0.60661316;4.6749725;8.979691 +15464;1;-0.16477498;4.1743574;8.876019 +15464;2;0.43385655;-0.46805954;-0.13449478; +15464;3;-0.025863647;-0.10899353;-0.14350891 +15465;0;-0.60661316;4.6559753;8.984451 +15466;12;0.2083436;0.06277812;0.24214943;0.9455239 +15466;3;-0.013046265;-0.10899353;-0.14350891 +15468;0;-0.5779419;4.6559753;8.984451 +15468;1;-0.16357738;4.1738863;8.876262 +15469;3;3.9672852E-4;-0.10961914;-0.14350891 +15470;0;-0.5349426;4.703491;8.936752 +15471;4;15.492249;-0.440979;-67.196655 +15471;6;-0.35133106;-0.48373574;0.05978739 +15471;7;0.927674;-0.30466154;0.2158754;0.0;0.36962527;0.8311876;-0.41533607;0.0;-0.05289607 +15471;12;0.20836194;0.06262353;0.24176587;0.9456283 +15471;3;0.01322937;-0.10899353;-0.14228821 +15473;0;-0.5206146;4.693985;8.917694 +15473;1;-0.16227177;4.174612;8.875944 +15473;3;0.027282715;-0.10777283;-0.1428833 +15475;0;-0.5062866;4.7224884;8.917694 +15475;12;0.20844327;0.062481284;0.24137954;0.94571847 +15476;3;0.041931152;-0.107177734;-0.1428833 +15477;0;-0.47763062;4.727234;8.874756 +15478;1;-0.16099967;4.1765647;8.875049 +15478;3;0.054763794;-0.106552124;-0.144104 +15480;4;14.442444;0.7598877;-66.596985 +15480;6;-0.32420158;-0.4888337;0.05376714 +15480;7;0.9384964;-0.28124362;0.20031641;0.0;0.34201375;0.83688784;-0.42737043;0.0;-0.047447126 +15480;0;-0.44418335;4.7319946;8.874756 +15480;3;0.06942749;-0.10533142;-0.14472961 +15481;12;0.20858932;0.062356822;0.24099094;0.94579357 +15482;0;-0.43940735;4.750992;8.860458 +15482;1;-0.15976152;4.1797156;8.873589 +15483;2;0.30909765;-0.5103469;-0.05337906; +15483;3;0.083465576;-0.10595703;-0.144104 +15485;0;-0.4298401;4.7414856;8.84137 +15485;12;0.20879821;0.06225134;0.24059573;0.94585514 +15485;3;0.09690857;-0.10473633;-0.14228821 +15487;0;-0.43463135;4.7794952;8.822296 +15487;1;-0.15851788;4.1840973;8.871545 +15488;3;0.10913086;-0.102890015;-0.1428833 +15489;4;13.693237;0.009155273;-66.29639 +15489;6;-0.31611452;-0.49598116;0.049225308 +15489;7;0.9420195;-0.2734161;0.19453238;0.0;0.33275574;0.8359233;-0.43646976;0.0;-0.043276284 +15490;0;-0.38685608;4.7890015;8.81752 +15490;3;0.1207428;-0.10105896;-0.14228821 +15491;12;0.2090736;0.06216155;0.24019678;0.9459016 +15492;0;-0.40119934;4.784256;8.803207 +15493;1;-0.15736018;4.1895647;8.868985 +15493;3;0.13111877;-0.10227966;-0.1404419 +15494;0;-0.37728882;4.803253;8.807983 +15495;12;0.20940383;0.062092796;0.23980008;0.9459337 +15495;3;0.1366272;-0.10105896;-0.13922119 +15496;0;-0.35820007;4.8079987;8.831833 +15497;1;-0.15613061;4.1958437;8.866037 +15497;3;0.14578247;-0.09983826;-0.13800049 +15499;4;14.442444;-1.0406494;-66.29639 +15499;6;-0.36193866;-0.49818417;0.040535625 +15499;7;0.9275874;-0.31104916;0.2069543;0.0;0.37190646;0.8215387;-0.43215722;0.0;-0.03559884 +15499;0;-0.34864807;4.8460083;8.812759 +15500;3;0.15066528;-0.099227905;-0.1374054 +15500;12;0.20977849;0.062032178;0.23940736;0.94595414 +15500;5;999.6062 +15502;0;-0.3534088;4.827011;8.798447 +15502;1;-0.15493399;4.202765;8.862781 +15502;2;0.18742968;-0.58095837;0.038518906; +15502;3;0.1555481;-0.0980072;-0.13618469 +15505;0;-0.28652954;4.8365173;8.81752 +15505;3;0.15800476;-0.095565796;-0.13494873 +15505;12;0.21018529;0.061981555;0.23901872;0.94596535 +15507;0;-0.29130554;4.841263;8.807983 +15507;1;-0.15373461;4.2100363;8.859349 +15509;3;0.15861511;-0.09373474;-0.13372803 +15509;4;14.593506;-0.74157715;-65.69672 +15509;6;-0.37871814;-0.5023398;0.03306085 +15509;7;0.92274725;-0.32405272;0.20863186;0.0;0.38431507;0.8143519;-0.43489394;0.0;-0.028971178 +15509;0;-0.3104248;4.8317566;8.812759 +15509;3;0.15678406;-0.09310913;-0.13128662 +15510;12;0.2106102;0.061939597;0.2386347;0.9459706 +15511;0;-0.32476807;4.8555145;8.827072 +15511;1;-0.15266202;4.2173386;8.855894 +15512;3;0.1543274;-0.090667725;-0.12823486 +15514;0;-0.3056488;4.8460083;8.831833 +15514;12;0.21103507;0.061905164;0.23825946;0.9459728 +15514;3;0.15066528;-0.08822632;-0.12762451 +15516;0;-0.3104248;4.86026;8.850922 +15516;1;-0.15165944;4.2244096;8.85254 +15516;3;0.14639282;-0.08639526;-0.12762451 +15518;4;13.842773;-0.440979;-68.096924 +15518;6;-0.3378087;-0.5019117;0.035058226 +15518;7;0.9373147;-0.29054454;0.19241925;0.0;0.3471269;0.8271182;-0.44201642;0.0;-0.030728005 +15519;0;-0.3295288;4.869766;8.860458 +15519;3;0.13967896;-0.08456421;-0.124557495 +15519;12;0.21144591;0.061874602;0.23789723;0.9459741 +15521;0;-0.3152008;4.907776;8.850922 +15521;1;-0.15081282;4.231098;8.84936 +15521;2;0.11500135;-0.61304045;0.010344505; +15521;3;0.13174438;-0.0821228;-0.1227417 +15523;0;-0.34864807;4.879257;8.893829 +15524;12;0.2118337;0.061847616;0.23754227;0.94597834 +15524;3;0.12562561;-0.08029175;-0.121520996 +15528;1;-0.15011366;4.2371287;8.846486 +15530;0;-0.35820007;4.8555145;8.884293 +15530;3;0.115859985;-0.07785034;-0.12211609 +15531;4;13.392639;-1.0406494;-68.24646 +15531;6;-0.32052794;-0.49983191;0.040296532 +15531;7;0.94221544;-0.27652323;0.18911625;0.0;0.33313647;0.832963;-0.44180605;0.0;-0.035357207 +15531;0;-0.3534088;4.874527;8.903381 +15531;3;0.10668945;-0.07601929;-0.120895386 +15532;12;0.21218449;0.06182016;0.237197;0.94598824 +15532;0;-0.36775208;4.8982697;8.960602 +15533;1;-0.14959022;4.2424383;8.843949 +15533;3;0.09875488;-0.07418823;-0.11907959 +15533;0;-0.37728882;4.9125214;8.979691 +15533;12;0.21249434;0.061793357;0.23685889;0.9460051 +15533;3;0.08836365;-0.071121216;-0.11784363 +15536;0;-0.37728882;4.8650208;8.984451 +15536;3;0.079193115;-0.07052612;-0.11784363 +15536;1;-0.14921966;4.2469115;8.841809 +15539;4;14.292908;-0.74157715;-67.196655 +15539;6;-0.34813854;-0.49591997;0.04196887 +15539;7;0.9323707;-0.30005085;0.20162909;0.0;0.35961512;0.8267676;-0.43258768;0.0;-0.0369021 +15539;0;-0.4298401;4.8982697;8.984451 +15539;3;0.071258545;-0.07052612;-0.11784363 +15539;5;999.60706 +15539;12;0.21275641;0.06176665;0.23653623;0.9460287 +15541;0;-0.42507935;4.9030304;9.008301 +15541;1;-0.14898774;4.2506504;8.840016 +15541;3;0.06147766;-0.071746826;-0.11907959 +15541;2;0.18798263;-0.62465906;-0.11573601; +15543;0;-0.42507935;4.884018;9.013062 +15543;12;0.21297783;0.061734546;0.23621444;0.9460614 +15543;3;0.054763794;-0.071746826;-0.11967468 +15545;0;-0.43463135;4.86026;9.008301 +15545;1;-0.14874524;4.2536016;8.838601 +15545;3;0.05293274;-0.074798584;-0.12030029 +15548;4;14.593506;-0.74157715;-69.14673 +15548;6;-0.33359975;-0.49428466;0.048210487 +15548;7;0.9362858;-0.28825384;0.20069575;0.0;0.34866792;0.83177674;-0.4319471;0.0;-0.042423654 +15548;0;-0.43940735;4.874527;9.079834 +15548;3;0.04498291;-0.07662964;-0.121520996 +15549;12;0.21315712;0.061690845;0.23589186;0.94610435 +15559;17;1;38dead6d7725;6420;3304;-67; +15560;17;1;38dead6d60ff;7915;1343;-63; +15560;17;1;1c1bb5efa29a;5836;1642;-70; +15561;17;1;1c1bb5ecd182;7167;1693;-64; +15568;12;0.21331207;0.06163425;0.23556615;0.9461542 +15568;12;0.2134439;0.061570905;0.23524088;0.9462096 +15568;1;-0.14839719;4.2560916;8.837407 +15569;1;-0.1480564;4.258092;8.83645 +15570;1;-0.14776465;4.2597756;8.835643 +15570;0;-0.47283936;4.8650208;9.170456 +15570;3;0.041931152;-0.07662964;-0.121520996 +15570;0;-0.46806335;4.8365173;9.213379 +15570;3;0.03704834;-0.07601929;-0.120895386 +15570;0;-0.48718262;4.827011;9.208603 +15570;3;0.033996582;-0.074798584;-0.120895386 +15570;4;13.542175;-1.1901855;-68.84766 +15570;6;-0.30720568;-0.4822334;0.052855883 +15570;7;0.9444421;-0.26791146;0.19040103;0.0;0.32532793;0.84448266;-0.42545357;0.0;-0.04680647 +15570;0;-0.46806335;4.8460083;9.251541 +15570;3;0.030944824;-0.07418823;-0.11907959 +15570;0;-0.48239136;4.827011;9.251541 +15570;2;0.27013224;-0.5833874;-0.31928635; +15570;12;0.21355623;0.061507855;0.23492008;0.946268 +15570;1;-0.147504;4.2613344;8.834895 +15570;12;0.21366294;0.061442345;0.23460123;0.9463273 +15570;1;-0.14730348;4.262981;8.834105 +15570;3;0.030944824;-0.07418823;-0.11907959 +15570;0;-0.5206146;4.793747;9.275375 +15570;3;0.030944824;-0.07418823;-0.11907959 +15570;0;-0.48718262;4.817505;9.327835 +15570;3;0.03277588;-0.07296753;-0.11907959 +15570;4;14.593506;-0.74157715;-68.096924 +15570;6;-0.3430157;-0.47617796;0.05218149 +15570;7;0.93242174;-0.2989132;0.20307773;0.0;0.35838646;0.8369788;-0.41355252;0.0;-0.046355434 +15571;0;-0.49195862;4.7985077;9.361221 +15571;3;0.035217285;-0.071746826;-0.11845398 +15571;0;-0.5015106;4.803253;9.370773 +15571;3;0.039489746;-0.06929016;-0.11601257 +15571;0;-0.5158386;4.7890015;9.389847 +15571;12;0.21377355;0.061383333;0.23428419;0.9463846 +15572;3;0.04437256;-0.06745911;-0.11418152 +15574;1;-0.1472271;4.2649436;8.8331585 +15574;0;-0.5253906;4.803253;9.399368 +15574;3;0.04866028;-0.06806946;-0.11174011 +15579;12;0.21389873;0.06133702;0.23397613;0.94643563 +15579;4;13.243103;1.2084961;-67.196655 +15579;6;-0.28860492;-0.47179192;0.055838272 +15579;7;0.9499287;-0.25352243;0.1826523;0.0;0.30848688;0.85391533;-0.4191234;0.0;-0.049712393 +15579;0;-0.5445099;4.7747498;9.43277 +15579;3;0.054763794;-0.06990051;-0.11112976 +15579;5;999.60706 +15579;1;-0.14707164;4.2673006;8.832023 +15579;0;-0.5301666;4.8127594;9.413681 +15579;3;0.060256958;-0.07234192;-0.11051941 +15580;2;0.32677984;-0.5231228;-0.5443182; +15582;0;-0.5636139;4.827011;9.4375305 +15584;12;0.21404794;0.061293926;0.23367433;0.94647926 +15584;1;-0.14669792;4.2701836;8.830636 +15584;3;0.067596436;-0.075408936;-0.108078 +15584;0;-0.5636139;4.8222656;9.4852295 +15584;3;0.074920654;-0.075408936;-0.1068573 +15585;4;13.542175;-0.14038086;-66.14685 +15585;6;-0.3083806;-0.46963134;0.059350383 +15585;7;0.9430012;-0.27065593;0.19363405;0.0;0.32855898;0.84966874;-0.41244632;0.0;-0.052893754 +15585;0;-0.5636139;4.841263;9.504303 +15586;3;0.08042908;-0.07662964;-0.10441589 +15586;12;0.21422644;0.0612454;0.23337084;0.9465168 +15588;0;-0.5253906;4.8555145;9.504303 +15588;1;-0.14613436;4.273649;8.828969 +15588;3;0.08958435;-0.0796814;-0.10441589 +15590;0;-0.5158386;4.8555145;9.4756775 +15590;12;0.21443935;0.061196055;0.23307513;0.94654465 +15591;3;0.09753418;-0.0821228;-0.10256958 +15592;0;-0.5110626;4.9030304;9.451843 +15593;1;-0.14528622;4.2778344;8.826955 +15593;3;0.103012085;-0.08517456;-0.09951782 +15595;4;12.792969;-0.29144287;-67.04712 +15595;6;-0.28844625;-0.47792906;0.05401755 +15595;7;0.95022464;-0.25258875;0.18240619;0.0;0.307855;0.85126555;-0.42493802;0.0;-0.047941532 +15595;0;-0.5110626;4.9362793;9.4852295 +15595;3;0.10852051;-0.09007263;-0.09890747 +15597;12;0.21469492;0.06114388;0.23277928;0.9465629 +15598;0;-0.47763062;4.9647827;9.456619 +15598;1;-0.14404373;4.2826;8.824664 +15598;3;0.11279297;-0.09617615;-0.09829712 +15598;2;0.34518164;-0.58514977;-0.6550207; +15600;0;-0.49195862;5.007553;9.48999 +15600;3;0.119522095;-0.10166931;-0.096466064 +15602;0;-0.45851135;5.1168213;9.48999 +15602;1;-0.14225017;4.287932;8.8221035 +15602;3;0.123184204;-0.106552124;-0.09341431 +15603;12;0.21498574;0.06108029;0.23248807;0.9465726 +15604;4;14.442444;-0.29144287;-68.24646 +15604;6;-0.3309848;-0.49401197;0.048277717 +15604;7;0.93718463;-0.2861198;0.19955064;0.0;0.34623644;0.8326499;-0.4322204;0.0;-0.042489007 +15605;0;-0.43940735;5.1833344;9.4804535 +15605;3;0.12684631;-0.110839844;-0.0909729 +15605;12;0.21531658;0.06099491;0.2321907;0.9465759 +15607;0;-0.37728882;5.264099;9.4804535 +15607;1;-0.1398702;4.293769;8.819303 +15607;3;0.12867737;-0.115722656;-0.08792114 +15609;0;-0.32476807;5.3638763;9.494766 +15609;12;0.21568044;0.0608869;0.23190252;0.94657063 +15610;3;0.13356018;-0.11633301;-0.084854126 +15612;0;-0.2960968;5.420868;9.509079 +15612;1;-0.13694324;4.300011;8.816306 +15613;3;0.13478088;-0.119384766;-0.08241272 +15614;4;12.042236;-0.59051514;-67.796326 +15614;6;-0.2903607;-0.51791507;0.031128269 +15614;7;0.9532652;-0.2487508;0.17148918;0.0;0.30092236;0.83248365;-0.46520615;0.0;-0.02704153 +15614;0;-0.23876953;5.4826508;9.556763 +15614;3;0.1354065;-0.11816406;-0.076919556 +15615;12;0.21606901;0.06075921;0.23162358;0.94655854 +15615;5;999.60706 +15616;0;-0.25787354;5.5301514;9.590164 +15617;1;-0.13369;4.306488;8.813194 +15617;2;0.18774544;-0.98320866;-0.70211315; +15617;3;0.13174438;-0.11265564;-0.07203674 +15619;0;-0.25309753;5.577652;9.647385 +15619;12;0.21647128;0.06062394;0.23135784;0.9465403 +15619;3;0.12867737;-0.102890015;-0.06652832 +15621;0;-0.22921753;5.601425;9.680771 +15621;1;-0.13068332;4.3127847;8.810161 +15622;3;0.123184204;-0.09188843;-0.060424805 +15624;4;13.542175;-0.440979;-67.64679 +15624;6;-0.34097818;-0.52442425;0.023673186 +15624;7;0.93820035;-0.28946868;0.18970484;0.0;0.34548545;0.81577736;-0.46383956;0.0;-0.02048989 +15624;0;-0.26264954;5.634674;9.723679 +15624;3;0.11645508;-0.07846069;-0.053710938 +15624;12;0.21685842;0.060504608;0.23111987;0.9465174 +15626;0;-0.25309753;5.6536713;9.776154 +15626;1;-0.12840188;4.3186445;8.8073225 +15626;3;0.103637695;-0.060134888;-0.04638672 +15628;0;-0.25309753;5.6536713;9.78093 +15629;12;0.21721017;0.06042512;0.23092496;0.9464894 +15629;3;0.09385681;-0.043029785;-0.041488647 +15631;0;-0.30085754;5.7106934;9.804764 +15631;1;-0.12729137;4.323629;8.8048935 +15631;3;0.08164978;-0.026535034;-0.035995483 +15633;4;12.342834;-0.29144287;-65.097046 +15633;6;-0.30649504;-0.52720356;0.03067521 +15633;7;0.9482927;-0.26075068;0.18097;0.0;0.31628862;0.8239422;-0.47019222;0.0;-0.026505891 +15634;0;-0.3295288;5.6821747;9.89061 +15634;3;0.066986084;-0.009429932;-0.031097412 +15634;12;0.21749653;0.060406715;0.23077951;0.94646037 +15635;0;-0.34864807;5.724945;9.9096985 +15636;1;-0.12745482;4.327543;8.802967 +15636;2;0.11259189;-1.3226185;-0.9767399; +15636;3;0.05354309;0.005844116;-0.025604248 +15638;0;-0.39163208;5.715439;9.89061 +15639;12;0.21770917;0.060448382;0.23067792;0.9464335 +15639;3;0.038269043;0.016220093;-0.021942139 +15641;0;-0.43940735;5.6536713;9.923996 +15641;1;-0.12872928;4.330239;8.801623 +15641;3;0.023605347;0.025985718;-0.021347046 +15643;4;14.442444;0.009155273;-67.49725 +15643;6;-0.32752866;-0.51741874;0.04424836 +15643;7;0.93887466;-0.2795926;0.20085388;0.0;0.3421058;0.82289773;-0.45365494;0.0;-0.03844365 +15643;0;-0.44418335;5.6536713;9.928772 +15643;3;0.006500244;0.029052734;-0.021942139 +15644;12;0.21783808;0.060537655;0.2306161;0.9464132 +15645;0;-0.43940735;5.6061707;9.957382 +15646;1;-0.13068345;4.331563;8.800942 +15646;3;-0.0093688965;0.026611328;-0.023162842 +15648;0;-0.43940735;5.544403;9.990768 +15648;12;0.21788326;0.06064468;0.23057355;0.94640636 +15648;3;-0.025253296;0.021102905;-0.024383545 +15650;0;-0.48718262;5.454132;10.048004 +15650;1;-0.13255018;4.331359;8.801015 +15651;3;-0.041748047;0.012542725;-0.02684021 +15653;0;-0.45373535;5.378128;10.095703 +15653;4;14.143372;-1.3412476;-67.04712 +15653;6;-0.34872812;-0.48905692;0.04491319 +15653;7;0.93165284;-0.3016471;0.20256345;0.0;0.36118138;0.82964027;-0.42572874;0.0;-0.039634973 +15653;12;0.21784651;0.060725365;0.2305292;0.9464205 +15654;3;-0.060073853;0.0033874512;-0.029281616 +15654;5;999.60706 +15655;0;-0.46328735;5.3163605;10.124298 +15655;1;-0.13382743;4.3295493;8.801886 +15655;2;0.2730364;-1.207242;-1.1954241; +15655;3;-0.07595825;-0.010040283;-0.032318115 +15657;0;-0.5062866;5.3496094;10.176773 +15658;12;0.21773589;0.060752675;0.23047192;0.94645816 +15658;3;-0.09062195;-0.020431519;-0.029876709 +15660;0;-0.6018219;5.2926025;10.086151 +15660;1;-0.1343007;4.326341;8.803456 +15660;3;-0.104660034;-0.025314331;-0.013397217 +15662;4;14.892578;-1.4907837;-66.44745 +15662;6;-0.3501657;-0.48251206;0.059597477 +15662;7;0.92816716;-0.30388775;0.21484394;0.0;0.36840445;0.83207613;-0.41464126;0.0;-0.052762114 +15662;0;-0.5397186;5.1263123;10.028931 +15662;3;-0.117492676;-0.039978027;-0.0023956299 +15663;12;0.21755981;0.06071525;0.23039916;0.9465188 +15664;0;-0.46806335;4.9362793;10.062302 +15665;1;-0.1335107;4.321745;8.805725 +15665;3;-0.12786865;-0.06440735;-0.0030212402 +15667;0;-0.38208008;4.8365173;10.186325 +15668;12;0.21731849;0.06059805;0.23037708;0.9465871 +15668;3;-0.13642883;-0.08822632;-0.007904053 +15670;0;-0.2817688;4.7557526;10.338928 +15670;1;-0.13062021;4.315939;8.808617 +15670;3;-0.14619446;-0.11206055;-0.014007568 +15674;4;13.392639;-1.6403198;-67.04712 +15674;6;-0.40915024;-0.4309855;0.02724645 +15674;7;0.9125909;-0.3614501;0.19113266;0.0;0.40812403;0.8335617;-0.37230328;0.0;-0.02475182 +15674;0;-0.21009827;4.670227;10.420013 +15674;3;-0.15719604;-0.12976074;-0.020721436 +15676;12;0.21704204;0.060354654;0.23034403;0.946674 +15676;1;-0.12590532;4.30909;8.812037 +15676;0;-0.13366699;4.627472;10.448624 +15676;2;0.22728935;-0.6366725;-1.4088373; +15676;3;-0.16697693;-0.14260864;-0.02684021 +15678;0;-0.09068298;4.622711;10.42955 +15679;12;0.21674053;0.059996806;0.23026563;0.9467849 +15679;3;-0.16880798;-0.15298462;-0.032943726 +15681;17;1;38dead6d7725;8787;2163;-74; +15682;17;1;38dead6d60ff;8152;1235;-66; +15683;17;1;1c1bb5efa29a;7433;2496;-71; +15684;17;1;1c1bb5ecd182;8574;387;-61; +15684;0;-0.06201172;4.5514526;10.415237 +15684;3;-0.16819763;-0.16152954;-0.040267944 +15684;1;-0.12016955;4.301456;8.815846 +15684;4;12.942505;0.1586914;-66.44745 +15684;6;-0.43809265;-0.41198364;0.005953871 +15684;7;0.90453506;-0.38871837;0.17525525;0.0;0.42636436;0.82979244;-0.36008024;0.0;-0.005455668 +15684;0;-0.023803711;4.4754486;10.453384 +15684;3;-0.16452026;-0.16886902;-0.04638672 +15684;12;0.21640944;0.059567187;0.2301439;0.9469174 +15684;1;-0.113950394;4.2937546;8.819683 +15684;0;-0.019012451;4.3519135;10.434326 +15684;3;-0.15719604;-0.17070007;-0.053710938 +15688;12;0.21608178;0.059105504;0.22998756;0.94705915 +15689;0;-0.01423645;4.2711487;10.443863 +15689;3;-0.14926147;-0.17192078;-0.05859375 +15691;1;-0.10770372;4.286448;8.823315 +15691;0;0.03352356;4.214142;10.400925 +15691;3;-0.13581848;-0.17253113;-0.064086914 +15693;4;14.442444;-1.0406494;-67.796326 +15693;6;-0.53966767;-0.38495344;-0.0032231214 +15693;7;0.85849696;-0.47624522;0.19019318;0.0;0.51281;0.7950964;-0.323802;0.0;0.0029872353 +15693;0;0.07652283;4.1476135;10.315094 +15693;3;-0.12420654;-0.17375183;-0.068984985 +15693;12;0.21578176;0.05863886;0.22979817;0.9472025 +15695;5;999.60706 +15695;0;0.10517883;4.0811005;10.315094 +15695;1;-0.1014974;4.280038;8.826499 +15696;3;-0.11076355;-0.17741394;-0.0738678 +15696;2;-0.13968569;-0.05439043;-1.5773726; +15699;1;-0.095236875;4.274597;8.829205 +15699;12;0.2155289;0.058180623;0.22958218;0.9473407 +15700;0;0.1529541;4.009842;10.338928 +15700;3;-0.096725464;-0.17681885;-0.07936096 +15700;0;0.18640137;3.962326;10.367554 +15700;3;-0.085113525;-0.17497253;-0.08609009 +15702;12;0.21533136;0.05772611;0.22933786;0.94747263 +15702;4;13.542175;-1.1901855;-68.84766 +15702;6;-0.56380564;-0.3650013;-0.017977364 +15704;7;0.84852004;-0.49920177;0.17553174;0.0;0.5288968;0.7895467;-0.3112623;0.0;0.01679217 +15704;0;0.25328064;3.9100647;10.37709 +15704;3;-0.069229126;-0.16581726;-0.09341431 +15704;1;-0.0894199;4.2701945;8.831396 +15704;0;0.27236938;3.9053192;10.362778 +15704;3;-0.052124023;-0.15481567;-0.09951782 +15706;12;0.21518777;0.057306178;0.22906516;0.9475966 +15707;0;0.24848938;3.8910675;10.3198395 +15707;3;-0.033187866;-0.13894653;-0.10441589 +15711;1;-0.084869064;4.267263;8.832857 +15711;0;0.24372864;3.8768158;10.238785 +15711;3;-0.013641357;-0.12060547;-0.10990906 +15711;4;13.392639;-0.29144287;-66.29639 +15711;6;-0.575332;-0.3618645;-0.023799956 +15711;7;0.8433581;-0.5088757;0.17260517;0.0;0.5368908;0.78467596;-0.30989027;0.0;0.02225653 +15711;0;0.25805664;3.8530579;10.100464 +15711;3;0.008956909;-0.103500366;-0.116622925 +15712;12;0.21510968;0.056966018;0.22877188;0.9477058 +15717;1;-0.08202573;4.2660565;8.8334675 +15717;2;-0.3502723;0.3696432;-1.4467497; +15717;12;0.21510103;0.056735408;0.22846474;0.9477957 +15717;0;0.22460938;3.8197937;10.10524 +15717;3;0.02909851;-0.08578491;-0.1239624 +15717;0;0.18640137;3.8340607;10.124298 +15717;3;0.05293274;-0.06867981;-0.12823486 +15718;1;-0.080994904;4.2667055;8.833163 +15718;0;0.17684937;3.8863068;10.086151 +15718;3;0.07369995;-0.0491333;-0.13067627 +15720;4;13.243103;-0.14038086;-66.89758 +15720;6;-0.54396284;-0.36772826;-0.017532084 +15720;7;0.8587947;-0.48293212;0.17102113;0.0;0.5120586;0.79846025;-0.31663406;0.0;0.016359163 +15720;0;0.21505737;3.8815765;10.014618 +15720;3;0.095077515;-0.025314331;-0.13618469 +15720;12;0.2151742;0.05661568;0.22813874;0.9478648 +15722;0;0.1577301;3.8863068;9.86676 +15722;1;-0.08180542;4.2692966;8.831903 +15722;3;0.11708069;-0.0051574707;-0.13618469 +15724;0;0.10997009;3.8768158;9.747543 +15725;12;0.21532816;0.056619633;0.22780894;0.9479089 +15725;3;0.13967896;0.013168335;-0.13677979 +15727;0;0.0048675537;3.8958282;9.690308 +15727;1;-0.08457684;4.2738147;8.829692 +15727;3;0.15983582;0.02293396;-0.1410675 +15729;4;14.143372;-1.3412476;-68.24646 +15729;6;-0.52977306;-0.38225812;-5.023115E-4 +15729;7;0.8630164;-0.46886468;0.1880658;0.0;0.5051758;0.8006402;-0.32213792;0.0;4.6605704E-4 +15729;0;-0.057235718;3.962326;9.675995 +15729;3;0.17755127;0.033935547;-0.144104 +15730;12;0.21556073;0.05675361;0.22748703;0.9479252 +15731;5;999.61035 +15733;0;-0.095443726;3.9813385;9.599686 +15733;2;-0.21457522;0.3883748;-1.0288401; +15733;3;0.19221497;0.044311523;-0.14472961 +15734;0;-0.12890625;4.009842;9.528137 +15734;12;0.2158755;0.056974974;0.22715689;0.9479196 +15735;3;0.20625305;0.055923462;-0.14350891 +15736;0;-0.22442627;4.024109;9.404144 +15736;1;-0.088679135;4.2801504;8.826582 +15736;1;-0.09386046;4.287887;8.822773 +15737;3;0.21542358;0.06324768;-0.1410675 +15738;4;12.193298;-0.440979;-67.196655 +15739;6;-0.3849342;-0.4042282;0.023860084 +15739;7;0.9230358;-0.3452353;0.16975686;0.0;0.38408804;0.85212684;-0.35546583;0.0;-0.021935027 +15739;0;-0.24832153;4.057358;9.284912 +15739;3;0.2239685;0.069366455;-0.1416626 +15739;12;0.21625324;0.05727152;0.22682329;0.9478954 +15741;0;-0.2960968;4.142868;9.237228 +15741;1;-0.09979759;4.296658;8.8184395 +15741;3;0.22886658;0.07058716;-0.13922119 +15743;0;-0.3199768;4.1713715;9.189545 +15744;12;0.21667682;0.057622414;0.22650458;0.9478537 +15744;3;0.23008728;0.07241821;-0.1386261 +15746;0;-0.3534088;4.2046356;9.132294 +15746;1;-0.10602596;4.3060308;8.813794 +15746;3;0.23069763;0.07180786;-0.13922119 +15748;4;12.193298;-0.440979;-67.196655 +15748;6;-0.33137015;-0.43119618;0.038679503 +15748;7;0.93963194;-0.29555947;0.17244233;0.0;0.3403786;0.8590435;-0.3823434;0.0;-0.035130266 +15748;0;-0.40596008;4.233139;9.051224 +15749;3;0.22824097;0.0687561;-0.1398468 +15749;12;0.21712789;0.057997383;0.2261893;0.94780284 +15751;0;-0.43463135;4.2426453;8.989227 +15751;1;-0.11229242;4.315445;8.809112 +15751;2;0.15119466;0.18911695;-0.42315483; +15752;3;0.2239685;0.065078735;-0.1386261 +15754;0;-0.43940735;4.266403;8.898605 +15754;12;0.21758093;0.058372654;0.2258727;0.9477514 +15754;3;0.21664429;0.061416626;-0.13922119 +15755;0;-0.45851135;4.299652;8.836609 +15755;1;-0.118292026;4.3245797;8.804551 +15756;3;0.20932007;0.056533813;-0.14228821 +15758;4;14.143372;-0.59051514;-66.29639 +15758;6;-0.35623646;-0.45231944;0.051841214 +15758;7;0.9280586;-0.31367773;0.20078182;0.0;0.36950624;0.84296554;-0.39099115;0.0;-0.04660696 +15758;0;-0.5015106;4.3329163;8.812759 +15758;3;0.20075989;0.048599243;-0.14533997 +15759;12;0.21802247;0.05873088;0.22555351;0.94770384 +15760;0;-0.5062866;4.342407;8.755524 +15760;1;-0.1240183;4.333155;8.800255 +15760;3;0.19343567;0.041870117;-0.14961243 +15762;0;-0.49671936;4.3376617;8.750748 +15763;12;0.21843676;0.05906122;0.22521973;0.9476673 +15763;3;0.18670654;0.03515625;-0.1557312 +15765;0;-0.5015106;4.3281555;8.722153 +15765;1;-0.12933019;4.3410964;8.796265 +15765;3;0.17816162;0.030273438;-0.16427612 +15767;4;14.143372;-0.59051514;-66.29639 +15767;6;-0.33941287;-0.45996672;0.05743525 +15767;7;0.93291146;-0.29833084;0.2016804;0.0;0.3564133;0.8449469;-0.39879107;0.0;-0.051437557 +15768;0;-0.46328735;4.299652;8.70784 +15768;3;0.1714325;0.025985718;-0.1716156 +15768;12;0.21882266;0.059354465;0.22486086;0.9476452 +15770;5;999.61035 +15771;1;-0.13446358;4.3483367;8.79261 +15771;0;-0.44895935;4.2854004;8.712601 +15771;2;0.3056851;0.046079636;0.012766838; +15771;3;0.16349792;0.02293396;-0.17771912 +15773;0;-0.44418335;4.2616425;8.726913 +15773;12;0.21917485;0.05962042;0.22446476;0.947641 +15773;3;0.15861511;0.021102905;-0.18687439 +15775;1;-0.13961078;4.354921;8.789271 +15775;0;-0.4298401;4.233139;8.698288 +15775;3;0.154953;0.021102905;-0.19604492 +15777;4;13.842773;-0.440979;-68.096924 +15777;6;-0.33945414;-0.4524419;0.049376465 +15777;7;0.9346028;-0.29946947;0.19192578;0.0;0.35291213;0.84806037;-0.39528024;0.0;-0.044390272 +15777;0;-0.38208008;4.199875;8.650604 +15778;3;0.15188599;0.019882202;-0.20703125 +15778;12;0.21949519;0.05986878;0.22403431;0.94765306 +15780;0;-0.36775208;4.1476135;8.626755 +15780;1;-0.14501174;4.3611116;8.786113 +15780;3;0.1525116;0.018051147;-0.21376038 +15782;0;-0.3390808;4.090622;8.6458435 +15782;12;0.21979192;0.060114905;0.22356279;0.94768006 +15782;3;0.154953;0.017440796;-0.2223053 +15784;0;-0.3152008;4.052597;8.6410675 +15785;1;-0.15057433;4.3671675;8.783011 +15785;3;0.1555481;0.015609741;-0.22903442 +15796;17;1;38dead6d7725;4687;3072;-70; +15796;17;1;38dead6d60ff;7827;1501;-64; +15797;17;1;1c1bb5efa29a;9841;947;-69; +15797;17;1;1c1bb5ecd182;8253;972;-63; +15797;12;0.22008324;0.060357;0.22305375;0.947717 +15797;4;13.842773;-0.440979;-68.096924 +15797;6;-0.37669513;-0.43827993;0.036460903 +15797;7;0.92357683;-0.33308133;0.18990205;0.0;0.38199013;0.8419955;-0.38095576;0.0;-0.033007413 +15797;0;-0.25309753;3.9813385;8.612442 +15797;3;0.16166687;0.014389038;-0.23391724 +15797;0;-0.20533752;3.9005737;8.602905 +15797;2;0.14967376;0.274343;0.12381363; +15797;3;0.16654968;0.013763428;-0.2394104 +15797;0;-0.16233826;3.8768158;8.6362915 +15798;12;0.22037874;0.06059328;0.22251403;0.9477601 +15798;1;-0.15616524;4.373272;8.779876 +15798;3;0.17388916;0.013763428;-0.2418518 +15798;0;-0.10499573;3.8245544;8.65538 +15798;3;0.18121338;0.017440796;-0.24368286 +15798;1;-0.16175821;4.3797154;8.776562 +15798;4;13.693237;-1.0406494;-67.796326 +15798;6;-0.4519155;-0.41604543;0.012130095 +15798;7;0.8974054;-0.39943746;0.18738566;0.0;0.44106755;0.82287025;-0.35825136;0.0;-0.011095056 +15798;0;-0.01423645;3.772293;8.6410675 +15798;3;0.19099426;0.02293396;-0.24490356 +15798;12;0.22069517;0.060826812;0.22195236;0.94780326 +15799;0;0.019195557;3.7437897;8.65538 +15799;1;-0.16750245;4.386695;8.772967 +15799;3;0.2032013;0.03086853;-0.24368286 +15801;0;0.10041809;3.682022;8.598129 +15801;12;0.22104023;0.06107559;0.22138685;0.9478391 +15802;3;0.21603394;0.03881836;-0.2406311 +15804;0;0.1577301;3.663025;8.598129 +15804;1;-0.17363408;4.394571;8.768906 +15804;3;0.22886658;0.047973633;-0.2406311 +15806;4;13.693237;-1.0406494;-67.796326 +15806;6;-0.5296749;-0.40267852;-0.018342642 +15806;7;0.86645794;-0.46484;0.18213892;0.0;0.498965;0.7939464;-0.347395;0.0;0.016874554 +15806;0;0.20550537;3.6297607;8.574295 +15807;12;0.22142941;0.061359145;0.22083269;0.9478592 +15807;3;0.24168396;0.056533813;-0.2394104 +15808;5;999.61035 +15809;1;-0.1802981;4.403452;8.764316 +15809;0;0.26283264;3.6202698;8.598129 +15809;2;-0.2751217;0.68752575;0.13851357; +15809;3;0.25512695;0.06692505;-0.23635864 +15811;0;0.27716064;3.5632477;8.564758 +15812;12;0.22186533;0.061686985;0.2202905;0.94786215 +15812;3;0.26611328;0.077301025;-0.23330688 +15813;0;0.3058319;3.5062408;8.559982 +15814;1;-0.18759955;4.413279;8.759217 +15814;3;0.27711487;0.089523315;-0.23147583 +15816;4;13.093567;-1.6403198;-66.596985 +15816;6;-0.58162785;-0.3885383;-0.03571291 +15816;7;0.84246784;-0.5084358;0.17815982;0.0;0.53773224;0.77328926;-0.33595794;0.0;0.03304398 +15816;0;0.37747192;3.4919891;8.550446 +15817;3;0.28567505;0.101119995;-0.22964478 +15817;12;0.22234453;0.06206297;0.21976683;0.9478469 +15819;0;0.38703918;3.5062408;8.502762 +15819;3;0.29177856;0.11090088;-0.22718811 +15819;1;-0.19570383;4.424003;8.753629 +15822;12;0.22286437;0.06249912;0.21926141;0.9478132 +15822;0;0.4156952;3.4967346;8.497986 +15822;3;0.2997284;0.12495422;-0.2259674 +15824;0;0.4204712;3.4682465;8.46936 +15824;1;-0.20455673;4.435229;8.747744 +15824;3;0.3033905;0.1353302;-0.2247467 +15826;4;13.243103;-1.1901855;-66.14685 +15826;6;-0.6091623;-0.388242;-0.049605425 +15827;7;0.82985926;-0.5295967;0.17567322;0.0;0.5560822;0.7590905;-0.33845875;0.0;0.045894764 +15827;0;0.47779846;3.4824982;8.455063 +15827;3;0.3058319;0.14389038;-0.22291565 +15827;12;0.22340122;0.06298441;0.21877913;0.94776607 +15829;1;-0.21417603;4.4468145;8.74163 +15829;0;0.46347046;3.4872284;8.455063 +15829;3;0.3046112;0.15184021;-0.22169495 +15829;2;-0.6432513;0.95878744;0.22741795; +15831;0;0.50645447;3.515747;8.44075 +15831;12;0.22394888;0.06351921;0.21831395;0.9477085 +15831;3;0.3058319;0.15977478;-0.21925354 +15833;1;-0.2243423;4.458448;8.735446 +15833;0;0.50645447;3.525238;8.426437 +15833;3;0.3033905;0.16770935;-0.21864319 +15835;4;14.442444;-1.0406494;-67.796326 +15835;6;-0.64080495;-0.3955869;-0.06003082 +15835;7;0.81399226;-0.55166996;0.1818702;0.0;0.5782315;0.73970646;-0.344213;0.0;0.05536141 +15835;0;0.45869446;3.525238;8.41214 +15836;3;0.29788208;0.17442322;-0.21681213 +15836;12;0.22449131;0.06408885;0.21786405;0.9476453 +15838;1;-0.23512685;4.469892;8.729312 +15838;0;0.49214172;3.5632477;8.435989 +15838;3;0.29484558;0.1829834;-0.21620178 +15840;0;0.49214172;3.615509;8.431213 +15841;12;0.22501856;0.06468891;0.2174301;0.94757915 +15841;3;0.2899475;0.18849182;-0.21376038 +15842;1;-0.24644178;4.481052;8.723277 +15842;0;0.48257446;3.6202698;8.41214 +15842;3;0.28077698;0.19459534;-0.21253967 +15846;4;13.693237;-2.241516;-68.696594 +15846;6;-0.6191395;-0.4058078;-0.057303626 +15846;7;0.82616216;-0.53320205;0.1820762;0.0;0.5609699;0.7482375;-0.35419422;0.0;0.052620836 +15846;0;0.46824646;3.6582794;8.421677 +15846;3;0.2740631;0.19825745;-0.21253967 +15846;12;0.22552232;0.06531765;0.21701114;0.9475123 +15847;5;999.61035 +15848;1;-0.25817785;4.491609;8.717505 +15848;2;-0.78181016;0.9171424;0.28029156; +15848;0;0.45869446;3.682022;8.450302 +15848;3;0.26245117;0.2013092;-0.21130371 +15849;0;0.4443512;3.729538;8.478897 +15849;12;0.2259885;0.06596318;0.2166053;0.9474494 +15850;3;0.2508545;0.20680237;-0.2088623 +15852;1;-0.27023593;4.50133;8.712124 +15853;0;0.3965912;3.753296;8.488449 +15853;3;0.24107361;0.20863342;-0.20703125 +15855;4;13.243103;-1.1901855;-66.89758 +15855;6;-0.5673203;-0.41591626;-0.046687327 +15855;7;0.85255784;-0.491561;0.17751852;0.0;0.5208862;0.77144593;-0.36544296;0.0;0.042691555 +15855;0;0.4156952;3.7485352;8.517059 +15856;3;0.22824097;0.20986938;-0.20703125 +15857;12;0.22640458;0.06661584;0.21620817;0.9473951 +15857;0;0.38703918;3.7817993;8.502762 +15857;3;0.21176147;0.21414185;-0.20581055 +15861;1;-0.28246266;4.510121;8.70719 +15861;12;0.22676888;0.06727066;0.21582697;0.9473486 +15865;0;0.33926392;3.8055573;8.555222 +15865;3;0.20014954;0.21658325;-0.20458984 +15865;0;0.34883118;3.8388062;8.588608 +15865;1;-0.2949781;4.5177245;8.702831 +15865;3;0.18365479;0.21780396;-0.20275879 +15866;12;0.22706494;0.067924865;0.21545738;0.94731516 +15867;4;13.842773;-1.7913818;-66.44745 +15867;6;-0.58033144;-0.42002013;-0.04059326 +15867;7;0.84466565;-0.50064325;0.18946339;0.0;0.5340103;0.76359206;-0.36298797;0.0;0.037054744 +15867;0;0.3201599;3.8388062;8.617218 +15867;1;-0.307638;4.5239935;8.699135 +15867;3;0.16532898;0.22146606;-0.20214844 +15867;0;0.31536865;3.8483124;8.626755 +15867;3;0.14700317;0.22329712;-0.20153809 +15867;2;-0.72078264;0.7458477;0.14288235; +15869;12;0.2272866;0.06857183;0.21510108;0.9472963 +15869;0;0.30104065;3.8578186;8.674438 +15869;3;0.12989807;0.22512817;-0.20031738 +15871;0;0.27716064;3.8578186;8.70784 +15871;1;-0.3204839;4.5287223;8.696211 +15871;3;0.11218262;0.22697449;-0.19848633 +15873;4;14.292908;-0.74157715;-66.44745 +15873;6;-0.56224245;-0.41685364;-0.03181812 +15873;7;0.85249996;-0.4874353;0.1888135;0.0;0.5219172;0.7736113;-0.35934368;0.0;0.029088546 +15874;0;0.28193665;3.862564;8.755524 +15874;3;0.091415405;0.2294159;-0.19482422 +15874;12;0.22742206;0.06921005;0.21475469;0.947296 +15876;0;0.27716064;3.872055;8.769836 +15876;1;-0.3334028;4.5318875;8.694076 +15876;3;0.07064819;0.23124695;-0.19360352 +15878;12;0.22747236;0.06983607;0.21442781;0.947312 +15879;0;0.26760864;3.8768158;8.774612 +15881;1;-0.3463879;4.5332885;8.692837 +15881;3;0.04988098;0.233078;-0.1905365 +15881;0;0.26760864;3.8388062;8.812759 +15881;3;0.030944824;0.233078;-0.18748474 +15886;4;14.143372;-1.940918;-66.596985 +15886;6;-0.58075213;-0.41064283;-0.030356716 +15886;7;0.8423128;-0.5030403;0.19354485;0.0;0.5382701;0.7665447;-0.35024923;0.0;0.027828718 +15887;0;0.22460938;3.843567;8.846146 +15887;2;-0.6624306;0.6992388;-0.08904457; +15888;12;0.22742331;0.070447266;0.21412022;0.94734806 +15888;3;0.011993408;0.2318573;-0.18260193 +15888;1;-0.35939714;4.5330086;8.692455 +15888;5;999.61304 +15888;0;0.17684937;3.7913055;8.827072 +15888;3;-0.0093688965;0.2306366;-0.17893982 +15888;12;0.2272813;0.07104289;0.21383236;0.9474027 +15888;0;0.1529541;3.753296;8.850922 +15888;3;-0.02708435;0.22634888;-0.17527771 +15890;0;0.119506836;3.7152863;8.927231 +15890;1;-0.3719698;4.5309615;8.692993 +15890;3;-0.04724121;0.22024536;-0.1722107 +15893;4;14.593506;-2.5405884;-65.69672 +15893;6;-0.59584355;-0.39433995;-0.013385976 +15893;7;0.83048743;-0.5181347;0.20451692;0.0;0.5569004;0.76415163;-0.32547557;0.0;0.012358238 +15893;0;0.09085083;3.6867828;8.941528 +15893;3;-0.06617737;0.21536255;-0.16854858 +15894;12;0.2270473;0.07159823;0.21356946;0.9474763 +15894;0;0.03831482;3.663025;9.008301 +15895;1;-0.3842008;4.5271835;8.69443 +15895;3;-0.08694458;0.20436096;-0.16366577 +15897;0;-0.009475708;3.6345215;9.046463 +15898;12;0.22672343;0.0721174;0.2133186;0.947571 +15898;3;-0.10650635;0.19337463;-0.1587677 +15900;0;-0.01423645;3.5965118;9.089371 +15900;1;-0.39545313;4.521657;8.6968 +15905;3;-0.12786865;0.18359375;-0.15266418 +15906;12;0.2263137;0.07256569;0.21308622;0.947687 +15906;1;-0.4056661;4.514271;8.700167 +15906;2;-0.4756303;0.90185213;-0.3354931; +15906;4;13.693237;-1.6403198;-65.84625 +15906;6;-0.5392706;-0.3767791;0.0015662733 +15906;7;0.85778654;-0.47748983;0.19027825;0.0;0.5140042;0.79789287;-0.3149078;0.0;-0.0014564057 +15906;0;-0.07156372;3.5109863;9.151382 +15906;3;-0.14741516;0.17198181;-0.14656067 +15906;0;-0.10499573;3.4872284;9.175232 +15908;3;-0.17063904;0.15916443;-0.1404419 +15908;0;-0.17666626;3.4302368;9.227692 +15908;3;-0.19018555;0.14205933;-0.13250732 +15908;12;0.22581576;0.07294287;0.21287462;0.9478244 +15909;17;1;38dead6d7725;7137;3556;-68; +15911;17;1;38dead6d60ff;6844;1800;-68; +15911;17;1;1c1bb5efa29a;4763;2945;-72; +15912;17;1;1c1bb5ecd182;6976;780;-64; +15912;1;-0.414566;4.50499;8.704556 +15912;0;-0.171875;3.3827057;9.251541 +15912;3;-0.2091217;0.12617493;-0.12211609 +15912;4;14.442444;-1.6403198;-66.596985 +15912;6;-0.55251193;-0.3504812;0.018575849 +15912;7;0.84771484;-0.4929216;0.19597921;0.0;0.53016526;0.7994619;-0.28246343;0.0;-0.017445575 +15913;0;-0.23876953;3.3542175;9.304001 +15913;3;-0.22744751;0.109680176;-0.112350464 +15913;12;0.2252299;0.07323093;0.21268316;0.9479846 +15914;0;-0.2722168;3.3161926;9.346909 +15914;1;-0.4217849;4.4940524;8.709863 +15914;3;-0.24638367;0.09196472;-0.10379028 +15916;0;-0.3438568;3.259201;9.394608 +15917;12;0.22457074;0.07342005;0.21252462;0.94816184 +15917;3;-0.2592163;0.07608032;-0.09402466 +15918;0;-0.3438568;3.244934;9.4423065 +15919;1;-0.42730263;4.4815855;8.716015 +15919;3;-0.27142334;0.05897522;-0.08302307 +15921;4;15.342712;-2.6901245;-67.49725 +15921;6;-0.5825011;-0.3308111;0.036400523 +15921;7;0.8280334;-0.5202866;0.20895538;0.0;0.55962116;0.78981006;-0.25104585;0.0;-0.034419257 +15924;12;0.2238492;0.07350693;0.21239473;0.94835484 +15924;1;-0.43108135;4.4681244;8.722737 +15924;2;-0.18721855;1.1850433;-0.66160965; +15924;0;-0.38685608;3.235443;9.4804535 +15924;3;-0.28120422;0.045532227;-0.072647095 +15924;5;999.61304 +15924;0;-0.37728882;3.2164307;9.518616 +15924;3;-0.28974915;0.032104492;-0.061645508 +15926;0;-0.41552734;3.1879272;9.494766 +15926;12;0.22309151;0.07349944;0.21229933;0.9485553 +15926;3;-0.29464722;0.021102905;-0.051879883 +15928;0;-0.4202881;3.145172;9.528137 +15928;1;-0.43337992;4.453979;8.729855 +15929;3;-0.2934265;0.0113220215;-0.03904724 +15930;4;14.593506;-1.1901855;-67.196655 +15930;6;-0.5241966;-0.3185423;0.044081632 +15930;7;0.85797757;-0.47533807;0.19475137;0.0;0.5119794;0.82217413;-0.24881047;0.0;-0.041850455 +15931;0;-0.4202881;3.1404114;9.499542 +15931;3;-0.29096985;0.002166748;-0.028656006 +15932;12;0.2223116;0.07341461;0.21223865;0.94875854 +15933;0;-0.39640808;3.1594238;9.532913 +15933;1;-0.43434206;4.439868;8.736992 +15933;3;-0.28486633;-0.003326416;-0.015838623 +15935;0;-0.4202881;3.1879272;9.470917 +15936;12;0.22154866;0.07327276;0.21222119;0.94895184 +15936;3;-0.27449036;-0.007598877;-0.0018005371 +15938;0;-0.4202881;3.235443;9.418457 +15938;1;-0.43427712;4.4264374;8.743808 +15938;3;-0.2616577;-0.011260986;0.010421753 +15940;4;13.842773;-2.5405884;-66.89758 +15940;6;-0.50783116;-0.33058625;0.044594295 +15940;7;0.8658958;-0.4599521;0.1966431;0.0;0.49844405;0.8264868;-0.26167354;0.0;-0.042165633 +15940;0;-0.43463135;3.2496948;9.375534 +15940;3;-0.24577332;-0.013702393;0.022033691 +15941;12;0.22083133;0.07309948;0.2122512;0.94912565 +15942;0;-0.43463135;3.3067017;9.346909 +15942;1;-0.4334098;4.4142623;8.750003 +15943;2;-0.058119416;1.2380948;-0.7236185; +15943;3;-0.2262268;-0.015533447;0.03425598 +15945;0;-0.42507935;3.3494568;9.289688 +15945;12;0.2201882;0.07291243;0.2123294;0.9492719 +15946;3;-0.20240784;-0.0149383545;0.04524231 +15947;0;-0.4202881;3.3922272;9.16568 +15947;1;-0.43192062;4.4039555;8.755268 +15948;3;-0.17736816;-0.0149383545;0.056243896 +15950;4;13.842773;-0.74157715;-67.64679 +15950;6;-0.43719923;-0.35412702;0.045822445 +15950;7;0.8982647;-0.39713144;0.18816824;0.0;0.43734968;0.8497271;-0.29443038;0.0;-0.042964105 +15950;0;-0.42507935;3.425476;9.08461 +15950;3;-0.15231323;-0.014312744;0.06539917 +15951;12;0.21965002;0.07272812;0.21244712;0.9493844 +15953;0;-0.42507935;3.4777374;9.003525 +15953;1;-0.43002787;4.3959465;8.759386 +15953;3;-0.12420654;-0.014312744;0.07640076 +15956;12;0.21923722;0.07256361;0.212609;0.9494562 +15956;0;-0.4202881;3.5299988;8.903381 +15956;3;-0.09428406;-0.013702393;0.08677673 +15958;1;-0.4277078;4.3904967;8.762232 +15958;0;-0.41073608;3.5870209;8.827072 +15958;3;-0.06556702;-0.0149383545;0.095336914 +15960;4;14.442444;-2.241516;-67.04712 +15960;6;-0.4508087;-0.38560507;0.04649787 +15960;7;0.89150524;-0.40370104;0.20553331;0.0;0.45095852;0.83400196;-0.3179262;0.0;-0.04306805 +15960;0;-0.41073608;3.7010345;8.750748 +15960;3;-0.03930664;-0.014312744;0.10083008 +15961;12;0.21896538;0.072420076;0.21280952;0.94948494 +15963;5;999.61304 +15963;0;-0.43463135;3.7390442;8.669678 +15963;1;-0.42504874;4.3877597;8.763732 +15963;2;-0.048402548;0.8901868;-0.21428204; +15963;3;-0.014266968;-0.011871338;0.10939026 +15965;0;-0.40596008;3.772293;8.559982 +15965;12;0.21883842;0.072300434;0.21303535;0.94947267 +15965;3;0.0071105957;-0.009429932;0.11671448 +15967;0;-0.41073608;3.843567;8.497986 +15967;1;-0.42223415;4.387303;8.764097 +15971;3;0.027282715;-0.0069885254;0.123428345 +15971;4;13.693237;-1.3412476;-67.04712 +15971;6;-0.3737532;-0.42431998;0.048295762 +15971;7;0.92262125;-0.33273354;0.19508594;0.0;0.3831899;0.8484047;-0.3652054;0.0;-0.04399573 +15973;0;-0.39163208;3.9053192;8.373978 +15973;3;0.043151855;-0.003326416;0.13076782 +15974;12;0.21883564;0.07220846;0.21328467;0.9494244 +15974;1;-0.41934055;4.3888025;8.763485 +15975;12;0.21893714;0.07214497;0.21356563;0.94934267 +15975;0;-0.39163208;4.0383606;8.283371 +15975;3;0.055984497;3.5095215E-4;0.13809204 +15976;0;-0.34864807;4.090622;8.230911 +15976;3;0.066986084;0.0033874512;0.14053345 +15977;1;-0.41643927;4.391687;8.762178 +15977;0;-0.36297607;4.142868;8.121216 +15977;3;0.07247925;0.0070648193;0.14482117 +15979;4;13.693237;-2.241516;-64.64691 +15979;6;-0.3727134;-0.47131422;0.044665072 +15979;7;0.9230313;-0.32444212;0.20676205;0.0;0.38266253;0.8298006;-0.40620238;0.0;-0.039782114 +15979;0;-0.3438568;4.185623;8.068741 +15980;3;0.074920654;0.010726929;0.14970398 +15981;12;0.21910773;0.072106645;0.21387315;0.949237 +15982;1;-0.4136623;4.3953004;8.760498 +15982;0;-0.3534088;4.2426453;7.978134 +15982;2;-0.082264006;0.39558983;0.47989082; +15982;3;0.07736206;0.009506226;0.1558075 +15983;0;-0.3199768;4.3186646;7.9542847 +15984;12;0.2193148;0.07208846;0.21420002;0.9491168 +15984;3;0.07614136;0.0113220215;0.15704346 +15986;0;-0.3438568;4.3851776;7.882736 +15987;1;-0.4107342;4.3992805;8.758637 +15987;3;0.0718689;0.012542725;0.1594696 +15989;4;15.04364;-1.0406494;-66.596985 +15989;6;-0.36506188;-0.5072646;0.043593865 +15989;7;0.92565614;-0.31205156;0.21397325;0.0;0.3764435;0.81647646;-0.43778598;0.0;-0.03809231 +15989;0;-0.2960968;4.4231873;7.863678 +15989;3;0.06637573;0.0113220215;0.16069031 +15990;12;0.21953997;0.072072074;0.21454683;0.9489876 +15991;0;-0.2817688;4.513443;7.7969055 +15991;1;-0.40773076;4.4031367;8.756841 +15991;3;0.059036255;0.0113220215;0.16313171 +15993;0;-0.28652954;4.546707;7.734909 +15993;3;0.050491333;0.010101318;0.16191101 +15994;12;0.21975888;0.07205412;0.21490495;0.94885725 +15995;1;-0.40459913;4.406595;8.755246 +15996;0;-0.25309753;4.627472;7.7205963 +15996;3;0.041931152;0.0046081543;0.16252136 +15998;4;15.492249;-1.7913818;-65.24658 +15998;6;-0.39252996;-0.53971726;0.032770388 +15998;7;0.9170074;-0.32815245;0.22674525;0.0;0.39787865;0.7926092;-0.4620207;0.0;-0.028107176 +15998;0;-0.25787354;4.6559753;7.6681366 +15999;12;0.21995538;0.072025254;0.21527043;0.9487311 +15999;3;0.03338623;3.5095215E-4;0.1594696 +16002;1;-0.40112457;4.4094787;8.753954 +16002;2;-0.16117129;-0.08638477;0.9528208; +16004;5;999.61304 +16004;0;-0.23876953;4.7082367;7.6633606 +16004;3;0.022994995;-0.0027160645;0.1570282 +16004;12;0.22012332;0.0719705;0.2156309;0.9486145 +16004;0;-0.24354553;4.750992;7.653824 +16004;3;0.012619019;-0.007598877;0.15457153 +16005;0;-0.20054626;4.7700043;7.6108856 +16005;1;-0.39740324;4.4116282;8.75304 +16005;3;0.0028381348;-0.011260986;0.14907837 +16011;4;15.04364;-1.940918;-66.596985 +16011;6;-0.37336093;-0.55968946;0.026343828 +16011;7;0.92568266;-0.3090938;0.2181114;0.0;0.37764177;0.7890385;-0.48456678;0.0;-0.022321707 +16011;0;-0.19577026;4.793747;7.596588 +16011;3;-0.0093688965;-0.0149383545;0.14541626 +16011;12;0.22025467;0.07188923;0.21597876;0.948511 +16011;0;-0.157547;4.827011;7.596588 +16011;3;-0.02281189;-0.017974854;0.1399231 +16011;1;-0.39344227;4.412957;8.752549 +16016;12;0.22034384;0.07178237;0.21630943;0.948423 +16016;0;-0.19577026;4.827011;7.601364 +16016;3;-0.033187866;-0.019821167;0.13502502 +16016;0;-0.157547;4.841263;7.644287 +16017;3;-0.04663086;-0.021652222;0.12892151 +16017;1;-0.38947186;4.4132347;8.752587 +16017;0;-0.10499573;4.827011;7.644287 +16017;4;14.593506;-0.74157715;-66.89758 +16017;6;-0.3705854;-0.56318396;0.013734326 +16018;7;0.9293722;-0.30622885;0.20613435;0.0;0.36896154;0.7881592;-0.49261808;0.0;-0.011612825 +16018;12;0.22037736;0.071651965;0.21661775;0.9483547 +16018;3;-0.0594635;-0.022872925;0.123413086 +16020;1;-0.38551152;4.4124203;8.753173 +16020;0;-0.12411499;4.8317566;7.644287 +16020;3;-0.072280884;-0.024093628;0.11791992 +16020;2;-0.25823262;-0.3719983;1.1148262; +16022;0;-0.11456299;4.8079987;7.677658 +16022;3;-0.084503174;-0.02470398;0.11242676 +16023;12;0.2203525;0.07150591;0.21690308;0.9483063 +16024;0;-0.06201172;4.8222656;7.7062836 +16024;1;-0.38165998;4.4104733;8.754323 +16025;3;-0.09550476;-0.024093628;0.1081543 +16026;4;12.942505;-1.4907837;-67.196655 +16026;6;-0.34568143;-0.55912936;0.0080467295 +16026;7;0.939368;-0.28723866;0.18730077;0.0;0.34284264;0.7975702;-0.49632686;0.0;-0.0068212776 +16027;0;-0.06201172;4.8317566;7.815979 +16027;3;-0.10772705;-0.019821167;0.10205078 +16027;12;0.22026788;0.071340285;0.21715653;0.94828033 +16029;0;-0.08590698;4.8127594;7.849365 +16029;1;-0.3780864;4.40742;8.756015 +16029;3;-0.11810303;-0.015533447;0.09837341 +16036;0;-0.10499573;4.7985077;7.8684235 +16036;3;-0.12664795;-0.011260986;0.0947113 +16036;1;-0.37509525;4.4034433;8.758144 +16036;0;-0.06678772;4.803253;7.9208984 +16036;3;-0.13703918;-0.0039367676;0.08920288 +16036;12;0.22012044;0.07117635;0.21740462;0.9482701 +16037;4;14.892578;-1.7913818;-66.44745 +16037;6;-0.40988204;-0.54509825;0.008431636 +16037;7;0.915393;-0.3407489;0.21434943;0.0;0.40249664;0.78424853;-0.47217655;0.0;-0.007209608 +16037;0;-0.100234985;4.7747498;7.9685974 +16037;3;-0.14497375;0.002166748;0.086761475 +16038;12;0.21991776;0.07102489;0.21764007;0.94827455 +16038;0;-0.08590698;4.7747498;8.030594 +16039;1;-0.37282375;4.3985724;8.760689 +16039;2;-0.3333543;-0.3825102;0.89270496; +16039;3;-0.15353394;0.007659912;0.08370972 +16039;5;999.60626 +16041;0;-0.095443726;4.73674;8.102127 +16041;12;0.21965893;0.07089565;0.21786587;0.94829226 +16042;3;-0.16026306;0.015609741;0.08065796 +16043;0;-0.100234985;4.6987305;8.125992 +16043;1;-0.37121028;4.3928914;8.763608 +16044;3;-0.16697693;0.023544312;0.07577515 +16047;17;1;38dead6d7725;7445;916;-68; +16048;17;1;38dead6d60ff;7584;608;-70; +16048;17;1;1c1bb5efa29a;5617;4216;-75; +16049;17;1;1c1bb5ecd182;4253;1943;-58; +16049;4;15.04364;-1.940918;-65.84625 +16049;6;-0.42587775;-0.52422893;0.012334482 +16049;7;0.9080567;-0.35764247;0.21800226;0.0;0.41871127;0.788382;-0.45070496;0.0;-0.010677816 +16049;0;-0.07635498;4.6987305;8.226135 +16049;3;-0.17063904;0.029647827;0.07394409 +16049;0;-0.11933899;4.684494;8.292908 +16049;12;0.21935005;0.07078764;0.21808764;0.94832087 +16049;3;-0.17308044;0.038208008;0.06843567 +16049;1;-0.37038055;4.3865805;8.766804 +16050;0;-0.12411499;4.660721;8.33107 +16051;12;0.21899918;0.0707121;0.21830279;0.9483581 +16051;3;-0.1749115;0.04737854;0.06599426 +16053;0;-0.11933899;4.6654816;8.393066 +16053;1;-0.37042746;4.379949;8.770117 +16054;3;-0.17614746;0.055923462;0.06355286 +16055;4;13.392639;-1.6403198;-67.49725 +16055;6;-0.37646827;-0.50729835;0.0142178 +16055;7;0.92733556;-0.32133806;0.1918088;0.0;0.3740245;0.81284875;-0.44652274;0.0;-0.0124267945 +16055;0;-0.11456299;4.660721;8.416901 +16056;3;-0.17552185;0.06385803;0.059890747 +16056;12;0.2186238;0.07067344;0.21851012;0.94839984 +16060;1;-0.37132153;4.3731375;8.773478 +16061;2;-0.30555215;-0.28022194;0.46321106; +16061;12;0.21822609;0.07067535;0.2187141;0.94844425 +16062;0;-0.147995;4.5894623;8.49321 +16062;3;-0.17430115;0.07241821;0.05744934 +16062;0;-0.147995;4.560959;8.536133 +16062;3;-0.17430115;0.08035278;0.054397583 +16063;1;-0.37305647;4.366245;8.776836 +16064;0;-0.15278625;4.546707;8.588608 +16064;3;-0.1724701;0.089523315;0.050735474 +16065;4;13.842773;-2.090454;-66.89758 +16065;6;-0.40440264;-0.4868154;0.017787533 +16069;7;0.91591823;-0.3477592;0.20039323;0.0;0.40105706;0.8125356;-0.42301214;0.0;-0.015720276 +16069;12;0.2178178;0.07071542;0.21891156;0.94848967 +16069;0;-0.10978699;4.5086975;8.621979 +16069;3;-0.16819763;0.09623718;0.04949951 +16069;0;-0.13366699;4.513443;8.6362915 +16070;1;-0.3755651;4.3594303;8.780115 +16070;3;-0.16636658;0.10296631;0.04827881 +16073;12;0.21740526;0.07079846;0.21910588;0.94853324 +16073;0;-0.157547;4.470688;8.688751 +16073;3;-0.16085815;0.11029053;0.047058105 +16073;1;-0.37872487;4.35282;8.783259 +16073;0;-0.11933899;4.4611816;8.6792145 +16073;3;-0.15904236;0.1164093;0.045837402 +16074;4;14.442444;-2.6901245;-67.04712 +16074;6;-0.44505933;-0.4747523;0.01374911 +16074;7;0.89979416;-0.3828994;0.20918533;0.0;0.43614322;0.80276453;-0.4066301;0.0;-0.012228155 +16074;0;-0.12411499;4.4231873;8.7603 +16075;3;-0.15353394;0.12188721;0.04522705 +16075;12;0.21699667;0.0709146;0.21930118;0.9485729 +16077;0;-0.16233826;4.389923;8.774612 +16077;1;-0.38245982;4.3464065;8.786272 +16077;2;-0.29090324;-0.11730528;0.11313057; +16077;3;-0.15048218;0.12617493;0.04522705 +16077;5;999.60626 +16079;0;-0.171875;4.366165;8.803207 +16079;12;0.21659209;0.07106547;0.21949649;0.948609 +16079;3;-0.14497375;0.12861633;0.044006348 +16081;0;-0.138443;4.347168;8.827072 +16082;1;-0.38657427;4.3402786;8.789122 +16082;3;-0.14193726;0.12983704;0.04522705 +16084;4;14.743042;-1.940918;-66.29639 +16084;6;-0.46014565;-0.45756584;0.015682623 +16084;7;0.89280117;-0.39839646;0.2102054;0.0;0.4502312;0.803818;-0.38880396;0.0;-0.014068782 +16084;0;-0.143219;4.3329163;8.836609 +16084;3;-0.13703918;0.13105774;0.046447754 +16085;12;0.21619993;0.07123701;0.21969226;0.94864017 +16086;0;-0.16233826;4.3043976;8.827072 +16086;1;-0.3907857;4.334455;8.791808 +16087;3;-0.13153076;0.13044739;0.047058105 +16089;0;-0.18144226;4.275894;8.855682 +16089;12;0.21582201;0.07142042;0.21989146;0.9486664 +16089;3;-0.12605286;0.12922668;0.047668457 +16091;0;-0.19577026;4.2426453;8.898605 +16091;1;-0.39498585;4.3290005;8.794308 +16092;3;-0.12176514;0.12739563;0.04888916 +16094;4;14.593506;-0.14038086;-66.89758 +16094;6;-0.42756608;-0.44480276;0.021996558 +16094;7;0.9058333;-0.37430927;0.19839028;0.0;0.42316893;0.8214329;-0.38233006;0.0;-0.019854594 +16094;0;-0.19099426;4.209381;8.941528 +16094;3;-0.117492676;0.12556458;0.051330566 +16095;12;0.21546328;0.071606874;0.22009188;0.9486874 +16096;1;-0.39898673;4.323848;8.796661 +16096;2;-0.27442968;0.05810976;-0.08587456; +16097;0;-0.19099426;4.214142;8.970154 +16097;3;-0.11383057;0.12373352;0.05378723 +16098;0;-0.20054626;4.185623;8.998749 +16099;12;0.21512479;0.07178817;0.22029535;0.9487032 +16099;3;-0.11076355;0.12373352;0.058059692 +16101;1;-0.40280008;4.3189173;8.79891 +16103;0;-0.21966553;4.1523743;9.022598 +16103;3;-0.10588074;0.12251282;0.0605011 +16103;4;14.292908;-1.4907837;-68.096924 +16103;6;-0.434121;-0.43120724;0.024341343 +16103;7;0.9026925;-0.38211092;0.19783193;0.0;0.4297177;0.82419294;-0.36884758;0.0;-0.022110995 +16104;0;-0.21966553;4.190384;9.022598 +16104;3;-0.10221863;0.11885071;0.06355286 +16104;12;0.21480106;0.0719653;0.22050759;0.94871384 +16106;1;-0.40632632;4.3143945;8.800966 +16106;0;-0.19577026;4.185623;9.03215 +16107;3;-0.096725464;0.1164093;0.067840576 +16108;0;-0.21009827;4.1523743;9.075058 +16108;12;0.21450016;0.07213459;0.22073254;0.9487168 +16109;3;-0.09184265;0.11212158;0.070877075 +16110;1;-0.40944389;4.3102126;8.802871 +16111;0;-0.22921753;4.123871;9.11322 +16111;3;-0.08816528;0.109680176;0.07394409 +16114;4;13.392639;0.009155273;-66.596985 +16114;6;-0.40154314;-0.42482486;0.025146898 +16114;7;0.9161175;-0.35609788;0.18418208;0.0;0.40025482;0.8386403;-0.3694302;0.0;-0.0229092 +16114;0;-0.18621826;4.11911;9.13707 +16114;3;-0.085113525;0.10845947;0.07699585 +16114;12;0.21422182;0.072289586;0.22096932;0.94871277 +16117;13;75.905 +16117;1;-0.41218415;4.3063354;8.80464 +16117;0;-0.21009827;4.142868;9.16568 +16117;2;-0.25096732;0.17134142;-0.27918053; +16117;3;-0.08023071;0.10662842;0.08004761 +16118;12;0.21396539;0.07243393;0.22121589;0.94870216 +16121;1;-0.41465867;4.302901;8.806203 +16122;5;999.60626 +16123;0;-0.21487427;4.1523743;9.160919 +16124;12;0.21373555;0.07257206;0.22147352;0.9486832 +16124;3;-0.073516846;0.104782104;0.08370972 +16124;0;-0.19577026;4.1381226;9.156143 +16125;1;-0.41686967;4.30009;8.807471 +16125;3;-0.06678772;0.1035614;0.087387085 +16126;4;15.942383;-1.7913818;-65.69672 +16126;6;-0.51715374;-0.4243889;0.021378046 +16126;7;0.8646795;-0.4505494;0.22211397;0.0;0.5019461;0.79212093;-0.34726712;0.0;-0.019480124 +16127;0;-0.21009827;4.2046356;9.184769 +16127;3;-0.060684204;0.101745605;0.08798218 +16127;0;-0.18144226;4.1951294;9.156143 +16127;3;-0.05029297;0.1005249;0.09164429 +16128;12;0.21354064;0.07270552;0.22174107;0.9486544 +16128;0;-0.157547;4.2046356;9.170456 +16128;3;-0.041748047;0.097457886;0.0947113 +16130;0;-0.171875;4.1951294;9.175232 +16130;1;-0.41877002;4.298041;8.808382 +16131;3;-0.032577515;0.096847534;0.09593201 +16134;4;15.342712;-0.29144287;-66.596985 +16134;6;-0.4730087;-0.4287782;0.018730307 +16134;7;0.8864981;-0.41432628;0.2060459;0.0;0.46241868;0.80961573;-0.36151287;0.0;-0.017033739 +16134;0;-0.143219;4.185623;9.179993 +16134;3;-0.023422241;0.09501648;0.09654236 +16134;12;0.21338832;0.072836146;0.22201641;0.94861436 +16135;1;-0.42044845;4.296765;8.808925 +16135;0;-0.12411499;4.2188873;9.13707 +16135;3;-0.013046265;0.09257507;0.098983765 +16135;2;-0.29377007;0.13213682;-0.36945915; +16137;0;-0.100234985;4.256897;9.117996 +16137;12;0.21328312;0.07296688;0.22229615;0.94856244 +16137;3;-0.0014343262;0.09013367;0.10081482 +16140;1;-0.42179427;4.296457;8.8090105 +16140;0;-0.10978699;4.2283936;9.079834 +16140;3;0.009552002;0.08769226;0.10020447 +16142;4;13.693237;-1.6403198;-68.24646 +16142;6;-0.4391773;-0.4357974;0.012090709 +16142;7;0.9028655;-0.38545358;0.19041896;0.0;0.4297833;0.82050526;-0.37690496;0.0;-0.010960368 +16143;0;-0.06201172;4.2616425;9.075058 +16143;3;0.019332886;0.085861206;0.10205078 +16143;12;0.21323182;0.073091336;0.22256696;0.9485008 +16145;1;-0.42286026;4.2971177;8.808636 +16145;0;-0.042907715;4.2854004;9.056 +16145;3;0.02909851;0.08401489;0.10205078 +16147;0;-0.038131714;4.3043976;9.051224 +16147;12;0.21323551;0.07321703;0.22284482;0.94842505 +16147;3;0.04071045;0.08035278;0.10386658 +16156;1;-0.4236574;4.298698;8.807827 +16156;0;-0.01423645;4.299652;8.998749 +16156;3;0.052322388;0.08035278;0.102645874 +16156;4;14.892578;-1.7913818;-66.89758 +16157;6;-0.49740443;-0.4457344;0.0015820465 +16157;7;0.8784974;-0.43052617;0.2070976;0.0;0.47774485;0.7929578;-0.37812385;0.0;-0.0014274708 +16157;2;-0.43398216;0.02887106;-0.24271011; +16157;12;0.21329172;0.07334116;0.2231212;0.94833785 +16157;0;-0.009475708;4.3376617;8.984451 +16158;3;0.062088013;0.076690674;0.102645874 +16158;0;0.062194824;4.3851776;8.922455 +16158;3;0.07247925;0.073638916;0.10205078 +16158;1;-0.42423284;4.301319;8.8065195 +16158;12;0.21340768;0.07346771;0.22339147;0.9482384 +16158;5;999.60626 +16158;0;0.009643555;4.3946686;8.860458 +16158;3;0.08287048;0.07058716;0.10205078 +16160;0;0.09085083;4.404175;8.846146 +16160;1;-0.4245147;4.3048954;8.804759 +16160;3;0.09080505;0.069366455;0.10081482 +16161;4;14.892578;-1.4907837;-66.89758 +16161;6;-0.5015866;-0.4619161;-0.010269742 +16161;7;0.87897515;-0.4304278;0.2052672;0.0;0.476779;0.7849302;-0.3956848;0.0;0.009193314 +16161;0;0.08607483;4.456436;8.84137 +16161;3;0.10057068;0.06814575;0.10020447 +16162;12;0.21357766;0.073588066;0.22365262;0.94812924 +16164;1;-0.4246055;4.309297;8.802601 +16164;0;0.1290741;4.4516907;8.812759 +16164;3;0.10974121;0.065078735;0.099594116 +16167;0;0.1529541;4.4991913;8.7603 +16168;12;0.21379448;0.07370916;0.2239075;0.9480107 +16168;3;0.115859985;0.06385803;0.10081482 +16168;0;0.17684937;4.53244;8.73645 +16169;1;-0.42444354;4.3145576;8.800032 +16169;3;0.1219635;0.06324768;0.099594116 +16171;4;14.593506;-1.4907837;-66.14685 +16171;6;-0.50242585;-0.4784878;-0.020239938 +16171;7;0.88072485;-0.42747083;0.20394213;0.0;0.4732874;0.7779885;-0.41319835;0.0;0.01796561 +16171;0;0.1720581;4.5419617;8.688751 +16172;3;0.12684631;0.062026978;0.098983765 +16172;12;0.21405968;0.073830076;0.2241583;0.9478822 +16178;1;-0.42419526;4.320349;8.797201 +16178;0;0.18640137;4.5657043;8.660141 +16178;2;-0.60010815;-0.13843203;0.007976532; +16178;3;0.13111877;0.062026978;0.09776306 +16178;12;0.21435516;0.073952615;0.22440255;0.94774806 +16178;0;0.19593811;4.5989685;8.607666 +16178;3;0.1354065;0.05958557;0.098983765 +16178;1;-0.4238649;4.3266006;8.794145 +16178;0;0.19117737;4.6179657;8.607666 +16178;3;0.13722229;0.05836487;0.098983765 +16179;17;1;38dead6d7725;6507;1029;-68; +16180;17;1;38dead6d60ff;8238;3676;-64; +16180;17;1;1c1bb5efa29a;4710;4617;-74; +16181;17;1;1c1bb5ecd182;5168;2053;-58; +16181;4;14.892578;-0.74157715;-68.84766 +16181;6;-0.4775606;-0.49231252;-0.022206478 +16181;7;0.8927236;-0.4050313;0.19746956;0.0;0.45017964;0.78264767;-0.42988476;0.0;0.019567676 +16181;12;0.21467517;0.07407587;0.22463797;0.94761026 +16181;0;0.20072937;4.636963;8.583832 +16181;3;0.13722229;0.05958557;0.10020447 +16182;0;0.20550537;4.660721;8.555222 +16182;1;-0.42341518;4.333077;8.790977 +16183;3;0.1390686;0.05836487;0.102645874 +16185;12;0.21500745;0.07419677;0.22487882;0.9474683 +16186;0;0.22460938;4.65123;8.564758 +16186;3;0.1378479;0.057144165;0.10386658 +16187;1;-0.42280158;4.339646;8.787765 +16188;0;0.22940063;4.703491;8.531357 +16188;3;0.1378479;0.057144165;0.10571289 +16189;4;14.743042;-0.59051514;-65.84625 +16190;6;-0.48848116;-0.5037018;-0.026882637 +16190;7;0.888816;-0.41100082;0.20269269;0.0;0.45765907;0.7733738;-0.438681;0.0;0.023541026 +16190;0;0.20550537;4.750992;8.512299 +16191;12;0.21534854;0.07431486;0.22512697;0.9473227 +16191;3;0.1366272;0.055923462;0.10752869 +16192;0;0.20550537;4.7652435;8.517059 +16192;1;-0.42209366;4.3462663;8.784527 +16192;2;-0.6813936;-0.30600405;0.21150017; +16193;3;0.13233948;0.05531311;0.10997009 +16193;5;999.60626 +16195;0;0.19593811;4.7747498;8.512299 +16195;12;0.21568988;0.074429534;0.2253819;0.9471753 +16195;3;0.12989807;0.054092407;0.11364746 +16197;0;0.1816101;4.817505;8.502762 +16197;1;-0.42122135;4.352674;8.781396 +16197;3;0.12684631;0.049209595;0.115478516 +16202;4;13.693237;-1.3412476;-65.84625 +16202;6;-0.4514624;-0.5153865;-0.021355707 +16202;7;0.9041967;-0.37960988;0.19576712;0.0;0.4267121;0.78292686;-0.45270574;0.0;0.018580237 +16202;0;0.16729736;4.850769;8.521835 +16202;3;0.123184204;0.044921875;0.11669922 +16203;12;0.21602266;0.074535035;0.22564054;0.9470297 +16203;0;0.1625061;4.879257;8.49321 +16203;1;-0.4199705;4.358896;8.778369 +16203;3;0.11830139;0.043701172;0.12037659 +16204;0;0.1625061;4.9125214;8.550446 +16204;12;0.21634822;0.07462112;0.22591327;0.94688356 +16204;3;0.11340332;0.041870117;0.12159729 +16206;0;0.1481781;4.907776;8.559982 +16206;1;-0.4184496;4.364749;8.775533 +16207;3;0.10852051;0.03942871;0.123413086 +16208;4;15.492249;-2.8411865;-65.24658 +16208;6;-0.5080721;-0.5205208;-0.017308831 +16209;7;0.8777408;-0.42206264;0.226791;0.0;0.47890037;0.75797355;-0.4428662;0.0;0.0150157055 +16209;0;0.119506836;4.9267883;8.526611 +16209;3;0.10179138;0.0357666;0.12709045 +16209;12;0.21665582;0.07469199;0.226196;0.94674003 +16211;1;-0.41668597;4.3702044;8.772902 +16211;0;0.09562683;4.9790497;8.559982 +16211;2;-0.62425905;-0.4913869;0.2320919; +16212;3;0.09690857;0.0345459;0.12953186 +16213;0;0.10997009;5.007553;8.555222 +16214;12;0.21694553;0.07474619;0.22648698;0.9465999 +16214;3;0.09202576;0.032714844;0.13258362 +16216;0;0.066970825;5.0027924;8.559982 +16216;1;-0.41466;4.3752565;8.770478 +16216;3;0.08531189;0.029052734;0.13441467 +16218;4;15.792847;-2.241516;-65.54718 +16218;6;-0.48321933;-0.5288861;-0.007823551 +16218;7;0.8873107;-0.40114942;0.2275055;0.0;0.4611225;0.764517;-0.45042166;0.0;0.006754548 +16218;0;0.057418823;5.0122986;8.588608 +16219;3;0.079193115;0.025375366;0.13807678 +16219;12;0.21721345;0.074785225;0.22678985;0.94646287 +16221;0;0.014419556;5.0122986;8.602905 +16221;1;-0.41232783;4.3797812;8.768331 +16221;3;0.074920654;0.021102905;0.1423645 +16223;0;7.6293945E-5;5.0217896;8.621979 +16223;12;0.2174562;0.074803926;0.22710286;0.9463305 +16224;3;0.067596436;0.016830444;0.14602661 +16225;0;-0.009475708;5.050308;8.6362915 +16226;1;-0.40953815;4.3838534;8.766425 +16226;3;0.063323975;0.014389038;0.14968872 +16228;4;16.093445;-2.241516;-66.29639 +16228;6;-0.46998116;-0.52915096;0.001097196 +16228;7;0.89132535;-0.3909332;0.22958685;0.0;0.453363;0.7696411;-0.4495713;0.0;-9.471389E-4 +16228;0;-0.0046844482;5.06456;8.6362915 +16228;3;0.055984497;0.010726929;0.15090942 +16229;12;0.21768084;0.07479521;0.22743127;0.9462008 +16230;0;-0.042907715;5.040802;8.660141 +16230;1;-0.4063785;4.387449;8.764774 +16231;2;-0.4848117;-0.62120485;0.14542866; +16231;3;0.050491333;0.0052337646;0.15579224 +16231;5;999.6105 +16233;0;-0.057235718;5.0360413;8.6410675 +16234;12;0.21788135;0.074764945;0.22777154;0.94607514 +16234;3;0.046829224;0.0015716553;0.158844 +16235;0;-0.052444458;5.059799;8.6839905 +16235;1;-0.40273127;4.3905735;8.763377 +16236;3;0.041931152;-0.0039367676;0.16069031 +16237;4;14.743042;-2.241516;-64.34631 +16237;6;-0.4398597;-0.52756274;0.0060391384 +16237;7;0.9035003;-0.3679176;0.21982667;0.0;0.4285556;0.7817902;-0.4529284;0.0;-0.0052180053 +16238;0;-0.08111572;5.040802;8.698288 +16238;3;0.03643799;-0.009429932;0.16374207 +16238;12;0.2180621;0.074705064;0.2281235;0.9459534 +16240;0;-0.10978699;5.040802;8.731674 +16240;1;-0.39859176;4.393275;8.762213 +16241;3;0.03277588;-0.0149383545;0.16740417 +16242;0;-0.100234985;5.0265503;8.7603 +16243;12;0.21822508;0.07461624;0.22848581;0.9458354 +16243;3;0.028503418;-0.02104187;0.16862488 +16245;1;-0.39389595;4.3955607;8.761278 +16245;0;-0.10978699;5.0122986;8.750748 +16246;3;0.025436401;-0.027755737;0.17228699 +16247;4;15.492249;-2.090454;-66.44745 +16247;6;-0.43790755;-0.52013427;0.012545354 +16247;7;0.90292585;-0.36796644;0.22209384;0.0;0.4296586;0.7858722;-0.44474548;0.0;-0.010885977 +16247;0;-0.147995;5.0360413;8.7603 +16247;3;0.020553589;-0.035079956;0.17411804 +16248;12;0.21837376;0.074496135;0.22885415;0.9457215 +16249;0;-0.13366699;5.007553;8.78891 +16249;1;-0.38858083;4.397521;8.760532 +16250;2;-0.344676;-0.61841106;0.022667885; +16250;3;0.018722534;-0.043640137;0.1759491 +16252;0;-0.10499573;4.9552917;8.822296 +16252;12;0.2185095;0.074337296;0.22922881;0.9456119 +16253;3;0.017501831;-0.05218506;0.1771698 +16254;0;-0.100234985;4.969528;8.879532 +16255;3;0.015060425;-0.06135559;0.17840576 +16255;1;-0.38245755;4.399168;8.7599745 +16257;4;13.693237;-3.590393;-65.097046 +16257;6;-0.4236854;-0.5102031;0.011287839 +16257;7;0.9092557;-0.35876438;0.21105039;0.0;0.4161215;0.79548603;-0.44050527;0.0;-0.009850071 +16257;0;-0.06678772;4.9552917;8.893829 +16257;3;0.01322937;-0.06806946;0.17779541 +16258;12;0.21864088;0.07413313;0.22960134;0.94550717 +16259;0;-0.08590698;4.9267883;8.946289 +16259;3;0.013839722;-0.074798584;0.17962646 +16259;1;-0.37556922;4.400582;8.7595625 +16261;0;-0.07156372;4.9030304;8.965378 +16262;12;0.21876788;0.073887296;0.22997196;0.9454069 +16262;3;0.012619019;-0.0821228;0.17840576 +16264;0;-0.057235718;4.869766;8.984451 +16264;3;0.014450073;-0.08822632;0.17779541 +16264;1;-0.3680777;4.4018626;8.759237 +16275;17;1;38dead6d7725;7597;1937;-65; +16275;17;1;38dead6d60ff;6421;1067;-64; +16276;17;1;1c1bb5efa29a;10467;416;-68; +16276;17;1;1c1bb5ecd182;3776;2998;-58; +16277;4;14.743042;-2.241516;-67.04712 +16277;6;-0.44494;-0.49668857;0.006370444 +16277;7;0.9013117;-0.37839603;0.21084063;0.0;0.43313503;0.7935667;-0.42737097;0.0;-0.0056006354 +16277;0;-0.057235718;4.8222656;9.022598 +16277;3;0.01689148;-0.09434509;0.1759491 +16277;1;-0.36004227;4.4031444;8.758927 +16277;12;0.2188956;0.073607005;0.23033805;0.9453102 +16278;2;-0.3502778;-0.48707485;-0.19779205; +16278;12;0.21903326;0.073294275;0.23069337;0.9452158 +16278;0;0.019195557;4.8460083;9.056 +16278;3;0.019332886;-0.099227905;0.1747284 +16278;5;999.6105 +16278;0;0.03831482;4.817505;9.122772 +16278;1;-0.35159975;4.4045887;8.758544 +16278;3;0.024215698;-0.10411072;0.17167664 +16278;0;0.014419556;4.7985077;9.14183 +16278;3;0.027877808;-0.10595703;0.17045593 +16278;4;15.342712;-2.6901245;-66.596985 +16278;6;-0.4958424;-0.48336476;-0.0015773147 +16278;7;0.87991595;-0.4212664;0.21973301;0.0;0.4751274;0.7788015;-0.40953904;0.0;0.0013966109 +16278;0;0.04307556;4.7652435;9.16568 +16278;3;0.030944824;-0.11021423;0.16557312 +16278;12;0.2191852;0.07296244;0.2310332;0.9451234 +16281;1;-0.34298286;4.4062514;8.758049 +16281;0;0.04786682;4.7414856;9.199066 +16281;3;0.038269043;-0.11265564;0.16374207 +16281;0;0.10041809;4.7462463;9.251541 +16282;12;0.21935336;0.07261974;0.23135799;0.9450313 +16282;3;0.04559326;-0.115112305;0.16069031 +16285;0;0.119506836;4.7414856;9.265839 +16285;3;0.051712036;-0.115112305;0.15762329 +16285;1;-0.33417225;4.40837;8.757323 +16288;12;0.2195502;0.072272606;0.23166464;0.94493705 +16288;4;14.292908;-2.5405884;-66.14685 +16288;6;-0.4990919;-0.47294334;-0.012896859 +16288;7;0.88075626;-0.42609003;0.20667782;0.0;0.4734307;0.7816388;-0.40608382;0.0;0.011480871 +16288;0;0.071746826;4.7462463;9.318314 +16288;3;0.06147766;-0.11633301;0.15518188 +16289;0;0.10997009;4.7082367;9.323074 +16289;1;-0.32544386;4.4110336;8.75631 +16289;2;-0.45042685;-0.3314414;-0.477396; +16289;3;0.067596436;-0.1138916;0.15213013 +16291;0;0.10517883;4.7319946;9.375534 +16291;12;0.21977726;0.071931526;0.23195478;0.9448391 +16291;3;0.075531006;-0.110839844;0.14968872 +16295;1;-0.31693065;4.414296;8.754978 +16296;0;0.1577301;4.7462463;9.351685 +16296;3;0.08287048;-0.10899353;0.14480591 +16298;4;14.593506;-2.090454;-65.24658 +16298;6;-0.51780945;-0.46959484;-0.016864892 +16298;7;0.87255937;-0.44139743;0.20930476;0.0;0.48827654;0.774848;-0.40149292;0.0;0.0150385825 +16298;0;0.1625061;4.784256;9.399368 +16301;3;0.088974;-0.106552124;0.14173889 +16303;12;0.22003745;0.07160669;0.23223075;0.94473535 +16305;0;0.18640137;4.817505;9.375534 +16305;3;0.095687866;-0.10227966;0.1399231 +16305;0;0.22460938;4.874527;9.399368 +16305;1;-0.3086784;4.418213;8.753298 +16305;12;0.22033204;0.071301684;0.23249272;0.9446253 +16305;3;0.103012085;-0.10044861;0.13624573 +16305;0;0.26760864;4.9885406;9.389847 +16305;1;-0.30077174;4.4227786;8.751267 +16306;3;0.10852051;-0.09861755;0.13197327 +16306;4;14.892578;-3.1402588;-66.44745 +16306;6;-0.53705794;-0.48818108;-0.028492074 +16306;7;0.86570466;-0.45184776;0.21538062;0.0;0.49992216;0.75885004;-0.41740167;0.0;0.025160437 +16306;0;0.28671265;5.050308;9.4423065 +16306;3;0.11463928;-0.095565796;0.13014221 +16307;12;0.2206595;0.07102166;0.23274283;0.9445085 +16310;1;-0.29308695;4.428034;8.74887 +16310;2;-0.5656394;-0.45603657;-0.6586752; +16311;0;0.32492065;5.2023315;9.4470825 +16311;3;0.1207428;-0.08885193;0.12709045 +16311;5;999.6105 +16315;1;-0.28598619;4.433895;8.746136 +16316;0;0.34883118;5.297348;9.4852295 +16316;3;0.12501526;-0.0821228;0.12463379 +16316;0;0.37271118;5.378128;9.4852295 +16316;3;0.13050842;-0.06990051;0.12219238 +16316;4;13.093567;-2.6901245;-67.04712 +16316;6;-0.47671774;-0.5154706;-0.039273646 +16316;7;0.89670193;-0.39924073;0.19113475;0.0;0.44131464;0.77305406;-0.4556629;0.0;0.034161676 +16316;0;0.38226318;5.458893;9.54245 +16316;12;0.22102359;0.07076037;0.23297864;0.9443847 +16316;12;0.2214116;0.07053358;0.23319522;0.94425744 +16316;3;0.13296509;-0.055862427;0.11975098 +16318;0;0.4061432;5.5206604;9.580612 +16318;3;0.13296509;-0.038757324;0.11975098 +16318;1;-0.279941;4.4401765;8.743145 +16319;12;0.22180642;0.07036966;0.23341985;0.9441215 +16319;0;0.37271118;5.5729218;9.623535 +16320;3;0.13233948;-0.01737976;0.12037659 +16323;1;-0.27535352;4.4466295;8.74001 +16324;0;0.36791992;5.648926;9.633072 +16324;3;0.12684631;0.0070648193;0.12097168 +16324;4;14.593506;-2.8411865;-66.89758 +16324;6;-0.50409645;-0.5300487;-0.03817486 +16324;7;0.88429344;-0.4167382;0.2106051;0.0;0.46576926;0.7554621;-0.46079957;0.0;0.032928605 +16324;0;0.3201599;5.658432;9.661682 +16324;3;0.12011719;0.033935547;0.12219238 +16324;12;0.22219077;0.07028832;0.23366266;0.94397706 +16326;0;0.25328064;5.7059326;9.671219 +16326;1;-0.27289596;4.4526963;8.736998 +16326;2;-0.685477;-1.0633373;-0.857666; +16327;3;0.11035156;0.060195923;0.12219238 +16331;12;0.22252713;0.070319355;0.23393281;0.9438285 +16331;0;0.19593811;5.791458;9.666458 +16331;3;0.099975586;0.0834198;0.1252594 +16336;1;-0.272705;4.458132;8.734231 +16336;12;0.2227973;0.07046678;0.23423475;0.943679 +16336;1;-0.27432832;4.4624114;8.731996 +16336;0;0.10041809;5.8532104;9.609222 +16336;3;0.08590698;0.1035614;0.12709045 +16336;4;15.04364;-3.590393;-67.04712 +16336;6;-0.4606104;-0.54707724;-0.010449798 +16336;7;0.89814854;-0.37962025;0.2218501;0.0;0.43960136;0.7650407;-0.47059873;0.0;0.008924472 +16336;0;-0.009475708;5.848465;9.623535 +16336;3;0.06820679;0.120666504;0.12892151 +16336;0;-0.06678772;5.8437195;9.642624 +16336;3;0.04866028;0.13227844;0.12953186 +16338;0;-0.17666626;5.8437195;9.714157 +16338;12;0.22297738;0.07069619;0.23457108;0.9435357 +16339;3;0.025436401;0.13961792;0.12892151 +16340;0;-0.20054626;5.8199615;9.733231 +16341;1;-0.2770956;4.4649506;8.73061 +16341;3;-0.0014343262;0.14572144;0.12892151 +16343;4;13.693237;-1.3412476;-65.84625 +16343;6;-0.3599443;-0.5388155;0.020601371 +16343;7;0.9319948;-0.30231827;0.19997357;0.0;0.36204025;0.8033131;-0.4728795;0.0;-0.017681258 +16343;0;-0.22921753;5.829468;9.785706 +16343;3;-0.032577515;0.1499939;0.12709045 +16344;12;0.22304928;0.07096043;0.23492862;0.94340986 +16345;0;0.10997009;5.829468;9.766617 +16345;1;-0.2802262;4.4651995;8.730382 +16346;2;-0.3057335;-1.3547263;-0.97084713; +16346;3;-0.06556702;0.14816284;0.12159729 +16346;5;999.6105 +16347;0;-0.3438568;5.7201843;9.833389 +16348;12;0.22298995;0.07121503;0.23530054;0.9433121 +16348;3;-0.10038757;0.14450073;0.10142517 +16350;0;-0.7833557;5.639435;9.938309 +16350;1;-0.2842408;4.462468;8.731649 +16350;3;-0.13764954;0.1365509;0.09164429 +16353;4;14.892578;-2.090454;-66.14685 +16353;6;-0.2997056;-0.5148091;0.07865921 +16353;7;0.9410466;-0.25697204;0.21999232;0.0;0.3312908;0.83158785;-0.4457667;0.0;-0.06839335 +16354;0;-1.0508728;5.6299133;9.981247 +16354;3;-0.17308044;0.1341095;0.09164429 +16355;12;0.22275855;0.07147901;0.23563384;0.9432636 +16355;1;-0.28885496;4.4565587;8.734515 +16355;0;-1.1655273;5.5871735;10.000305 +16355;3;-0.2103424;0.12922668;0.099594116 +16357;0;-1.2228394;5.544403;10.019394 +16357;12;0.22235851;0.07170211;0.23592685;0.9432678 +16358;3;-0.24455261;0.11885071;0.10449219 +16359;0;-1.1225281;5.4351196;9.971695 +16359;1;-0.29285654;4.447547;8.738974 +16360;3;-0.27693176;0.0993042;0.106933594 +16362;4;14.892578;-3.440857;-65.24658 +16362;6;-0.25606844;-0.49639726;0.112099506 +16362;7;0.94782734;-0.22270939;0.22808713;0.0;0.3032291;0.8506328;-0.42950654;0.0;-0.09836325 +16362;0;-1.1177521;5.3258667;10.038467 +16362;3;-0.30685425;0.073638916;0.10508728 +16363;12;0.22179651;0.071847215;0.23625109;0.9433078 +16364;0;-1.1941986;5.154831;10.162476 +16364;1;-0.29518813;4.435567;8.744983 +16364;2;0.6466758;-1.0571628;-1.2563782; +16365;3;-0.33190918;0.045532227;0.09654236 +16367;0;-1.2610626;5.017044;10.243546 +16367;12;0.22109112;0.07186921;0.23657511;0.94339055 +16367;3;-0.35450745;0.021102905;0.08982849 +16369;0;-1.2085114;4.9315186;10.3246155 +16369;1;-0.29566017;4.42109;8.752295 +16369;3;-0.37283325;9.460449E-4;0.08248901 +16371;4;14.593506;-2.8411865;-66.44745 +16371;6;-0.25057772;-0.44296506;0.11652124 +16371;7;0.94984406;-0.22403142;0.21818852;0.0;0.29455647;0.87526834;-0.38359076;0.0;-0.1050371 +16372;0;-1.1177521;4.884018;10.386612 +16372;3;-0.389328;-0.020431519;0.075164795 +16373;12;0.22028734;0.07174121;0.23685065;0.9435193 +16374;0;-1.1368561;4.8650208;10.391388 +16374;1;-0.29450616;4.404872;8.760507 +16374;3;-0.4039917;-0.043640137;0.06843567 +16376;0;-1.1464081;4.7890015;10.415237 +16377;12;0.21941593;0.07150001;0.23707956;0.943683 +16377;3;-0.40948486;-0.06867981;0.058670044 +16379;0;-1.1511993;4.6797333;10.45816 +16379;1;-0.29173803;4.3872995;8.769413 +16379;3;-0.41316223;-0.09188843;0.050735474 +16381;4;15.342712;-2.241516;-66.596985 +16381;6;-0.30230144;-0.41850898;0.10963527 +16381;7;0.93568367;-0.2720238;0.22471997;0.0;0.33838063;0.8722633;-0.35306552;0.0;-0.09997274 +16382;0;-1.1798553;4.560959;10.491547 +16382;12;0.21849364;0.07114343;0.23725522;0.94387984 +16382;3;-0.4100952;-0.11450195;0.046447754 +16384;0;-1.1559601;4.4516907;10.510635 +16384;1;-0.2873659;4.3693666;8.778506 +16384;2;0.8262405;-0.39008665;-1.6326847; +16384;3;-0.39971924;-0.13771057;0.04095459 +16384;5;999.60925 +16386;0;-1.1273041;4.347168;10.48201 +16386;12;0.21757974;0.07068446;0.23737268;0.94409585 +16387;3;-0.3832245;-0.15542603;0.038513184 +16388;0;-1.1273041;4.2854004;10.472473 +16389;1;-0.28132546;4.3520985;8.787275 +16389;3;-0.36306763;-0.17436218;0.036071777 +16391;4;15.193176;-1.7913818;-65.69672 +16391;6;-0.3300549;-0.3864025;0.107231595 +16391;7;0.92751884;-0.30019972;0.22268583;0.0;0.36039016;0.87627494;-0.3197831;0.0;-0.09913525 +16391;0;-1.0747681;4.252136;10.434326 +16392;3;-0.33740234;-0.19207764;0.033615112 +16392;12;0.21673027;0.07014056;0.23744367;0.944314 +16393;0;-0.9792175;4.2616425;10.453384 +16394;1;-0.2737375;4.33652;8.795213 +16394;3;-0.30685425;-0.20796204;0.035461426 +16397;17;1;38dead6d7725;6664;2695;-67; +16397;17;1;38dead6d60ff;5066;1765;-69; +16398;17;1;1c1bb5efa29a;9030;1216;-69; +16398;17;1;1c1bb5ecd182;4183;2102;-62; +16398;0;-0.897995;4.2711487;10.42955 +16399;12;0.21599698;0.0695316;0.23748031;0.9445178 +16399;3;-0.27264404;-0.22140503;0.03729248 +16399;0;-0.92666626;4.209381;10.410461 +16399;1;-0.26466587;4.323492;8.801902 +16399;3;-0.2396698;-0.22567749;0.047668457 +16400;4;15.792847;-1.6403198;-66.596985 +16400;6;-0.39178687;-0.382874;0.08877901 +16400;7;0.90794057;-0.35419324;0.22403352;0.0;0.41095012;0.8573093;-0.3100658;0.0;-0.08224281 +16401;0;-0.91233826;4.123871;10.296005 +16401;3;-0.20362854;-0.2268982;0.0605011 +16401;12;0.21541612;0.068884425;0.23749402;0.94469434 +16403;0;-0.845459;4.019348;10.243546 +16403;1;-0.25472748;4.3132524;8.807218 +16403;2;0.6773114;0.10683489;-1.6045303; +16403;3;-0.16758728;-0.23240662;0.06599426 +16405;0;-0.7642517;4.0145874;10.296005 +16405;12;0.21499465;0.0682337;0.23753212;0.94482803 +16406;3;-0.12908936;-0.23667908;0.071502686 +16407;0;-0.7260437;3.9575806;10.296005 +16408;1;-0.24398735;4.3060303;8.811054 +16408;3;-0.09121704;-0.23667908;0.07394409 +16410;4;14.143372;-2.6901245;-65.84625 +16410;6;-0.41757184;-0.3661391;0.07040049 +16410;7;0.9015992;-0.37866142;0.20912807;0.0;0.4275572;0.85348827;-0.29791394;0.0;-0.06567982 +16410;0;-0.6161499;3.938568;10.305542 +16411;3;-0.05885315;-0.23117065;0.07394409 +16411;12;0.21474403;0.06758999;0.23758782;0.9449173 +16414;0;-0.5206146;3.962326;10.2816925 +16415;1;-0.23296401;4.3018746;8.813383 +16415;3;-0.025253296;-0.21957397;0.07394409 +16415;12;0.21466386;0.06697626;0.23764735;0.94496423 +16416;0;-0.41073608;3.952835;10.229233 +16416;3;0.006500244;-0.20368958;0.07699585 +16418;0;-0.37252808;3.9195862;10.200623 +16418;3;0.035827637;-0.18780518;0.08004761 +16418;1;-0.22265005;4.3005095;8.814315 +16420;4;13.693237;-1.6403198;-65.54718 +16420;6;-0.4718333;-0.36663216;0.03650391 +16420;7;0.8841967;-0.42431256;0.19533296;0.0;0.4658705;0.831538;-0.3025046;0.0;-0.034070287 +16420;12;0.2147211;0.06644356;0.23771265;0.94497246 +16421;0;-0.32476807;3.9100647;10.110016 +16421;3;0.063323975;-0.16947937;0.08370972 +16422;0;-0.3104248;3.872055;10.100464 +16423;3;0.087753296;-0.15176392;0.08616638 +16423;2;0.2385365;0.37771082;-1.4232483; +16423;1;-0.213522;4.301633;8.813993 +16423;5;999.60925 +16425;0;-0.26264954;3.8578186;10.086151 +16425;12;0.21489313;0.066012435;0.2378008;0.9449414 +16426;3;0.10913086;-0.13404846;0.08616638 +16427;0;-0.27697754;3.7913055;10.028931 +16428;1;-0.20576745;4.3047657;8.812648 +16428;3;0.12501526;-0.118774414;0.087387085 +16431;4;13.693237;-1.6403198;-65.54718 +16431;6;-0.49965894;-0.36130437;0.027610835 +16431;7;0.8727357;-0.44819212;0.19353625;0.0;0.4875095;0.8210756;-0.29693294;0.0;-0.0258249 +16431;0;-0.25309753;3.7817993;9.986008 +16431;3;0.14151001;-0.10595703;0.08920288 +16431;12;0.21515365;0.06568594;0.23790734;0.9448779 +16434;1;-0.1992343;4.3093343;8.810565 +16434;0;-0.22921753;3.7390442;9.928772 +16434;3;0.15310669;-0.0967865;0.08798218 +16435;12;0.21547535;0.06544453;0.23803204;0.94479007 +16435;0;-0.18144226;3.7152863;9.847702 +16435;3;0.16532898;-0.091293335;0.08494568 +16437;1;-0.19343439;4.3149815;8.80793 +16437;0;-0.16233826;3.6915283;9.785706 +16437;3;0.17510986;-0.08578491;0.08494568 +16439;4;13.842773;-0.74157715;-66.44745 +16439;6;-0.5088706;-0.36068484;0.016587805 +16439;7;0.8703232;-0.4558431;0.18639886;0.0;0.49223635;0.8171034;-0.30007562;0.0;-0.015519757 +16439;0;-0.16711426;3.6962738;9.776154 +16440;3;0.18365479;-0.082733154;0.083099365 +16440;12;0.21584544;0.06525834;0.23815843;0.9446866 +16441;0;-0.138443;3.7152863;9.718933 +16442;1;-0.18808016;4.321493;8.8048525 +16442;3;0.19160461;-0.0809021;0.08187866 +16443;2;-0.032682806;0.5922823;-1.1007557; +16443;0;-0.08111572;3.6582794;9.642624 +16444;3;0.19953918;-0.08151245;0.078826904 +16445;12;0.21625707;0.06510442;0.23828182;0.944572 +16446;0;-0.06678772;3.6440125;9.537689 +16446;1;-0.18283561;4.328679;8.801433 +16447;3;0.20503235;-0.08151245;0.07331848 +16449;4;13.842773;-0.74157715;-66.44745 +16449;6;-0.52573496;-0.3649416;0.007002391 +16449;7;0.86368;-0.46879938;0.1851595;0.0;0.5039981;0.80799335;-0.30517635;0.0;-0.006541192 +16449;0;-0.009475708;3.606018;9.451843 +16449;3;0.21176147;-0.082733154;0.06906128 +16450;12;0.21670413;0.064963676;0.23839338;0.944451 +16451;0;0.04307556;3.5585022;9.361221 +16451;1;-0.17759617;4.33644;8.797719 +16452;3;0.21786499;-0.08395386;0.06477356 +16454;0;0.07652283;3.5299988;9.246765 +16454;12;0.21718277;0.06482682;0.2384872;0.94432676 +16454;3;0.2239685;-0.08395386;0.05744934 +16457;1;-0.17244181;4.3445954;8.793797 +16461;0;0.124298096;3.5062408;9.19429 +16461;3;0.23130798;-0.082733154;0.051956177 +16461;4;14.743042;-2.241516;-65.84625 +16461;6;-0.6332685;-0.36429557;-0.013518229 +16461;7;0.8088742;-0.5529469;0.199931;0.0;0.5878462;0.7531975;-0.29517886;0.0;0.01263071 +16461;12;0.21768348;0.06469444;0.23855554;0.94420326 +16462;0;0.1577301;3.4967346;9.127518 +16462;3;0.23802185;-0.0796814;0.045837402 +16462;1;-0.1674886;4.353479;8.789498 +16462;2;-0.27775237;0.8123846;-0.54011345; +16462;0;0.20550537;3.5014954;8.979691 +16462;3;0.24534607;-0.07357788;0.039733887 +16462;5;999.60925 +16463;0;0.22940063;3.434967;8.898605 +16463;12;0.21822268;0.064577065;0.23859715;0.94407636 +16464;3;0.25268555;-0.06562805;0.031784058 +16467;1;-0.1632337;4.3628783;8.784916 +16467;0;0.26283264;3.4112244;8.803207 +16467;3;0.25941467;-0.05708313;0.026901245 +16468;4;14.743042;-2.241516;-65.84625 +16468;6;-0.65993446;-0.36953238;-0.029847596 +16468;7;0.7962886;-0.5716809;0.19775078;0.0;0.6042764;0.7367023;-0.30351216;0.0;0.027828641 +16468;0;0.28671265;3.358963;8.745987 +16468;3;0.2679596;-0.046081543;0.018966675 +16469;12;0.21878102;0.0644969;0.23861319;0.94394857 +16470;0;0.28671265;3.3779755;8.650604 +16470;1;-0.15994495;4.372871;8.780007 +16470;3;0.27833557;-0.034484863;0.0128479 +16473;0;0.3201599;3.368454;8.569519 +16474;12;0.21936311;0.064471304;0.23860818;0.9438164 +16474;3;0.28811646;-0.019821167;0.0067443848 +16475;0;0.3297119;3.358963;8.483673 +16475;3;0.29910278;-0.0057678223;6.4086914E-4 +16475;1;-0.15789808;4.3837314;8.774627 +16477;4;14.143372;-1.6403198;-66.596985 +16477;6;-0.6336749;-0.37673688;-0.03884474 +16477;7;0.8137085;-0.5505855;0.18637057;0.0;0.5801503;0.7493422;-0.31923616;0.0;0.036111474 +16478;0;0.2962799;3.3542175;8.435989 +16479;3;0.31010437;0.010101318;-0.0066986084 +16480;0;0.2962799;3.3304443;8.378754 +16480;12;0.21997544;0.064518675;0.23858336;0.94367695 +16480;1;-0.15739092;4.395489;8.768752 +16485;3;0.31988525;0.02720642;-0.012191772 +16485;0;0.25805664;3.358963;8.278595 +16485;3;0.33026123;0.041870117;-0.018920898 +16485;0;0.24848938;3.3874664;8.249985 +16485;1;-0.15856545;4.408181;8.762357 +16485;3;0.33943176;0.05897522;-0.024398804 +16486;12;0.22061847;0.0646541;0.238541;0.94352823 +16486;2;-0.5011093;1.0447102;0.13492203; +16487;4;14.143372;-1.6403198;-66.596985 +16487;6;-0.59998983;-0.38945386;-0.030110875 +16487;7;0.83142143;-0.52235234;0.18943691;0.0;0.5549438;0.763537;-0.33022526;0.0;0.027851863 +16487;0;0.24372864;3.3732147;8.221359 +16488;3;0.3491974;0.07546997;-0.032333374 +16488;12;0.22129071;0.064883634;0.23848164;0.94337016 +16489;0;0.21505737;3.368454;8.178452 +16489;1;-0.16141261;4.4216733;8.755505 +16489;3;0.3559265;0.09379578;-0.036010742 +16492;0;0.17684937;3.458725;8.102127 +16492;12;0.22198842;0.065209605;0.23840834;0.94320214 +16493;3;0.36264038;0.10845947;-0.037231445 +16495;0;0.1434021;3.4824982;8.049683 +16495;1;-0.16595367;4.4359455;8.748198 +16495;3;0.36935425;0.12310791;-0.036010742 +16496;4;14.292908;-2.5405884;-66.14685 +16497;6;-0.5758849;-0.40825394;-0.017812744 +16497;7;0.8424286;-0.49982136;0.20122795;0.0;0.53856;0.7697817;-0.34262142;0.0;0.016347947 +16497;0;0.071746826;3.5537567;7.987671 +16497;3;0.37364197;0.1347351;-0.034179688 +16497;12;0.22270694;0.06563378;0.23832995;0.94302315 +16499;0;0.0048675537;3.5537567;7.9638214 +16499;2;-0.39809346;1.0337768;0.5974674; +16499;1;-0.17180488;4.4508557;8.740508 +16499;3;0.37852478;0.14450073;-0.032333374 +16500;5;999.60925 +16501;0;-0.08111572;3.6250305;7.9304504 +16501;12;0.22344053;0.06613882;0.23826492;0.94283086 +16502;3;0.37974548;0.15184021;-0.028671265 +16503;0;-0.147995;3.6202698;7.844589 +16503;1;-0.17859122;4.4661903;8.732546 +16504;3;0.38035583;0.15731812;-0.024398804 +16506;4;14.442444;-2.6901245;-65.54718 +16506;6;-0.48378724;-0.4323075;0.018863631 +16506;7;0.88140637;-0.4223433;0.21153949;0.0;0.47204816;0.80379885;-0.36204675;0.0;-0.017127188 +16506;0;-0.22442627;3.6915283;7.806427 +16506;3;0.37730408;0.1646576;-0.018920898 +16507;12;0.22418535;0.06670156;0.23821521;0.94262695 +16508;0;-0.26264954;3.7580414;7.7492065 +16508;1;-0.18591452;4.4816756;8.724456 +16509;3;0.37242126;0.16894531;-0.010971069 +16510;0;-0.3534088;3.8388062;7.76828 +16511;12;0.22493152;0.06729996;0.23819035;0.9424128 +16511;3;0.3675232;0.17260742;-0.003036499 +16513;0;-0.43463135;3.872055;7.7921295 +16513;1;-0.1935486;4.496928;8.716437 +16515;3;0.35897827;0.17749023;0.006134033 +16515;4;14.292908;-3.440857;-66.44745 +16515;6;-0.37620983;-0.4605609;0.05572051 +16515;7;0.91952646;-0.32911637;0.21483368;0.0;0.38984895;0.8331543;-0.39226487;0.0;-0.049888797 +16516;17;1;38dead6d7725;6888;2252;-65; +16517;17;1;38dead6d60ff;4377;3352;-69; +16518;17;1;1c1bb5efa29a;3087;3406;-68; +16518;17;1;1c1bb5ecd182;3155;2531;-60; +16518;0;-0.49671936;3.9100647;7.787369 +16518;3;0.34614563;0.17871094;0.012237549 +16518;12;0.22565563;0.06791953;0.23820215;0.94219226 +16518;0;-0.54927063;3.9433289;7.777817 +16518;1;-0.20136644;4.511615;8.708668 +16519;2;0.062088817;0.75460386;0.8869915; +16519;3;0.32659912;0.17993164;0.020187378 +16520;0;-0.5827179;4.009842;7.7253723 +16520;12;0.22634713;0.06854913;0.23825537;0.9419673 +16521;3;0.3070526;0.18115234;0.028121948 +16522;0;-0.6018219;4.0811005;7.7253723 +16523;1;-0.20900553;4.524882;8.701602 +16523;3;0.2826233;0.17932129;0.036071777 +16525;4;13.693237;-3.2913208;-66.596985 +16525;6;-0.28895906;-0.48476046;0.077744976 +16525;7;0.9453324;-0.252124;0.20683342;0.0;0.3187858;0.84810424;-0.42319596;0.0;-0.06871844 +16525;0;-0.64482117;4.11911;7.682434 +16525;3;0.25756836;0.17871094;0.04522705 +16526;12;0.2269623;0.06915702;0.23834398;0.94175243 +16528;0;-0.6687012;4.1713715;7.730133 +16528;1;-0.21630211;4.536324;8.695463 +16528;3;0.22947693;0.17504883;0.054397583 +16530;0;-0.7260437;4.199875;7.7492065 +16530;12;0.22747743;0.06973209;0.23847872;0.94155157 +16530;3;0.20198059;0.17260742;0.06355286 +16533;0;-0.75468445;4.2473907;7.7539673 +16533;1;-0.22308668;4.545567;8.690464 +16534;3;0.1720581;0.1695404;0.071502686 +16534;4;13.093567;-1.940918;-66.596985 +16534;6;-0.21161704;-0.49914575;0.09702323 +16534;7;0.9633548;-0.18441439;0.19477886;0.0;0.25438872;0.858406;-0.44544974;0.0;-0.085052006 +16535;0;-0.7833557;4.252136;7.7587433 +16535;3;0.14089966;0.16526794;0.08187866 +16535;12;0.22787753;0.07025963;0.23865965;0.94136983 +16539;1;-0.22930281;4.552401;8.686724 +16539;0;-0.831131;4.280655;7.734909 +16540;3;0.107910156;0.15855408;0.090423584 +16540;2;0.41637287;0.40715933;0.9395075; +16540;5;999.6033 +16540;0;-0.883667;4.323395;7.734909 +16540;3;0.07736206;0.14816284;0.10020447 +16540;12;0.22815256;0.070735976;0.23888515;0.9412103 +16542;0;-0.93621826;4.380417;7.76828 +16542;1;-0.2346652;4.5566893;8.684333 +16542;3;0.046203613;0.1365509;0.1081543 +16544;4;14.143372;-3.2913208;-66.29639 +16544;6;-0.20019688;-0.5103619;0.119939625 +16544;7;0.9613635;-0.17352082;0.21370748;0.0;0.25471556;0.8551404;-0.45150304;0.0;-0.10440471 +16544;0;-0.92666626;4.413666;7.8255157 +16545;3;0.013839722;0.12556458;0.11425781 +16545;12;0.22829732;0.0711384;0.2391516;0.9410772 +16546;0;-0.9457855;4.432678;7.897049 +16547;1;-0.23876356;4.558401;8.683322 +16547;3;-0.016708374;0.11456299;0.12219238 +16549;0;-0.9457855;4.4754486;7.9495087 +16549;12;0.22831525;0.071446106;0.23945527;0.9409723 +16549;3;-0.04724121;0.10662842;0.13075256 +16551;0;-0.9696655;4.4991913;8.006744 +16551;1;-0.24168374;4.557551;8.683687 +16552;3;-0.07839966;0.096847534;0.13685608 +16553;4;14.892578;-2.090454;-65.69672 +16553;6;-0.21981466;-0.5088495;0.120519176 +16554;7;0.9560873;-0.19042319;0.22279158;0.0;0.27362937;0.852292;-0.44578615;0.0;-0.10499547 +16554;0;-0.99354553;4.4991913;8.054443 +16554;3;-0.10772705;0.088912964;0.1429596 +16555;12;0.2282065;0.07166495;0.2397924;0.9408961 +16556;0;-0.9792175;4.5086975;8.149826 +16557;2;0.65290964;0.13688803;0.74775505; +16557;1;-0.24359664;4.55412;8.685434 +16559;9;2AEC2AEBC4E1;-55;-2147483648 +16560;12;0.22796941;0.071799524;0.24016109;0.9408494 +16560;3;-0.13703918;0.08157349;0.15029907 +16560;0;-0.98876953;4.52771;8.202286 +16560;3;-0.16758728;0.07485962;0.15640259 +16561;1;-0.24462765;4.548184;8.688515 +16562;0;-1.0365448;4.513443;8.2642975 +16562;3;-0.1932373;0.06692505;0.16069031 +16566;12;0.22760817;0.07185268;0.24052693;0.94083923 +16566;4;12.643433;-3.440857;-67.196655 +16566;6;-0.14088796;-0.4965968;0.12477287 +16566;7;0.97406864;-0.12346057;0.18959846;0.0;0.19803536;0.87049747;-0.45057288;0.0;-0.109417014 +16566;0;-1.0317688;4.52771;8.335815 +16566;3;-0.22073364;0.05958557;0.16557312 +16566;0;-1.0174255;4.52771;8.445526 +16567;1;-0.24482468;4.539906;8.692838 +16567;3;-0.24699402;0.051651;0.16923523 +16571;12;0.22712734;0.07184023;0.24095173;0.9408478 +16571;0;-1.0174255;4.52771;8.507523 +16571;3;-0.27326965;0.046157837;0.17350769 +16572;1;-0.24421084;4.5293136;8.698379 +16573;0;-1.0030975;4.5086975;8.6410675 +16573;3;-0.29953003;0.041870117;0.1759491 +16576;12;0.22653005;0.07175585;0.24139737;0.940884 +16576;4;14.292908;-3.1402588;-65.69672 +16576;6;-0.23223627;-0.4781763;0.11556765 +16576;7;0.9544505;-0.20433922;0.2174165;0.0;0.28025603;0.864001;-0.4182811;0.0;-0.102376826 +16577;1;-0.24302809;4.516426;8.70511 +16577;0;-0.99354553;4.4991913;8.731674 +16577;3;-0.32458496;0.037597656;0.17901611 +16577;2;0.7150067;0.026766777;0.19531631; +16577;0;-0.9648895;4.480179;8.836609 +16577;3;-0.35084534;0.033935547;0.18206787 +16579;12;0.22581545;0.071611784;0.24186194;0.94094735 +16579;5;999.6033 +16579;0;-0.95054626;4.437439;8.931976 +16579;3;-0.3746643;0.032104492;0.18206787 +16580;1;-0.24140581;4.501159;8.713059 +16581;0;-0.9457855;4.3946686;9.013062 +16581;3;-0.39788818;0.030273438;0.18023682 +16583;4;14.892578;-4.1915894;-65.69672 +16583;6;-0.30333853;-0.4515161;0.10455236 +16583;7;0.93553126;-0.26877344;0.2292209;0.0;0.34053412;0.8587065;-0.38296175;0.0;-0.093903504 +16583;0;-0.859787;4.3614197;9.146606 +16583;3;-0.42170715;0.030273438;0.17655945 +16584;12;0.22497825;0.07141227;0.24234575;0.94103867 +16585;0;-0.840683;4.3519135;9.21814 +16585;1;-0.23963192;4.4838557;8.722025 +16585;3;-0.44369507;0.027832031;0.17167664 +16587;0;-0.7929077;4.299652;9.265839 +16587;12;0.22403626;0.07117518;0.24282707;0.9411573 +16588;3;-0.46325684;0.024154663;0.16618347 +16590;0;-0.7642517;4.2711487;9.356461 +16590;3;-0.48217773;0.017440796;0.1600647 +16590;1;-0.23778224;4.464462;8.732018 +16592;4;14.892578;-3.1402588;-65.69672 +16592;6;-0.366172;-0.42698482;0.08150078 +16592;7;0.91853434;-0.32589817;0.22379732;0.0;0.3883347;0.8498755;-0.35624146;0.0;-0.074101426 +16592;0;-0.7021332;4.209381;9.427994 +16593;3;-0.50050354;0.008880615;0.15274048 +16593;12;0.22298412;0.07089854;0.24329671;0.94130665 +16596;0;-0.6639252;4.133362;9.547226 +16596;1;-0.23556402;4.443388;8.742822 +16596;2;0.53253734;0.16160107;-0.5100393; +16597;3;-0.51760864;-0.0014953613;0.14419556 +16597;0;-0.63049316;4.0716095;9.609222 +16597;12;0.2218488;0.07057069;0.24373639;0.94148576 +16602;1;-0.2327705;4.4207463;8.754366 +16602;3;-0.52983093;-0.013092041;0.13563538 +16602;0;-0.6113739;4.043091;9.680771 +16602;3;-0.5402069;-0.02470398;0.1277008 +16602;4;13.693237;-2.241516;-65.097046 +16602;6;-0.39010215;-0.39491418;0.06306967 +16602;7;0.91381;-0.35101238;0.20430754;0.0;0.40195367;0.85368264;-0.33114848;0.0;-0.058176592 +16602;0;-0.5636139;4.043091;9.733231 +16603;3;-0.5475464;-0.038146973;0.11669922 +16603;12;0.22064593;0.070180036;0.2441291;0.9416959 +16604;0;-0.5110626;3.9908295;9.78093 +16604;1;-0.22924411;4.3971477;8.766336 +16604;3;-0.5487671;-0.054031372;0.10630798 +16609;0;-0.48718262;3.9243164;9.776154 +16609;12;0.21940456;0.06972703;0.24447884;0.94192886 +16609;3;-0.54693604;-0.07357788;0.0934906 +16609;0;-0.4298401;3.8815765;9.80954 +16609;1;-0.2247434;4.37322;8.778414 +16609;3;-0.5432739;-0.09617615;0.079437256 +16612;4;14.143372;-2.9907227;-65.54718 +16612;6;-0.48206738;-0.37646085;0.043790564 +16612;7;0.8777278;-0.43114594;0.20906267;0.0;0.47742712;0.8239905;-0.30512798;0.0;-0.040710967 +16612;12;0.21816419;0.06920423;0.24476284;0.9421817 +16612;0;-0.41552734;3.7817993;9.80954 +16612;3;-0.53593445;-0.12060547;0.067840576 +16613;0;-0.36297607;3.7152863;9.847702 +16614;1;-0.21884322;4.3494306;8.790374 +16614;2;0.23659307;0.4458208;-0.98061943; +16615;3;-0.5279999;-0.14627075;0.055618286 +16615;5;999.6033 +16616;0;-0.26264954;3.6582794;9.895386 +16616;12;0.21695767;0.0685907;0.24496439;0.9424528 +16616;3;-0.5169983;-0.17314148;0.0446167 +16618;0;-0.22921753;3.591751;9.923996 +16618;1;-0.21109638;4.3261685;8.802034 +16619;3;-0.50357056;-0.19696045;0.034240723 +16621;4;13.842773;-2.090454;-66.44745 +16621;6;-0.5353575;-0.3471741;0.023093194 +16621;7;0.8558489;-0.47971195;0.19338797;0.0;0.51676977;0.8087717;-0.28077942;0.0;-0.021713477 +16621;0;-0.18144226;3.5537567;9.990768 +16621;3;-0.48706055;-0.21835327;0.024459839 +16622;12;0.21581098;0.06787453;0.24508059;0.9427377 +16623;0;-0.12890625;3.5062408;10.005081 +16623;1;-0.20164812;4.3038974;8.813167 +16624;3;-0.46813965;-0.23667908;0.013458252 +16625;0;-0.07156372;3.515747;10.038467 +16626;3;-0.44430542;-0.25195312;0.006134033 +16626;12;0.214748;0.067070924;0.24512593;0.94302607 +16628;0;-0.023803711;3.4729767;10.038467 +16628;1;-0.19092251;4.2832074;8.82348 +16628;3;-0.41741943;-0.2635498;-0.0018157959 +16630;4;14.143372;-2.241516;-65.84625 +16630;6;-0.62415785;-0.3330764;0.002371245 +16630;7;0.8110002;-0.55229527;0.19299893;0.0;0.5850415;0.76685876;-0.2639204;0.0;-0.0022409216 +16631;0;0.014419556;3.5205078;10.095703 +16631;3;-0.38627625;-0.26843262;-0.004852295 +16632;12;0.21379234;0.066212244;0.24510273;0.9433099 +16633;9;52ADB5BC186F;-83;-2147483648 +16635;0;-0.028564453;3.4967346;10.048004 +16635;1;-0.1795024;4.2648096;8.832626 +16635;2;-0.1118321;0.7561288;-1.1878662; +16635;3;-0.3526764;-0.2647705;-0.0018157959 +16635;0;0.0048675537;3.4444885;9.933533 +16636;12;0.21297087;0.06534472;0.24502945;0.9435752 +16636;3;-0.31663513;-0.2598877;0.0018615723 +16637;0;0.04786682;3.434967;9.876312 +16638;1;-0.16813025;4.249251;8.840345 +16638;3;-0.2751007;-0.2562256;0.003692627 +16640;4;13.542175;-1.7913818;-65.24658 +16640;6;-0.6125856;-0.33470863;-0.004846591 +16640;7;0.81906986;-0.54307663;0.18491152;0.0;0.57367545;0.7727609;-0.2715455;0.0;0.0045776167 +16641;0;0.114746094;3.4207153;9.928772 +16641;3;-0.23355103;-0.24888611;0.0018615723 +16641;12;0.2123012;0.0645177;0.24495341;0.9438028 +16642;0;0.1481781;3.4017181;9.928772 +16643;1;-0.15698676;4.2370644;8.846397 +16643;3;-0.1920166;-0.23606873;-0.0018157959 +16645;0;0.19593811;3.4207153;9.895386 +16645;3;-0.15109253;-0.21774292;-0.004852295 +16646;12;0.2118083;0.063754074;0.24487954;0.94398445 +16647;1;-0.14692777;4.22847;8.850681 +16647;0;0.27236938;3.5014954;9.823853 +16648;3;-0.108947754;-0.19451904;-0.009140015 +16649;4;12.942505;-1.1901855;-65.69672 +16649;6;-0.6171086;-0.34226823;-0.02771821 +16649;7;0.82062453;-0.5451136;0.17154163;0.0;0.57087106;0.7682494;-0.28965312;0.0;0.026107093 +16650;0;0.29148865;3.5299988;9.766617 +16650;3;-0.068618774;-0.16703796;-0.014022827 +16651;12;0.21149677;0.06309636;0.24479301;0.94412094 +16652;0;0.3297119;3.5585022;9.752304 +16652;1;-0.1388974;4.2235155;8.853177 +16652;2;-0.36171788;0.79294586;-1.0269451; +16653;3;-0.029525757;-0.13526917;-0.019515991 +16653;5;999.6033 +16655;0;0.35359192;3.615509;9.70462 +16655;12;0.21135059;0.062594056;0.24469899;0.9442115 +16655;9;2AEC2AEBC4E1;-57;-2147483648 +16656;3;0.009552002;-0.10044861;-0.0231781 +16657;0;0.33926392;3.6440125;9.661682 +16657;3;0.046829224;-0.060134888;-0.028076172 +16657;1;-0.13369054;4.2220244;8.853968 +16659;4;14.593506;-1.4907837;-66.14685 +16659;6;-0.660946;-0.3604608;-0.03509995 +16659;7;0.79652363;-0.5744136;0.18867713;0.0;0.603715;0.7386799;-0.29980054;0.0;0.03283749 +16659;0;0.33926392;3.70578;9.571075 +16660;3;0.08164978;-0.020431519;-0.03111267 +16660;12;0.21135172;0.06228753;0.24460164;0.9442568 +16661;0;0.31536865;3.7628021;9.40892 +16662;1;-0.13195555;4.2238903;8.853104 +16662;3;0.11340332;0.019882202;-0.03479004 +16664;0;0.27236938;3.8150635;9.251541 +16664;12;0.2114872;0.062210273;0.24451253;0.9442545 +16664;3;0.14334106;0.057144165;-0.0390625 +16666;0;0.25805664;3.8483124;9.146606 +16666;1;-0.13379014;4.228689;8.850785 +16667;3;0.16716003;0.089523315;-0.042114258 +16669;4;13.392639;-1.6403198;-66.29639 +16669;6;-0.56564116;-0.3981118;-0.028205894 +16669;7;0.8497691;-0.4940425;0.18388692;0.0;0.5265136;0.7782206;-0.34228066;0.0;0.025996594 +16669;0;0.22940063;3.9243164;9.003525 +16669;3;0.18792725;0.117004395;-0.045166016 +16670;12;0.21173032;0.06235885;0.24443656;0.94421005 +16671;0;0.21028137;3.9955902;8.84137 +16671;1;-0.13855574;4.235839;8.847293 +16672;2;-0.4764681;0.48170614;-0.4940071; +16672;3;0.204422;0.14143372;-0.04699707 +16674;0;0.1625061;4.0478516;8.731674 +16674;12;0.21205983;0.06269353;0.2443692;0.94413126 +16674;3;0.21664429;0.16221619;-0.048217773 +16676;0;0.1338501;4.1143646;8.598129 +16676;1;-0.14554526;4.2446413;8.84296 +16676;3;0.22457886;0.17687988;-0.04762268 +16678;4;13.693237;-1.3412476;-67.04712 +16679;6;-0.4899003;-0.4462681;-0.015566094 +16679;7;0.885434;-0.42445537;0.18932591;0.0;0.46455306;0.79596317;-0.38811502;0.0;0.0140410485 +16679;0;0.124298096;4.1713715;8.497986 +16679;12;0.21244752;0.063165605;0.24430777;0.94402856 +16679;3;0.22764587;0.18725586;-0.04699707 +16681;0;0.066970825;4.2473907;8.35968 +16681;1;-0.15386946;4.2543664;8.838145 +16681;3;0.22764587;0.19215393;-0.048217773 +16683;0;0.014419556;4.256897;8.273819 +16684;3;0.2227478;0.19337463;-0.050064087 +16684;12;0.21286386;0.063724816;0.24426118;0.9439092 +16685;0;0.028747559;4.299652;8.197525 +16686;1;-0.16277589;4.264223;8.833234 +16686;3;0.21359253;0.19093323;-0.050064087 +16688;4;13.842773;-3.1402588;-63.746643 +16688;6;-0.48324606;-0.48305717;-0.003506844 +16688;7;0.88624275;-0.41148958;0.21272089;0.0;0.4632107;0.7841725;-0.4129277;0.0;0.0031055808 +16688;0;0.0048675537;4.3519135;8.068741 +16688;3;0.20198059;0.1829834;-0.05189514 +16689;12;0.21328068;0.06431235;0.24421515;0.9437872 +16690;0;-0.0046844482;4.3994293;8.040131 +16690;1;-0.17149183;4.273549;8.828561 +16691;2;-0.28653157;0.071446896;0.46497154; +16691;3;0.18548584;0.17198181;-0.054336548 +16692;5;999.6004 +16693;0;-0.038131714;4.4184265;7.944748 +16694;12;0.21366951;0.064882174;0.24416356;0.9436736 +16694;3;0.16716003;0.15916443;-0.057388306 +16695;0;-0.023803711;4.4897003;7.887512 +16695;1;-0.17943695;4.2817035;8.8244505 +16695;3;0.14639282;0.14450073;-0.059829712 +16697;4;13.693237;-2.9907227;-67.04712 +16697;6;-0.4153802;-0.51747483;0.003017889 +16697;7;0.9143564;-0.3507031;0.20238534;0.0;0.40490198;0.7951679;-0.45140058;0.0;-0.0026227564 +16698;0;-0.07156372;4.5181885;7.8684235 +16698;3;0.12440491;0.13105774;-0.064712524 +16698;12;0.2140077;0.065391146;0.24409178;0.9435804 +16700;0;-0.09068298;4.546707;7.815979 +16700;1;-0.186404;4.288248;8.821128 +16700;3;0.10179138;0.11517334;-0.06838989 +16703;0;-0.11456299;4.5799713;7.7587433 +16704;12;0.21427377;0.06582244;0.24399865;0.9435141 +16704;3;0.07980347;0.1023407;-0.0708313 +16705;0;-0.095443726;4.603714;7.7635193 +16705;1;-0.19232374;4.293015;8.818682 +16705;3;0.0572052;0.08769226;-0.07510376 +16707;4;13.093567;-2.241516;-65.54718 +16707;6;-0.3710217;-0.5352183;0.012293255 +16707;7;0.9296138;-0.31186533;0.19636257;0.0;0.36838353;0.80162996;-0.47083223;0.0;-0.010573866 +16707;0;-0.11933899;4.6084595;7.7396545 +16707;3;0.03338623;0.07546997;-0.07998657 +16708;12;0.21445826;0.06616677;0.24388087;0.9434786 +16709;0;-0.12411499;4.5752106;7.6633606 +16710;1;-0.19727823;4.295886;8.817174 +16710;2;-0.1613411;-0.21471548;0.99505234; +16710;3;0.010772705;0.062026978;-0.085494995 +16712;0;-0.157547;4.560959;7.644287 +16712;12;0.21455497;0.06642965;0.24373783;0.94347507 +16713;3;-0.0105896;0.048599243;-0.0867157 +16714;0;-0.18144226;4.5086975;7.5918274 +16715;1;-0.20136887;4.296826;8.816624 +16715;3;-0.03074646;0.03149414;-0.0867157 +16717;4;14.892578;-2.8411865;-66.89758 +16717;6;-0.394953;-0.5357882;0.023895135 +16717;7;0.91805786;-0.3308464;0.2184271;0.0;0.39591372;0.7936694;-0.46188876;0.0;-0.020544672 +16717;0;-0.20054626;4.52771;7.596588 +16717;3;-0.049072266;0.016220093;-0.08732605 +16718;12;0.21456176;0.066614196;0.24356772;0.9435045 +16719;0;-0.19577026;4.5752106;7.687195 +16719;1;-0.20418885;4.2960773;8.816923 +16719;3;-0.06678772;-8.69751E-4;-0.08854675 +16721;0;-0.21966553;4.560959;7.7015076 +16722;12;0.21449548;0.06670564;0.24338627;0.9435598 +16722;3;-0.085113525;-0.013092041;-0.089157104 +16724;1;-0.20578797;4.293778;8.8180065 +16724;0;-0.24354553;4.594223;7.7492065 +16724;3;-0.10038757;-0.022872925;-0.0879364 +16726;4;14.442444;-2.241516;-65.84625 +16726;6;-0.37032455;-0.53493917;0.031418107 +16726;7;0.92595416;-0.31135792;0.21369408;0.0;0.37666774;0.80197984;-0.46362665;0.0;-0.027024537 +16727;0;-0.21966553;4.6084595;7.787369 +16727;3;-0.11505127;-0.031417847;-0.08732605 +16727;12;0.21436466;0.0667086;0.24319032;0.94364 +16729;0;-0.27697754;4.560959;7.8255157 +16729;1;-0.20653011;4.2900944;8.819781 +16729;2;-0.043241918;-0.24226475;1.1060171; +16729;3;-0.12727356;-0.03753662;-0.08610535 +16730;5;999.6004 +16731;0;-0.29130554;4.546707;7.8731995 +16732;12;0.21416761;0.06664889;0.24299128;0.9437401 +16732;3;-0.13825989;-0.043029785;-0.08242798 +16733;0;-0.26742554;4.5181885;7.9208984 +16734;1;-0.20668977;4.2852397;8.822138 +16734;3;-0.14682007;-0.04852295;-0.07998657 +16736;4;14.892578;-1.7913818;-65.69672 +16736;6;-0.38554665;-0.51813555;0.0337492 +16736;7;0.9197806;-0.32670483;0.21741053;0.0;0.39133626;0.8049721;-0.44595474;0.0;-0.029313853 +16736;0;-0.30085754;4.4897003;7.939972 +16736;3;-0.15536499;-0.050964355;-0.07571411 +16737;12;0.21391684;0.06654135;0.24279666;0.9438547 +16738;0;-0.2960968;4.503952;7.992447 +16739;1;-0.20633866;4.2794943;8.824934 +16739;3;-0.16329956;-0.05340576;-0.072052 +16741;0;-0.3343048;4.456436;8.049683 +16741;12;0.21362445;0.06639852;0.24261403;0.9439779 +16744;1;-0.20570673;4.2731066;8.828044 +16744;3;-0.16697693;-0.054641724;-0.06838989 +16744;0;-0.3438568;4.480179;8.102127 +16744;3;-0.17124939;-0.05340576;-0.064712524 +16745;4;13.542175;-0.14038086;-65.69672 +16745;6;-0.3249209;-0.5047345;0.042414863 +16745;7;0.94027793;-0.2794263;0.19441818;0.0;0.33837846;0.8295036;-0.44432417;0.0;-0.03711472 +16746;0;-0.3390808;4.437439;8.2165985 +16746;3;-0.1736908;-0.054031372;-0.06227112 +16747;12;0.21330033;0.066235006;0.24244978;0.94410497 +16748;1;-0.20495425;4.2663093;8.831348 +16748;2;0.06328243;-0.19511652;0.77147484; +16749;0;-0.35820007;4.4849396;8.2642975 +16749;3;-0.1749115;-0.051574707;-0.05860901 +16750;0;-0.37252808;4.4611816;8.316757 +16751;12;0.21295725;0.06606504;0.24230185;0.9442322 +16751;3;-0.17552185;-0.049743652;-0.0549469 +16754;0;-0.38685608;4.4611816;8.378754 +16754;1;-0.20423204;4.2593446;8.834726 +16754;3;-0.17308044;-0.046691895;-0.05128479 +16755;4;14.292908;-1.7913818;-66.14685 +16755;6;-0.36077896;-0.48881984;0.04613831 +16755;7;0.92698103;-0.3116621;0.20874101;0.0;0.3728913;0.8260492;-0.42260468;0.0;-0.040720493 +16756;0;-0.40119934;4.4279175;8.421677 +16756;3;-0.17063904;-0.043640137;-0.049438477 +16759;12;0.21260229;0.065897115;0.24216945;0.9443579 +16759;1;-0.20366018;4.2524285;8.83807 +16759;0;-0.43463135;4.413666;8.46936 +16759;3;-0.16941833;-0.043029785;-0.04762268 +16761;12;0.21224801;0.065742165;0.2420549;0.94447774 +16761;0;-0.43940735;4.4421844;8.559982 +16761;3;-0.16514587;-0.039978027;-0.049438477 +16766;9;2AEC2AEBC4E1;-54;-2147483648 +16767;1;-0.20323284;4.24565;8.841338 +16767;0;-0.44895935;4.432678;8.621979 +16767;3;-0.16270447;-0.03692627;-0.04762268 +16767;4;11.143494;-1.6403198;-65.84625 +16768;6;-0.26105192;-0.47432443;0.05202451 +16768;7;0.95868194;-0.22960347;0.16796231;0.0;0.28069395;0.85946095;-0.42724454;0.0;-0.046260208 +16768;0;-0.44418335;4.465927;8.6458435 +16768;3;-0.16148376;-0.03630066;-0.04699707 +16768;12;0.21190032;0.06559702;0.24194567;0.94459397 +16769;0;-0.4298401;4.4754486;8.688751 +16769;1;-0.20297045;4.239092;8.844491 +16771;2;0.16927385;-0.18103456;0.31719494; +16774;3;-0.15904236;-0.0320282;-0.04699707 +16774;5;999.6004 +16774;0;-0.46328735;4.494446;8.693527 +16774;12;0.21156251;0.06546532;0.24184078;0.94470555 +16775;3;-0.15536499;-0.029586792;-0.049438477 +16775;0;-0.44895935;4.5181885;8.712601 +16775;1;-0.20299412;4.2327642;8.84752 +16776;3;-0.15170288;-0.025924683;-0.05065918 +16776;4;13.542175;-1.4907837;-66.89758 +16777;6;-0.3270297;-0.47785997;0.05148435 +16777;7;0.9381436;-0.28524762;0.19626641;0.0;0.34321788;0.84091884;-0.41839847;0.0;-0.04569694 +16777;12;0.21123183;0.06534971;0.24173148;0.9448156 +16778;0;-0.47283936;4.470688;8.774612 +16778;3;-0.14926147;-0.023483276;-0.053726196 +16778;0;-0.49195862;4.4849396;8.803207 +16778;1;-0.20338695;4.2266445;8.850436 +16779;3;-0.14497375;-0.022262573;-0.056167603 +16779;0;-0.5253906;4.480179;8.793686 +16780;12;0.2109093;0.06525727;0.24161904;0.9449228 +16781;3;-0.14253235;-0.022872925;-0.061050415 +16781;0;-0.5110626;4.503952;8.803207 +16786;3;-0.14009094;-0.022262573;-0.06410217 +16786;1;-0.20404543;4.2208195;8.853201 +16787;12;0.21060131;0.06517777;0.24149187;0.9450295 +16787;1;-0.20483877;4.215191;8.855864 +16787;4;13.243103;-1.4907837;-67.196655 +16787;6;-0.30585718;-0.47222352;0.057989053 +16787;7;0.9440483;-0.26815686;0.19200201;0.0;0.32574362;0.84922755;-0.41557637;0.0;-0.05161374 +16787;2;0.24356505;-0.2567749;0.058376312; +16787;0;-0.5253906;4.5181885;8.81752 +16788;3;-0.13825989;-0.023483276;-0.06776428 +16788;0;-0.5206146;4.5181885;8.86998 +16788;3;-0.13764954;-0.028366089;-0.07266235 +16788;0;-0.54927063;4.52771;8.855682 +16789;12;0.21030204;0.06510463;0.24134707;0.94513816 +16789;3;-0.13398743;-0.0320282;-0.076934814 +16791;0;-0.54927063;4.556198;8.86998 +16791;1;-0.20553097;4.2097163;8.858451 +16791;3;-0.13276672;-0.033859253;-0.08181763 +16794;4;14.143372;-1.940918;-66.596985 +16794;6;-0.33210438;-0.47374243;0.061845705 +16794;7;0.93435776;-0.2901262;0.20688747;0.0;0.35206634;0.8412434;-0.4103157;0.0;-0.054999385 +16794;0;-0.57315063;4.5752106;8.893829 +16794;3;-0.12908936;-0.038757324;-0.084869385 +16795;12;0.21001518;0.06502316;0.24117608;0.9452512 +16796;0;-0.5779419;4.5799713;8.874756 +16796;1;-0.20616543;4.2044735;8.860926 +16796;3;-0.12605286;-0.043029785;-0.08854675 +16798;0;-0.5540619;4.5894623;8.831833 +16798;12;0.20974357;0.06493622;0.24098308;0.9453666 +16799;3;-0.12361145;-0.047912598;-0.09159851 +16800;0;-0.5636139;4.560959;8.879532 +16801;1;-0.20652233;4.199467;8.863292 +16801;3;-0.11932373;-0.054031372;-0.097091675 +16803;4;14.892578;-1.1901855;-66.14685 +16803;6;-0.34729367;-0.47369018;0.06338834 +16803;7;0.92857367;-0.30287823;0.21451268;0.0;0.36684224;0.8367621;-0.4065169;0.0;-0.056370948 +16803;0;-0.5683899;4.5847015;8.874756 +16803;3;-0.11627197;-0.05708313;-0.100753784 +16804;12;0.20948735;0.06483427;0.24076806;0.94548523 +16805;0;-0.5301666;4.560959;8.850922 +16805;1;-0.20661348;4.1947837;8.865507 +16806;2;0.30610293;-0.34637165;-0.014306068; +16806;3;-0.113220215;-0.061965942;-0.105651855 +16807;5;999.6004 +16808;0;-0.5158386;4.560959;8.86998 +16808;12;0.209254;0.064716116;0.24052873;0.94560593 +16808;3;-0.108947754;-0.06745911;-0.10870361 +16810;1;-0.20642784;4.190364;8.867601 +16811;0;-0.5062866;4.546707;8.850922 +16811;3;-0.10588074;-0.07296753;-0.11541748 +16813;4;12.042236;-1.940918;-65.54718 +16813;6;-0.2831901;-0.47388288;0.057139307 +16814;7;0.95132;-0.24862887;0.18213733;0.0;0.3039871;0.8543613;-0.42149577;0.0;-0.05081507 +16814;0;-0.45851135;4.5657043;8.879532 +16814;3;-0.10221863;-0.07785034;-0.120910645 +16815;12;0.20904136;0.06457927;0.24025083;0.9457329 +16815;0;-0.44895935;4.5657043;8.884293 +16816;3;-0.09489441;-0.0821228;-0.12580872 +16816;1;-0.20592654;4.1862383;8.869561 +16817;0;-0.43940735;4.5419617;8.893829 +16818;12;0.20884815;0.06442838;0.23995696;0.9458605 +16818;3;-0.08816528;-0.08517456;-0.13252258 +16820;0;-0.44895935;4.52771;8.889069 +16820;1;-0.20528099;4.1825995;8.871292 +16820;3;-0.07962036;-0.08822632;-0.13864136 +16822;4;13.093567;-0.59051514;-65.097046 +16822;6;-0.32306606;-0.4705902;0.050464023 +16822;7;0.9397983;-0.2829662;0.19159713;0.0;0.33875945;0.84519076;-0.4133942;0.0;-0.044959538 +16822;0;-0.4202881;4.4991913;8.908142 +16823;3;-0.07167053;-0.091293335;-0.14411926 +16823;12;0.20868415;0.064270325;0.23963234;0.94598985 +16825;0;-0.4298401;4.456436;8.893829 +16825;1;-0.2045934;4.17956;8.872741 +16825;2;0.2091372;-0.32865715;-0.023844719; +16825;3;-0.06373596;-0.09434509;-0.15023804 +16827;13;86.221985 +16828;0;-0.39640808;4.456436;8.917694 +16829;3;-0.05580139;-0.09617615;-0.15756226 +16829;12;0.20855482;0.06411142;0.23927492;0.94611955 +16830;0;-0.37728882;4.4611816;8.908142 +16830;1;-0.20386928;4.1771607;8.873887 +16830;3;-0.04724121;-0.0980072;-0.16307068 +16832;4;13.542175;-1.7913818;-66.14685 +16832;6;-0.363304;-0.46392727;0.04232796 +16832;7;0.9271619;-0.3178032;0.1984236;0.0;0.37274486;0.835929;-0.4028448;0.0;-0.03784268 +16833;0;-0.39640808;4.437439;8.879532 +16833;3;-0.03869629;-0.09983826;-0.1691742 +16833;12;0.20846333;0.06395337;0.23888227;0.9462496 +16835;0;-0.38685608;4.3994293;8.889069 +16835;1;-0.20324168;4.1754355;8.874713 +16835;3;-0.029525757;-0.10105896;-0.17285156 +16836;0;-0.38685608;4.3994293;8.855682 +16837;12;0.2084078;0.06380273;0.23845956;0.9463786 +16837;3;-0.01852417;-0.102890015;-0.17529297 +16839;0;-0.36297607;4.3994293;8.860458 +16839;1;-0.20262171;4.1745057;8.875166 +16840;3;-0.008773804;-0.10411072;-0.17834473 +16841;4;13.842773;-2.090454;-65.69672 +16842;6;-0.38429934;-0.460529;0.040942945 +16842;7;0.91946447;-0.33585066;0.2044245;0.0;0.39145952;0.8304778;-0.39631563;0.0;-0.03666716 +16842;0;-0.36297607;4.3946686;8.860458 +16842;3;3.9672852E-4;-0.10533142;-0.18078613 +16843;12;0.20839633;0.06365851;0.23801465;0.9465028 +16844;0;-0.36775208;4.389923;8.84137 +16844;1;-0.20198241;4.1744094;8.875225 +16844;2;0.13342223;-0.21873713;-0.013821602; +16845;3;0.008956909;-0.10595703;-0.18200684 +16846;5;999.6004 +16847;0;-0.36775208;4.375656;8.81752 +16847;12;0.20843053;0.06352258;0.23755275;0.94662046 +16848;3;0.020553589;-0.10473633;-0.18261719 +16849;1;-0.20137452;4.175125;8.874902 +16849;0;-0.36297607;4.389923;8.812759 +16849;3;0.030334473;-0.103500366;-0.18322754 +16851;4;12.792969;-1.0406494;-68.24646 +16851;6;-0.324122;-0.46181443;0.041164298 +16851;7;0.9412879;-0.28511474;0.1807943;0.0;0.3355885;0.8486306;-0.40890855;0.0;-0.036841743 +16852;0;-0.35820007;4.375656;8.793686 +16852;3;0.039489746;-0.102890015;-0.18200684 +16852;12;0.20850909;0.063394725;0.23707032;0.94673264 +16854;0;-0.37252808;4.4279175;8.769836 +16854;1;-0.20086734;4.1767364;8.874156 +16855;3;0.04866028;-0.10105896;-0.18261719 +16856;0;-0.34864807;4.4516907;8.731674 +16856;12;0.20863593;0.06328716;0.23659596;0.9468306 +16857;3;0.05781555;-0.099227905;-0.18200684 +16858;1;-0.20045821;4.1792307;8.87299 +16861;0;-0.3390808;4.480179;8.703064 +16861;3;0.06576538;-0.09739685;-0.18261719 +16863;12;0.20880629;0.063195996;0.23612115;0.94691765 +16864;4;13.542175;-1.1901855;-65.69672 +16865;6;-0.35937226;-0.4750944;0.038941387 +16865;7;0.9291452;-0.31273723;0.19719194;0.0;0.3680906;0.83244234;-0.41418493;0.0;-0.03461986 +16865;0;-0.3295288;4.4754486;8.70784 +16865;3;0.071258545;-0.095565796;-0.18139648 +16865;1;-0.2001764;4.1824074;8.8715 +16865;0;-0.3199768;4.494446;8.6792145 +16865;3;0.07675171;-0.09007263;-0.18139648 +16866;2;0.105813146;-0.22832775;0.107504845; +16866;0;-0.3343048;4.494446;8.650604 +16866;12;0.20901126;0.06312175;0.23564647;0.9469956 +16866;3;0.08287048;-0.08639526;-0.17834473 +16869;1;-0.2002234;4.186123;8.869746 +16870;0;-0.3390808;4.494446;8.621979 +16870;3;0.087753296;-0.082733154;-0.17651367 +16871;4;13.093567;-1.940918;-67.04712 +16871;6;-0.3407717;-0.48020792;0.039307237 +16871;7;0.9357017;-0.29641446;0.19131307;0.0;0.3510663;0.83589953;-0.42192933;0.0;-0.034852568 +16871;0;-0.3390808;4.5419617;8.607666 +16871;3;0.08958435;-0.0796814;-0.17466736 +16872;9;2AEC2AEBC4E1;-57;-2147483648 +16873;12;0.20924138;0.06307199;0.2351727;0.9470659 +16875;0;-0.3343048;4.57045;8.593384 +16876;1;-0.20048903;4.190305;8.867764 +16876;3;0.09385681;-0.075408936;-0.17163086 +16876;0;-0.3295288;4.5799713;8.583832 +16876;12;0.20949198;0.06304233;0.23471372;0.9471263 +16877;3;0.09629822;-0.071121216;-0.16734314 +16877;1;-0.20095327;4.194778;8.86564 +16878;0;-0.3199768;4.6417236;8.593384 +16878;3;0.09753418;-0.0650177;-0.16490173 +16882;4;13.693237;-1.6403198;-65.84625 +16882;6;-0.35770628;-0.49496043;0.037218053 +16882;7;0.9298655;-0.30810708;0.20104808;0.0;0.36643982;0.82428646;-0.43159455;0.0;-0.032743864 +16882;0;-0.34864807;4.6559753;8.569519 +16882;3;0.10057068;-0.060134888;-0.16062927 +16882;12;0.20975472;0.06303285;0.23427697;0.94717693 +16883;1;-0.20177874;4.1995397;8.863366 +16883;0;-0.34864807;4.670227;8.564758 +16883;3;0.103637695;-0.054641724;-0.15574646 +16884;2;0.09149195;-0.3599062;0.25382614; +16887;5;999.60925 +16887;0;-0.36297607;4.7414856;8.555222 +16888;12;0.21002766;0.06304861;0.23385426;0.9472199 +16888;3;0.10423279;-0.04852295;-0.15145874 +16888;0;-0.35820007;4.760498;8.507523 +16888;1;-0.20290157;4.2046003;8.860941 +16888;3;0.1060791;-0.046081543;-0.14596558 +16893;4;14.143372;-1.6403198;-65.54718 +16893;6;-0.35356602;-0.5097786;0.042079065 +16893;7;0.9302059;-0.30222124;0.20827724;0.0;0.36519706;0.8188614;-0.44282863;0.0;-0.036717985 +16893;0;-0.3534088;4.7700043;8.540909 +16893;3;0.10668945;-0.04425049;-0.14230347 +16894;12;0.21030954;0.06308834;0.23345885;0.9472523 +16894;0;-0.3295288;4.7652435;8.507523 +16894;3;0.1060791;-0.043640137;-0.13923645 +16894;1;-0.20408227;4.2097883;8.858451 +16895;0;-0.3295288;4.817505;8.521835 +16895;3;0.1060791;-0.043640137;-0.13742065 +16895;12;0.2105965;0.063137926;0.23308875;0.94727635 +16897;0;-0.32476807;4.8222656;8.526611 +16897;3;0.103637695;-0.04425049;-0.13679504 +16897;1;-0.2051922;4.215016;8.855939 +16900;4;13.093567;-1.0406494;-65.097046 +16900;6;-0.32628855;-0.51439637;0.03807036 +16900;7;0.94054973;-0.2790498;0.19364233;0.0;0.33803576;0.8246561;-0.45351285;0.0;-0.03313566 +16900;0;-0.3343048;4.8365173;8.583832 +16900;3;0.10119629;-0.047302246;-0.13619995 +16900;12;0.21088329;0.0631878;0.23273258;0.9472968 +16901;1;-0.20617057;4.220072;8.853508 +16901;0;-0.3152008;4.86026;8.593384 +16902;3;0.099349976;-0.04852295;-0.13679504 +16902;2;0.08932018;-0.5568514;0.30083656; +16904;0;-0.37728882;4.879257;8.593384 +16904;12;0.21116368;0.06323095;0.23237976;0.947318 +16904;3;0.095687866;-0.047912598;-0.13496399 +16910;1;-0.20710945;4.2249703;8.85115 +16910;0;-0.38208008;4.9267883;8.583832 +16910;3;0.09324646;-0.047302246;-0.13619995 +16910;4;13.243103;-2.090454;-65.69672 +16910;6;-0.3198186;-0.52062625;0.04448224 +16910;7;0.9413993;-0.27273956;0.19844517;0.0;0.33508098;0.82351863;-0.45775294;0.0;-0.038575966 +16910;0;-0.3534088;4.9457855;8.617218 +16910;3;0.0901947;-0.046691895;-0.13801575 +16910;12;0.21143728;0.06326723;0.2320258;0.9473414 +16911;9;52ADB5BC186F;-79;-2147483648 +16912;1;-0.20812485;4.229656;8.8488865 +16912;0;-0.40596008;4.969528;8.607666 +16912;3;0.08958435;-0.047302246;-0.13986206 +16914;0;-0.41552734;4.9647827;8.6410675 +16914;12;0.2116967;0.063306846;0.23167144;0.94736755 +16914;3;0.087753296;-0.046691895;-0.13986206 +16916;0;-0.43940735;4.9362793;8.6792145 +16916;1;-0.20926091;4.2341657;8.846704 +16916;3;0.08468628;-0.046691895;-0.14167786 +16918;4;15.04364;0.009155273;-65.54718 +16918;6;-0.3437232;-0.5165726;0.050584365 +16918;7;0.9318864;-0.29302275;0.213835;0.0;0.36007607;0.8186559;-0.44737855;0.0;-0.04396521 +16918;0;-0.43463135;4.94104;8.722153 +16918;3;0.07858276;-0.0491333;-0.14289856 +16919;12;0.2119441;0.06334647;0.23131111;0.94739753 +16921;0;-0.43463135;4.917267;8.750748 +16921;1;-0.21041547;4.238297;8.844698 +16921;2;0.15255305;-0.6790023;0.1856184; +16921;3;0.07369995;-0.0491333;-0.14167786 +16923;5;999.60925 +16923;0;-0.43940735;4.9362793;8.831833 +16926;12;0.21217205;0.063380055;0.23094617;0.9474334 +16926;3;0.067596436;-0.049743652;-0.14289856 +16926;1;-0.21153104;4.241876;8.842955 +16926;0;-0.47283936;4.884018;8.846146 +16926;3;0.059036255;-0.0491333;-0.14352417 +16929;4;14.292908;-2.090454;-66.89758 +16929;6;-0.33451185;-0.503856;0.05340064 +16929;7;0.9347638;-0.2875084;0.20869985;0.0;0.3521816;0.8271864;-0.4378707;0.0;-0.04674218 +16929;0;-0.5158386;4.8982697;8.941528 +16929;3;0.051101685;-0.049743652;-0.14230347 +16929;12;0.21236975;0.06340589;0.23058088;0.94747627 +16931;1;-0.21274643;4.244728;8.8415575 +16931;0;-0.5349426;4.9267883;8.951065 +16931;3;0.043151855;-0.047912598;-0.14167786 +16932;0;-0.5397186;4.8982697;8.998749 +16933;12;0.21252994;0.06342557;0.23021668;0.9475276 +16933;3;0.03643799;-0.046081543;-0.13923645 +16935;1;-0.2140557;4.246874;8.840495 +16936;0;-0.5779419;4.8982697;9.036911 +16936;3;0.029724121;-0.04547119;-0.13679504 +16937;4;12.643433;-1.7913818;-67.196655 +16937;6;-0.26481092;-0.4958485;0.0638665 +16937;7;0.95522684;-0.23020585;0.18586838;0.0;0.2905004;0.84890556;-0.44155306;0.0;-0.056136582 +16937;0;-0.5922699;4.8650208;9.065521 +16938;3;0.024215698;-0.043029785;-0.13557434 +16938;12;0.21264976;0.06344277;0.22986117;0.9475859 +16940;0;-0.5922699;4.841263;9.08461 +16940;1;-0.21543577;4.2483983;8.839729 +16940;3;0.018112183;-0.039367676;-0.13374329 +16941;2;0.27622727;-0.628777;-0.13880062; +16942;0;-0.63049316;4.8222656;9.151382 +16943;12;0.21273454;0.06345712;0.22951859;0.9476489 +16943;3;0.011993408;-0.03692627;-0.13130188 +16945;1;-0.21707122;4.249323;8.839245 +16946;0;-0.6639252;4.8079987;9.213379 +16946;3;0.009552002;-0.0320282;-0.12947083 +16947;4;13.842773;-1.7913818;-66.44745 +16947;6;-0.29736465;-0.4799128;0.07193664 +16947;7;0.9439161;-0.25990272;0.20364965;0.0;0.32397202;0.8481051;-0.41923758;0.0;-0.06375531 +16947;0;-0.6495819;4.7747498;9.21814 +16947;3;0.0071105957;-0.026535034;-0.12763977 +16948;12;0.2127842;0.06347773;0.22918583;0.947717 +16949;0;-0.65437317;4.7747498;9.280151 +16949;1;-0.21899521;4.249883;8.838927 +16949;3;0.004058838;-0.02104187;-0.12580872 +16952;0;-0.6639252;4.7652435;9.318314 +16952;12;0.21281049;0.06351188;0.22887091;0.9477849 +16952;3;0.0028381348;-0.016159058;-0.12213135 +16954;0;-0.6925812;4.7794952;9.346909 +16954;1;-0.22130345;4.250193;8.838721 +16954;3;0.0022277832;-0.010040283;-0.11968994 +16956;4;13.093567;-1.940918;-66.596985 +16956;6;-0.2746017;-0.47157353;0.07396219 +16956;7;0.9507989;-0.2415673;0.19397593;0.0;0.30273402;0.8574771;-0.4160349;0.0;-0.06582949 +16957;0;-0.70692444;4.7224884;9.356461 +16957;3;0.0034484863;-0.0051574707;-0.11602783 +16957;12;0.21281752;0.0635668;0.22857217;0.9478517 +16959;0;-0.71647644;4.7224884;9.370773 +16959;1;-0.2239921;4.250412;8.838548 +16959;2;0.4080326;-0.5052285;-0.45199776; +16959;3;0.006500244;-2.746582E-4;-0.11236572 +16961;0;-0.7642517;4.7414856;9.404144 +16962;12;0.21281554;0.06364493;0.22829261;0.9479143 +16962;3;0.011398315;0.006439209;-0.109313965 +16962;5;999.60925 +16964;0;-0.76901245;4.7462463;9.4375305 +16964;1;-0.22705106;4.250886;8.838243 +16964;3;0.014450073;0.013168335;-0.105041504 +16966;4;14.593506;-0.74157715;-66.14685 +16966;6;-0.3023326;-0.4646476;0.08130487 +16966;7;0.940655;-0.2661805;0.21051414;0.0;0.33150685;0.8534328;-0.4021888;0.0;-0.07260484 +16966;0;-0.7976837;4.6892242;9.46138 +16967;3;0.018722534;0.019882202;-0.10014343 +16967;12;0.21281976;0.063748494;0.22803243;0.947969 +16969;1;-0.23057927;4.251629;8.837793 +16969;0;-0.850235;4.712982;9.4470825 +16969;3;0.026657104;0.026611328;-0.09526062 +16971;0;-0.850235;4.6892242;9.43277 +16972;12;0.21283355;0.063886456;0.2277964;0.9480133 +16972;3;0.03277588;0.032104492;-0.089157104 +16974;1;-0.2345007;4.2529387;8.83706 +16975;0;-0.897995;4.6987305;9.427994 +16976;9;2AEC2AEBC4E1;-56;-2147483648 +16978;3;0.040100098;0.036987305;-0.084869385 +16978;4;12.342834;-2.241516;-64.34631 +16978;6;-0.22537297;-0.46055105;0.094961256 +16978;7;0.960902;-0.20018606;0.19129261;0.0;0.26353872;0.8731534;-0.41006136;0.0;-0.08493923 +16978;0;-0.9219055;4.6892242;9.404144 +16978;3;0.04498291;0.041870117;-0.07876587 +16978;12;0.21287112;0.06405899;0.2275877;0.9480434 +16978;0;-0.9457855;4.6749725;9.385086 +16979;1;-0.23871213;4.254804;8.836049 +16979;3;0.051712036;0.045532227;-0.07449341 +16979;2;0.5723275;-0.43538952;-0.5973749; +16980;0;-0.9553375;4.6892242;9.413681 +16981;12;0.21293299;0.064258315;0.22740519;0.94805974 +16981;3;0.059036255;0.049209595;-0.06716919 +16983;0;-0.98876953;4.6749725;9.385086 +16983;1;-0.24307911;4.2572174;8.834768 +16983;3;0.06454468;0.051651;-0.06227112 +16985;4;13.693237;-1.6403198;-65.54718 +16985;6;-0.23572312;-0.4599497;0.104968175 +16985;7;0.9561316;-0.20927487;0.20497927;0.0;0.27748471;0.8712946;-0.40478158;0.0;-0.09388671 +16986;0;-0.9983368;4.703491;9.399368 +16986;3;0.07003784;0.051651;-0.056777954 +16987;12;0.21302131;0.06447929;0.22724801;0.9480626 +16988;0;-1.0078735;4.6892242;9.385086 +16988;1;-0.24743047;4.2601595;8.833229 +16988;3;0.07247925;0.051651;-0.0549469 +16990;0;-0.98876953;4.703491;9.346909 +16991;12;0.21313685;0.064711295;0.2271179;0.948052 +16991;3;0.075531006;0.047973633;-0.050064087 +16993;0;-1.0030975;4.7414856;9.365997 +16993;1;-0.25154915;4.263433;8.8315325 +16994;3;0.07858276;0.04309082;-0.045776367 +16995;4;12.342834;-1.6403198;-65.84625 +16995;6;-0.18213455;-0.46633673;0.106693216 +16995;7;0.96919453;-0.1617885;0.18570523;0.0;0.22718745;0.8784468;-0.42037722;0.0;-0.09511995 +16996;0;-1.0269775;4.7890015;9.337372 +16996;3;0.07797241;0.036376953;-0.040893555 +16996;12;0.21327344;0.06494086;0.2270014;0.9480336 +16997;0;-0.9983368;4.7890015;9.270599 +16998;1;-0.25507277;4.2669888;8.829715 +16998;3;0.07980347;0.029647827;-0.03845215 +16998;2;0.7042843;-0.4409237;-0.54149246; +17000;0;-1.0126648;4.850769;9.246765 +17000;12;0.21343191;0.06514607;0.2268997;0.9480081 +17001;3;0.08224487;0.018661499;-0.036010742 +17001;5;999.60925 +17002;0;-1.0222168;4.8650208;9.227692 +17002;1;-0.2578188;4.2707677;8.827807 +17002;3;0.08409119;0.008285522;-0.03479004 +17004;4;13.842773;-2.5405884;-66.14685 +17004;6;-0.21989505;-0.48267394;0.11032725 +17004;7;0.9588396;-0.1932077;0.20808037;0.0;0.26667494;0.8644283;-0.42620215;0.0;-0.09752501 +17005;0;-0.99354553;4.9125214;9.213379 +17005;3;0.087142944;-0.0014953613;-0.03479004 +17006;12;0.21361059;0.06531524;0.22680238;0.9479795 +17007;0;-0.99354553;4.974289;9.19429 +17007;1;-0.25960255;4.274844;8.825782 +17007;3;0.08958435;-0.0149383545;-0.032958984 +17009;0;-0.9601135;4.9885406;9.170456 +17010;12;0.21381748;0.06543812;0.2267003;0.9479488 +17011;3;0.09263611;-0.027755737;-0.033554077 +17013;1;-0.26024893;4.2792807;8.823612 +17013;0;-0.93621826;5.06456;9.156143 +17013;3;0.09629822;-0.038146973;-0.03479004 +17014;4;13.693237;-2.241516;-66.596985 +17014;6;-0.21983367;-0.5030454;0.10189616 +17014;7;0.9601779;-0.19105278;0.20385595;0.0;0.26479477;0.8550335;-0.44587147;0.0;-0.0891187 +17015;0;-0.864563;5.050308;9.160919 +17015;3;0.099975586;-0.0491333;-0.03479004 +17015;12;0.21405734;0.06550347;0.22658838;0.94791687 +17016;0;-0.845459;5.1263123;9.170456 +17017;1;-0.2598639;4.284044;8.821312 +17017;2;0.65895325;-0.6816335;-0.37880707; +17017;3;0.103012085;-0.058303833;-0.036010742 +17019;0;-0.802475;5.1690826;9.184769 +17019;12;0.2143287;0.065518714;0.22646208;0.94788474 +17019;3;0.10974121;-0.0650177;-0.036621094 +17021;0;-0.7403717;5.2070923;9.222916 +17021;1;-0.25863636;4.2892246;8.8188305 +17021;3;0.115859985;-0.06806946;-0.040283203 +17024;4;13.392639;-1.940918;-65.54718 +17024;6;-0.25668585;-0.5125958;0.080103464 +17024;7;0.954172;-0.22124676;0.20150833;0.0;0.29102057;0.842922;-0.45253682;0.0;-0.069733486 +17024;0;-0.68782043;5.3068542;9.203827 +17024;3;0.12440491;-0.06990051;-0.040893555 +17025;12;0.21463425;0.065492004;0.2263214;0.94785106 +17026;0;-0.65914917;5.35437;9.19429 +17026;1;-0.25706095;4.2951207;8.816007 +17027;3;0.13233948;-0.071121216;-0.04333496 +17028;0;-0.59706116;5.444641;9.184769 +17029;12;0.21498299;0.065455385;0.22616765;0.9478113 +17029;3;0.1402893;-0.07234192;-0.044555664 +17031;0;-0.5540619;5.544403;9.156143 +17031;1;-0.25531483;4.3018627;8.81277 +17031;3;0.14639282;-0.075408936;-0.044555664 +17034;4;14.892578;-1.1901855;-65.24658 +17034;6;-0.3184606;-0.54367304;0.060438886 +17034;7;0.93820155;-0.26795974;0.2190331;0.0;0.3422072;0.8127829;-0.47146398;0.0;-0.051692985 +17034;0;-0.49671936;5.5871735;9.213379 +17034;3;0.15310669;-0.07662964;-0.046401978 +17036;0;-0.43463135;5.658432;9.213379 +17036;1;-0.2532803;4.3092594;8.809214 +17036;3;0.15922546;-0.07723999;-0.048217773 +17036;12;0.21537893;0.06541879;0.22600332;0.947763 +17036;2;0.33449242;-1.0883961;-0.39407253; +17038;0;-0.38685608;5.7296906;9.21814 +17039;12;0.21581395;0.06537481;0.22583255;0.94770783 +17039;3;0.16227722;-0.07601929;-0.048217773 +17039;5;999.6151 +17040;1;-0.25114864;4.3172116;8.80538 +17041;0;-0.3390808;5.800949;9.313538 +17041;3;0.16227722;-0.071121216;-0.04762268 +17043;4;11.743164;-1.6403198;-67.49725 +17043;6;-0.2629199;-0.55675554;0.036391232 +17043;7;0.95999897;-0.22064939;0.17238274;0.0;0.27829456;0.81979924;-0.50048107;0.0;-0.030888395 +17043;0;-0.29130554;5.9102325;9.308762 +17043;3;0.16105652;-0.06440735;-0.048217773 +17044;12;0.2162818;0.06532466;0.22562195;0.9476548 +17045;1;-0.249247;4.3252974;8.801466 +17045;0;-0.21009827;5.948242;9.375534 +17045;3;0.15739441;-0.05340576;-0.046401978 +17048;0;-0.171875;6.0005035;9.4470825 +17048;3;0.1525116;-0.042419434;-0.04699707 +17050;12;0.21674848;0.065295584;0.22545072;0.947591 +17050;0;-0.157547;6.086014;9.456619 +17051;1;-0.2480536;4.3331294;8.797646 +17051;3;0.14517212;-0.027145386;-0.04762268 +17053;4;15.04364;-1.940918;-66.596985 +17053;6;-0.38344333;-0.57177985;0.016658429 +17053;7;0.923881;-0.31460875;0.21786515;0.0;0.3824234;0.77987176;-0.49553233;0.0;-0.014008077 +17053;0;-0.12890625;6.086014;9.504303 +17053;3;0.13600159;-0.011871338;-0.050064087 +17054;12;0.21719258;0.065305196;0.22529404;0.9475258 +17055;1;-0.24807937;4.340327;8.794096 +17055;2;-0.050883472;-1.6040783;-0.607564; +17059;0;-0.16233826;6.062256;9.547226 +17059;3;0.12501526;0.0033874512;-0.05128479 +17060;0;-0.10499573;6.071762;9.585388 +17063;3;0.110961914;0.01927185;-0.053115845 +17063;0;-0.10978699;6.038513;9.599686 +17063;3;0.09812927;0.032104492;-0.054336548 +17063;4;13.093567;-1.0406494;-66.29639 +17063;6;-0.34341234;-0.56146437;0.011436021 +17063;7;0.93949956;-0.28501043;0.19002537;0.0;0.34241334;0.79705167;-0.49745536;0.0;-0.009680111 +17063;1;-0.24942812;4.3465014;8.791008 +17063;0;-0.07635498;6.0005035;9.637848 +17063;3;0.08102417;0.044311523;-0.05860901 +17064;12;0.21758458;0.06537098;0.22514987;0.9474657 +17064;12;0.21790472;0.06549171;0.22501384;0.9474161 +17065;0;-0.07156372;6.0005035;9.695084 +17065;1;-0.25195482;4.351375;8.788525 +17065;3;0.06147766;0.05470276;-0.06349182 +17067;0;-0.06201172;5.957733;9.728455 +17067;12;0.21814027;0.06565839;0.2248918;0.94737923 +17067;3;0.041931152;0.06263733;-0.06776428 +17069;1;-0.255515;4.3545074;8.78687 +17073;12;0.21826889;0.06585209;0.22476648;0.947366 +17077;2;-0.226017;-1.567173;-0.9191294; +17077;1;-0.25976077;4.355731;8.786139 +17077;0;-0.06201172;5.8532104;9.75708 +17077;3;0.02116394;0.06814575;-0.07449341 +17077;4;12.942505;-2.090454;-65.69672 +17078;6;-0.37259412;-0.5403324;0.0063554756 +17078;7;0.9301772;-0.31217185;0.19318171;0.0;0.36707047;0.7986988;-0.47680137;0.0;-0.0054500233 +17078;0;-0.028564453;5.80571;9.776154 +17078;3;3.9672852E-4;0.073028564;-0.07876587 +17078;9;2AEC2AEBC4E1;-62;-2147483648 +17079;0;-0.028564453;5.7059326;9.828613 +17079;3;-0.020965576;0.07485962;-0.08610535 +17079;0;-0.01423645;5.5539093;9.8619995 +17079;1;-0.26438195;4.3549323;8.786397 +17080;12;0.21828493;0.06605177;0.22462982;0.9473808 +17080;3;-0.040527344;0.07485962;-0.09037781 +17082;5;999.6151 +17082;0;0.023986816;5.487381;9.900162 +17082;3;-0.061904907;0.076690674;-0.097091675 +17082;4;13.243103;-2.5405884;-66.14685 +17082;6;-0.42230177;-0.5061158;-0.0024228664 +17082;7;0.91262674;-0.3584785;0.19648337;0.0;0.4087885;0.7977957;-0.4431862;0.0;0.0021191195 +17082;12;0.21819212;0.06623892;0.22447467;0.94742596 +17082;0;0.009643555;5.387619;9.928772 +17082;3;-0.08328247;0.073638916;-0.101364136 +17084;1;-0.26924786;4.352118;8.787644 +17084;0;0.03831482;5.278351;9.995529 +17084;3;-0.10404968;0.06997681;-0.10687256 +17086;0;0.04307556;5.1453247;10.062302 +17086;12;0.2179872;0.06640627;0.22430341;0.94750184 +17086;3;-0.121154785;0.0675354;-0.112976074 +17088;0;0.08607483;4.974289;10.138611 +17089;1;-0.27397686;4.3473005;8.789882 +17090;3;-0.13887024;0.064468384;-0.121536255 +17090;4;11.442566;-1.940918;-65.097046 +17090;6;-0.41963357;-0.45610785;-0.008489601 +17091;7;0.9147289;-0.36577615;0.17169423;0.0;0.4039963;0.8198812;-0.40568674;0.0;0.007621648 +17091;0;0.07652283;4.8650208;10.191071 +17091;3;-0.15597534;0.060195923;-0.12641907 +17091;12;0.21767752;0.0665347;0.22411348;0.947609 +17094;1;-0.27871922;4.340706;8.792992 +17094;2;-0.35322353;-0.8338113;-1.2507324; +17094;0;0.052627563;4.750992;10.238785 +17095;3;-0.17124939;0.055923462;-0.13130188 +17095;0;0.066970825;4.646469;10.238785 +17096;12;0.21727723;0.06663481;0.22389415;0.9477457 +17096;3;-0.18408203;0.049819946;-0.13742065 +17098;0;0.014419556;4.5419617;10.305542 +17098;1;-0.2832979;4.3325915;8.796846 +17098;3;-0.19569397;0.04248047;-0.13986206 +17100;4;13.093567;-2.241516;-65.54718 +17100;6;-0.4958307;-0.41511798;-0.0013992031 +17100;7;0.8798414;-0.43535542;0.19064312;0.0;0.47526574;0.80487055;-0.35539562;0.0;0.0012803667 +17100;0;0.023986816;4.432678;10.343704 +17101;3;-0.20362854;0.036987305;-0.14474487 +17101;12;0.2167991;0.06670086;0.22364858;0.94790846 +17102;0;0.009643555;4.3043976;10.372314 +17103;1;-0.2875062;4.323284;8.801288 +17103;3;-0.2103424;0.030273438;-0.14962769 +17105;0;-0.023803711;4.190384;10.372314 +17105;12;0.21626343;0.06672789;0.22338441;0.9480912 +17105;3;-0.21339417;0.02293396;-0.15390015 +17107;0;-0.06201172;4.123871;10.37709 +17108;1;-0.29141858;4.313235;8.806088 +17108;3;-0.21583557;0.014389038;-0.15818787 +17110;4;13.093567;-2.241516;-65.54718 +17110;6;-0.5206178;-0.37825814;0.005975758 +17110;7;0.8663989;-0.46225354;0.1888777;0.0;0.49932182;0.8061871;-0.31739607;0.0;-0.005553295 +17110;0;-0.08590698;4.0478516;10.400925 +17110;3;-0.21583557;0.005844116;-0.16368103 +17110;12;0.21569653;0.06672499;0.22309327;0.9482891 +17112;0;-0.13366699;3.952835;10.477234 +17113;1;-0.29489428;4.302826;8.811064 +17113;2;-0.3067456;0.030130386;-1.55478; +17113;3;-0.21339417;-0.006378174;-0.17041016 +17115;0;-0.08590698;3.9005737;10.477234 +17115;12;0.21511802;0.06668663;0.22277325;0.9484984 +17116;3;-0.2066803;-0.01737976;-0.17529297 +17116;5;999.6151 +17117;0;-0.12890625;3.8197937;10.48201 +17117;1;-0.29767242;4.292492;8.816009 +17117;3;-0.19873047;-0.027145386;-0.18078613 +17119;4;13.243103;-0.74157715;-66.14685 +17119;6;-0.5141698;-0.34943357;0.012297236 +17119;7;0.86856484;-0.4620904;0.17907384;0.0;0.49544075;0.8180821;-0.29202786;0.0;-0.011553785 +17120;0;-0.16233826;3.7865448;10.515396 +17120;3;-0.18896484;-0.03753662;-0.1850586 +17120;12;0.21455605;0.066606835;0.22240934;0.9487167 +17122;0;-0.17666626;3.7675476;10.467697 +17122;1;-0.29985756;4.282744;8.820674 +17122;3;-0.17552185;-0.046081543;-0.19117737 +17124;0;-0.16711426;3.7247925;10.496323 +17124;12;0.21403746;0.06649617;0.2220133;0.9489344 +17125;3;-0.15904236;-0.050354004;-0.19544983 +17126;0;-0.20533752;3.6962738;10.462921 +17127;1;-0.30159506;4.2740455;8.824834 +17127;3;-0.14193726;-0.054031372;-0.200943 +17129;4;13.243103;-0.74157715;-66.14685 +17129;6;-0.5087634;-0.33952773;0.01962274 +17129;7;0.8699963;-0.45929024;0.17932901;0.0;0.492711;0.8234899;-0.28124768;0.0;-0.01850133 +17129;0;-0.26264954;3.663025;10.453384 +17129;3;-0.11993408;-0.054031372;-0.20521545 +17130;12;0.21358262;0.0663718;0.22158036;0.9491466 +17131;0;-0.26264954;3.639267;10.391388 +17132;1;-0.3033714;4.266832;8.828263 +17132;3;-0.09550476;-0.050964355;-0.20887756 +17132;2;-0.15790588;0.5270276;-1.646142; +17134;0;-0.30085754;3.6202698;10.334152 +17134;12;0.2132109;0.06626124;0.22111575;0.94934636 +17135;3;-0.06739807;-0.043029785;-0.21072388 +17136;0;-0.3152008;3.6440125;10.272156 +17136;1;-0.3056329;4.2617297;8.830649 +17137;3;-0.040527344;-0.034484863;-0.21621704 +17138;4;15.04364;-0.59051514;-64.64691 +17138;6;-0.552085;-0.3407489;0.030675346 +17138;7;0.8456567;-0.49430937;0.20130353;0.0;0.5329439;0.80247945;-0.2683235;0.0;-0.02890712 +17139;0;-0.3534088;3.6487732;10.210159 +17139;3;-0.0093688965;-0.025314331;-0.2168274 +17140;12;0.21294974;0.06620033;0.22063029;0.94952214 +17141;0;-0.42507935;3.6345215;10.086151 +17141;1;-0.30885264;4.2590733;8.831818 +17141;3;0.024215698;-0.015533447;-0.21987915 +17143;0;-0.46806335;3.6867828;10.038467 +17144;12;0.21280995;0.0662197;0.2201277;0.94966877 +17144;3;0.058425903;-0.0027160645;-0.22293091 +17146;0;-0.5301666;3.6867828;9.933533 +17146;1;-0.31319016;4.2593217;8.831546 +17146;3;0.091415405;0.007659912;-0.22476196 +17148;4;15.04364;-0.59051514;-64.64691 +17148;6;-0.48144278;-0.35492313;0.053320818 +17148;7;0.8764917;-0.4341975;0.20792991;0.0;0.47881618;0.8310858;-0.2828984;0.0;-0.049973816 +17148;0;-0.5397186;3.70578;9.823853 +17149;3;0.123794556;0.01927185;-0.22415161 +17149;12;0.21281365;0.06633081;0.21961245;0.9497795 +17150;0;-0.57315063;3.7485352;9.742767 +17151;1;-0.31862468;4.2624826;8.829826 +17151;2;0.08392888;0.6027379;-1.2325888; +17151;3;0.15310669;0.02720642;-0.22598267 +17154;0;-0.65437317;3.753296;9.675995 +17154;12;0.21296108;0.066536374;0.21908969;0.9498527 +17155;3;0.18243408;0.0357666;-0.22598267 +17155;5;999.6151 +17156;0;-0.67349243;3.8197937;9.585388 +17156;3;0.20747375;0.04248047;-0.22537231 +17156;1;-0.32503507;4.268344;8.82676 +17158;4;13.243103;-0.74157715;-65.24658 +17158;6;-0.3495306;-0.37836808;0.07014713 +17158;7;0.9283563;-0.31823444;0.19204551;0.0;0.36594048;0.8730792;-0.32221168;0.0;-0.06513208 +17158;0;-0.7021332;3.862564;9.4470825 +17158;3;0.23252869;0.048599243;-0.22476196 +17159;12;0.21324597;0.06682351;0.2185553;0.94989175 +17160;0;-0.73558044;3.9005737;9.327835 +17160;1;-0.3321105;4.2766175;8.822492 +17161;3;0.2520752;0.05104065;-0.22598267 +17162;0;-0.73080444;3.9195862;9.256302 +17163;12;0.21365091;0.0671759;0.21802339;0.94989824 +17163;3;0.26979065;0.052261353;-0.22781372 +17165;1;-0.33948433;4.2866936;8.81732 +17165;0;-0.75468445;3.9718475;9.146606 +17165;3;0.28567505;0.054092407;-0.23088074 +17167;4;13.243103;-0.74157715;-65.24658 +17167;6;-0.29716715;-0.40843526;0.0823233 +17167;7;0.9433684;-0.26872692;0.19452982;0.0;0.3230493;0.87751853;-0.35440135;0.0;-0.07546636 +17168;0;-0.7499237;4.0145874;9.036911 +17168;3;0.29544067;0.051651;-0.2339325 +17168;12;0.21415134;0.06756611;0.21748626;0.94988096 +17170;0;-0.73080444;4.043091;8.955841 +17170;2;0.33488008;0.40076065;-0.5004778; +17170;1;-0.3470351;4.2981753;8.811435 +17170;3;0.3046112;0.050430298;-0.2363739 +17174;0;-0.7260437;4.0811005;8.86998 +17174;12;0.21472566;0.06797789;0.21693222;0.9498486 +17174;3;0.31071472;0.04737854;-0.23942566 +17176;0;-0.7642517;4.095352;8.779373 +17176;1;-0.354553;4.3104897;8.805117 +17176;3;0.31254578;0.04248047;-0.24247742 +17178;4;14.743042;-1.6403198;-65.097046 +17178;6;-0.33019042;-0.43502486;0.08683194 +17178;7;0.93056697;-0.29402488;0.2181617;0.0;0.3575752;0.8578716;-0.36904785;0.0;-0.07864546 +17179;0;-0.7403717;4.0716095;8.6792145 +17179;3;0.31254578;0.036987305;-0.24920654 +17179;12;0.21534492;0.068395466;0.21635962;0.949809 +17181;0;-0.67349243;4.11911;8.621979 +17181;3;0.30827332;0.027832031;-0.25531006 +17181;1;-0.3618141;4.3230653;8.798654 +17182;12;0.21598397;0.06879413;0.21576469;0.94977045 +17183;9;2AEC2AEBC4E1;-67;-2147483648 +17184;0;-0.65914917;4.095352;8.574295 +17184;3;0.3058319;0.018051147;-0.25897217 +17187;0;-0.63526917;4.100113;8.517059 +17187;3;0.29910278;0.008880615;-0.26631165 +17187;1;-0.36853075;4.335414;8.792296 +17188;4;13.243103;-2.090454;-65.24658 +17188;6;-0.30320054;-0.44757402;0.07444999 +17188;7;0.9421307;-0.2691664;0.19984822;0.0;0.3284715;0.86037844;-0.38968626;0.0;-0.06705466 +17188;0;-0.5874939;4.100113;8.483673 +17188;12;0.2166195;0.06915414;0.21513692;0.9497421 +17188;3;0.29177856;-2.746582E-4;-0.2718048 +17191;0;-0.57315063;4.0811005;8.46936 +17191;1;-0.37462622;4.347252;8.786192 +17193;3;0.28321838;-0.007598877;-0.27485657 +17193;2;0.26167795;0.26759195;0.15371323; +17193;0;-0.5349426;4.052597;8.459839 +17193;12;0.21723506;0.06946722;0.21447505;0.9497282 +17193;3;0.27711487;-0.013702393;-0.27851868 +17193;5;999.61896 +17194;0;-0.47283936;4.052597;8.38353 +17195;1;-0.38015372;4.358389;8.780435 +17195;3;0.270401;-0.02104187;-0.28401184 +17196;4;12.643433;-1.1901855;-64.94751 +17196;6;-0.31600213;-0.4496576;0.056341298 +17196;7;0.9413708;-0.27987742;0.18838696;0.0;0.33354026;0.85600334;-0.3949799;0.0;-0.050713904 +17196;0;-0.46806335;3.9670868;8.354904 +17197;3;0.26245117;-0.026535034;-0.2889099 +17197;12;0.21782239;0.06973458;0.21378486;0.9497297 +17198;0;-0.42507935;3.933838;8.30722 +17199;1;-0.3852666;4.368834;8.77502 +17199;3;0.2532959;-0.03263855;-0.29135132 +17201;0;-0.39163208;3.9290771;8.283371 +17201;12;0.21838038;0.06996642;0.21307582;0.94974387 +17201;3;0.24963379;-0.038757324;-0.29318237 +17203;0;-0.3534088;3.9100647;8.288132 +17203;1;-0.3899025;4.378603;8.769944 +17204;3;0.24412537;-0.043029785;-0.29745483 +17209;4;14.743042;-1.3412476;-66.596985 +17209;6;-0.40919662;-0.44045657;0.042614534 +17209;7;0.9093812;-0.35989827;0.20856436;0.0;0.41417488;0.8298775;-0.37384805;0.0;-0.03853561 +17209;0;-0.30085754;3.8530579;8.278595 +17209;3;0.23680115;-0.04425049;-0.29989624 +17209;12;0.21890703;0.07015961;0.21235123;0.9497707 +17209;0;-0.25787354;3.843567;8.254761 +17209;1;-0.39421225;4.3877993;8.765155 +17209;2;-0.027090043;0.4585786;0.43050385; +17209;3;0.23435974;-0.039978027;-0.29989624 +17210;0;-0.22921753;3.772293;8.230911 +17212;3;0.23252869;-0.03630066;-0.29867554 +17212;12;0.21940862;0.07032531;0.21161118;0.9498079 +17217;0;-0.171875;3.7200317;8.226135 +17217;3;0.23008728;-0.033859253;-0.29808044 +17217;4;13.693237;-2.241516;-66.29639 +17217;6;-0.45142424;-0.4246175;0.020890733 +17217;7;0.8958761;-0.39750716;0.19847934;0.0;0.443896;0.81991875;-0.36150992;0.0;-0.019034175 +17217;0;-0.095443726;3.6915283;8.269058 +17217;3;0.22579956;-0.030807495;-0.29501343 +17218;1;-0.39865872;4.3965764;8.760553 +17218;12;0.21988575;0.070489846;0.21087408;0.9498493 +17218;0;-0.033355713;3.663025;8.269058 +17218;1;-0.40309438;4.4050016;8.756117 +17218;3;0.2227478;-0.025924683;-0.29135132 +17220;0;-0.038131714;3.6202698;8.221359 +17220;12;0.22034447;0.07065526;0.21015073;0.9498909 +17220;3;0.2190857;-0.021652222;-0.2876892 +17222;0;-0.019012451;3.6297607;8.249985 +17223;1;-0.4076926;4.413079;8.751836 +17223;3;0.21542358;-0.018600464;-0.28097534 +17225;4;13.093567;-0.59051514;-65.84625 +17225;6;-0.46202496;-0.41448227;0.0023045398 +17225;7;0.89473563;-0.4080168;0.18157785;0.0;0.4465913;0.8193547;-0.35946378;0.0;-0.002109401 +17226;0;-0.01423645;3.6345215;8.297668 +17226;3;0.21359253;-0.012481689;-0.27485657 +17226;12;0.22078234;0.070830636;0.2094495;0.9499312 +17228;0;-0.023803711;3.5870209;8.269058 +17228;2;-0.368627;0.77051735;0.48451424; +17228;1;-0.4124147;4.4208994;8.747666 +17229;3;0.20809937;-0.0069885254;-0.26690674 +17230;0;7.6293945E-5;3.5632477;8.221359 +17230;12;0.22120279;0.071015246;0.20877586;0.9499678 +17231;3;0.2032013;-0.002090454;-0.2571411 +17231;5;999.61896 +17232;0;0.03831482;3.525238;8.226135 +17232;1;-0.41717374;4.428257;8.743718 +17233;3;0.19770813;0.002166748;-0.24859619 +17234;4;12.643433;-1.1901855;-65.69672 +17234;6;-0.48187208;-0.4048623;-0.00465766 +17235;7;0.88696957;-0.4259729;0.17841572;0.0;0.46180812;0.8144912;-0.35119402;0.0;0.0042811036 +17235;0;0.066970825;3.4919891;8.230911 +17235;3;0.19282532;0.0033874512;-0.24064636 +17236;12;0.22159472;0.071202345;0.20814198;0.9500016 +17237;0;0.09562683;3.5205078;8.230911 +17237;3;0.18365479;0.0070648193;-0.23210144 +17237;1;-0.42177892;4.435146;8.740005 +17239;0;0.1290741;3.5014954;8.245209 +17240;12;0.22196184;0.071389034;0.20756376;0.9500284 +17240;3;0.17755127;0.0113220215;-0.22354126 +17242;0;0.119506836;3.5109863;8.302444 +17242;1;-0.426233;4.441418;8.736604 +17242;3;0.16777039;0.018051147;-0.2168274 +17244;4;13.093567;-1.3412476;-63.89618 +17244;6;-0.53628486;-0.4000414;-0.014393181 +17244;7;0.86238784;-0.47060415;0.18659848;0.0;0.5060746;0.79174197;-0.34210098;0.0;0.013256307 +17244;0;0.119506836;3.5394897;8.321533 +17245;3;0.15983582;0.024765015;-0.21009827 +17245;12;0.22229376;0.07157297;0.20702983;0.95005345 +17246;0;0.1290741;3.5585022;8.33107 +17247;1;-0.43089354;4.447027;8.7335205 +17247;3;0.15007019;0.033935547;-0.2033844 +17247;2;-0.55390275;0.93634605;0.45993614; +17249;0;0.10517883;3.6012573;8.311981 +17249;3;0.14151001;0.040649414;-0.19850159 +17250;12;0.22258663;0.07176925;0.20653783;0.9500771 +17251;0;0.09085083;3.6012573;8.288132 +17252;1;-0.4359885;4.451971;8.730749 +17252;3;0.13296509;0.047973633;-0.19421387 +17254;4;11.8927;-1.1901855;-65.69672 +17254;6;-0.4666715;-0.40987417;-0.010961118 +17254;7;0.8949823;-0.41265005;0.16948923;0.0;0.44598833;0.81909853;-0.36079335;0.0;0.010053017 +17254;0;0.03831482;3.5727692;8.302444 +17254;3;0.12562561;0.053482056;-0.19239807 +17255;12;0.22283532;0.07198221;0.2060531;0.95010805 +17256;0;0.023986816;3.5774994;8.316757 +17256;1;-0.4415797;4.456192;8.728314 +17256;3;0.11708069;0.056533813;-0.18873596 +17258;0;0.014419556;3.5870209;8.302444 +17259;12;0.22303696;0.07222368;0.20562689;0.9501347 +17259;3;0.11035156;0.05836487;-0.18688965 +17261;0;0.009643555;3.591751;8.33107 +17261;1;-0.44735783;4.459772;8.726191 +17261;3;0.099975586;0.05958557;-0.18566895 +17263;4;13.392639;-0.59051514;-64.34631 +17263;6;-0.4953471;-0.40704876;-0.0011575404 +17263;7;0.88002104;-0.43649885;0.18716788;0.0;0.47493362;0.8079179;-0.34886518;0.0;0.0010629613 +17264;0;-0.019012451;3.6487732;8.369217 +17264;3;0.0901947;0.05836487;-0.18139648 +17264;12;0.2232015;0.07247138;0.20521906;0.9501654 +17266;0;-0.06678772;3.6297607;8.41214 +17266;1;-0.45318422;4.462595;8.724447 +17266;2;-0.5147581;0.8784313;0.3844118; +17267;3;0.079193115;0.05897522;-0.18139648 +17268;0;-0.100234985;3.6915283;8.407364 +17269;12;0.22332314;0.07271647;0.20482364;0.9502033 +17269;3;0.07064819;0.056533813;-0.17956543 +17269;5;999.61896 +17270;0;-0.10978699;3.6962738;8.474136 +17271;1;-0.45897874;4.46461;8.723113 +17271;3;0.060256958;0.05531311;-0.17773438 +17273;4;14.593506;-3.440857;-66.14685 +17273;6;-0.53147584;-0.41127366;0.012954812 +17273;7;0.859363;-0.46454474;0.21376;0.0;0.5112281;0.79017484;-0.33803755;0.0;-0.011874208 +17273;0;-0.143219;3.7247925;8.507523 +17274;3;0.051101685;0.05531311;-0.17588806 +17274;12;0.2234002;0.072949894;0.20443691;0.9502506 +17275;0;-0.12890625;3.7152863;8.497986 +17276;3;0.04071045;0.053482056;-0.17407227 +17276;1;-0.46463045;4.46582;8.722195 +17278;0;-0.157547;3.7390442;8.555222 +17278;12;0.22343504;0.07316721;0.20406076;0.9503066 +17278;3;0.03338623;0.053482056;-0.16978455 +17280;0;-0.18144226;3.7628021;8.574295 +17280;1;-0.4701411;4.4662604;8.721674 +17281;3;0.022384644;0.051651;-0.1691742 +17282;4;13.842773;-2.090454;-66.44745 +17282;6;-0.46321747;-0.413458;0.021158028 +17282;7;0.890621;-0.40917766;0.19841291;0.0;0.45433325;0.8192361;-0.34990492;0.0;-0.019373745 +17283;0;-0.19577026;3.8293152;8.631531 +17283;3;0.013839722;0.05104065;-0.16795349 +17284;12;0.22343077;0.07337182;0.20369722;0.9503698 +17285;0;-0.22921753;3.8055573;8.669678 +17285;1;-0.4755418;4.465947;8.721541 +17285;2;-0.3575471;0.73873043;0.1702547; +17286;3;0.0034484863;0.051651;-0.16673279 +17289;9;2AEC2AEBC4E1;-59;-2147483648 +17290;12;0.22338408;0.073560335;0.20334353;0.950442 +17290;0;-0.16233826;3.8150635;8.669678 +17290;3;-0.004486084;0.053482056;-0.16612244 +17290;0;-0.18144226;3.8293152;8.717377 +17290;1;-0.48088032;4.4648395;8.721815 +17290;3;-0.012435913;0.05531311;-0.16673279 +17292;4;14.743042;-1.940918;-67.49725 +17292;6;-0.48213628;-0.41381857;0.020810856 +17292;7;0.88193476;-0.42453533;0.20484373;0.0;0.47098643;0.81122047;-0.34654483;0.0;-0.019052878 +17293;0;-0.20054626;3.8530579;8.745987 +17293;3;-0.022201538;0.057754517;-0.16795349 +17293;12;0.22329523;0.07374041;0.20299761;0.9505228 +17294;0;-0.20533752;3.8673248;8.750748 +17295;1;-0.486438;4.463043;8.722427 +17295;3;-0.03135681;0.05897522;-0.16795349 +17297;0;-0.21487427;3.8293152;8.76506 +17298;12;0.22316559;0.07392296;0.20265557;0.9506121 +17298;3;-0.041748047;0.060806274;-0.16856384 +17301;0;-0.21487427;3.8483124;8.807983 +17302;1;-0.4922011;4.4603825;8.723465 +17302;3;-0.049072266;0.064468384;-0.17222595 +17302;4;13.693237;-2.241516;-65.84625 +17302;6;-0.4593621;-0.4118075;0.02439056 +17302;7;0.89174086;-0.40630963;0.19927587;0.0;0.4519943;0.8214008;-0.34785318;0.0;-0.022349263 +17302;0;-0.18621826;3.843567;8.874756 +17303;3;-0.060073853;0.0663147;-0.17344666 +17303;12;0.22298744;0.07410396;0.20231472;0.9507124 +17306;1;-0.49819982;4.456947;8.72488 +17308;0;-0.18621826;3.8768158;8.889069 +17308;3;-0.07106018;0.06814575;-0.17466736 +17308;2;-0.3427164;0.6312599;-0.065060616; +17308;0;-0.16711426;3.8815765;8.912918 +17308;12;0.22276676;0.07428791;0.2019722;0.9508226 +17309;3;-0.08023071;0.0675354;-0.17529297 +17309;5;999.61896 +17309;0;-0.16711426;3.8910675;8.951065 +17310;1;-0.50430715;4.452631;8.726732 +17310;3;-0.09062195;0.06692505;-0.17466736 +17311;4;13.842773;-3.1402588;-66.14685 +17311;6;-0.49084646;-0.40999788;0.018667594 +17311;7;0.8782732;-0.432306;0.2043225;0.0;0.47785258;0.80884093;-0.34268534;0.0;-0.01711946 +17312;0;-0.17666626;3.862564;8.994003 +17312;3;-0.10343933;0.064468384;-0.17588806 +17313;12;0.22249505;0.07446681;0.20162857;0.95094514 +17315;0;-0.18621826;3.872055;8.984451 +17315;1;-0.51033884;4.4473724;8.729063 +17315;3;-0.11505127;0.060195923;-0.17466736 +17316;0;-0.20054626;3.8578186;9.036911 +17316;12;0.22217393;0.074631676;0.2012881;0.9510794 +17317;3;-0.12727356;0.053482056;-0.17222595 +17319;0;-0.16711426;3.862564;9.046463 +17319;1;-0.5159513;4.441078;8.731937 +17320;3;-0.13948059;0.045532227;-0.17163086 +17321;4;14.743042;-2.6901245;-66.29639 +17321;6;-0.519066;-0.4034761;0.018470783 +17321;7;0.86453754;-0.45623592;0.21076933;0.0;0.5022812;0.7985614;-0.3316828;0.0;-0.016986646 +17324;0;-0.18621826;3.8197937;9.079834 +17324;3;-0.15170288;0.036987305;-0.16795349 +17324;0;-0.171875;3.8150635;9.127518 +17325;12;0.22180037;0.07476163;0.20095176;0.95122755 +17325;1;-0.52081525;4.433695;8.735399 +17325;2;-0.38232327;0.59700584;-0.29442787; +17325;3;-0.16270447;0.027832031;-0.16551208 +17326;0;-0.16711426;3.796051;9.122772 +17326;12;0.22137624;0.074840754;0.20062;0.9513901 +17326;3;-0.1749115;0.018051147;-0.15940857 +17328;0;-0.15278625;3.796051;9.19429 +17330;1;-0.52471894;4.425315;8.739415 +17330;3;-0.18713379;0.008880615;-0.15634155 +17335;12;0.22090764;0.07485895;0.20029433;0.95156616 +17335;4;12.942505;-2.5405884;-66.14685 +17335;6;-0.4759849;-0.39150345;0.016615985 +17335;7;0.8858141;-0.42354396;0.18958881;0.0;0.4637861;0.8215889;-0.33150283;0.0;-0.015358054 +17335;0;-0.12890625;3.7817993;9.232452 +17336;3;-0.19691467;-2.746582E-4;-0.14901733 +17336;0;-0.11933899;3.8007965;9.289688 +17336;1;-0.52757376;4.4159427;8.743982 +17336;3;-0.2054596;-0.00881958;-0.14230347 +17336;0;-0.095443726;3.7865448;9.275375 +17336;12;0.22039607;0.074816994;0.19999135;0.95175177 +17337;3;-0.21461487;-0.013702393;-0.13435364 +17337;0;-0.11456299;3.7913055;9.299225 +17338;1;-0.5294374;4.405845;8.748962 +17338;3;-0.22012329;-0.021652222;-0.12580872 +17340;4;14.442444;-1.3412476;-66.596985 +17340;6;-0.51685464;-0.38710117;0.012319004 +17340;7;0.86701375;-0.4575847;0.19723915;0.0;0.4981535;0.8050501;-0.32208285;0.0;-0.011407198 +17340;0;-0.11456299;3.7342834;9.332611 +17340;3;-0.22683716;-0.027145386;-0.11846924 +17341;12;0.21985143;0.07472321;0.19971593;0.9519429 +17342;0;-0.08590698;3.729538;9.356461 +17343;1;-0.5303938;4.395143;8.754285 +17343;2;-0.4485141;0.641078;-0.5227051; +17343;3;-0.23171997;-0.035705566;-0.11114502 +17345;0;-0.07156372;3.7200317;9.365997 +17345;12;0.2192832;0.07458147;0.19947344;0.952136 +17345;3;-0.23600769;-0.041809082;-0.10258484 +17346;5;999.60504 +17347;0;-0.11456299;3.7105408;9.389847 +17347;1;-0.5304096;4.38402;8.75986 +17348;3;-0.24028015;-0.04852295;-0.09403992 +17349;4;14.593506;-1.1901855;-67.196655 +17349;6;-0.5273308;-0.3763061;0.012200125 +17349;7;0.86183286;-0.46801686;0.195459;0.0;0.50706536;0.80368716;-0.31140265;0.0;-0.011346182 +17350;0;-0.11456299;3.70578;9.423233 +17351;3;-0.2408905;-0.055252075;-0.0879364 +17351;12;0.21869917;0.07439565;0.19925807;0.95232993 +17352;0;-0.12890625;3.6725311;9.4756775 +17352;1;-0.5295726;4.372602;8.765615 +17353;3;-0.24394226;-0.060134888;-0.07937622 +17358;12;0.21810538;0.07416945;0.19907421;0.9525221 +17358;0;-0.147995;3.682022;9.513855 +17358;3;-0.24272156;-0.063186646;-0.0708313 +17358;0;-0.12411499;3.6915283;9.499542 +17358;1;-0.52800715;4.361091;8.771442 +17358;3;-0.2408905;-0.06562805;-0.06410217 +17359;4;13.693237;-1.3412476;-67.04712 +17359;6;-0.5066021;-0.3706121;0.013064622 +17359;7;0.8720277;-0.4522661;0.18714426;0.0;0.48930493;0.8150317;-0.3103289;0.0;-0.012177264 +17359;0;-0.138443;3.6867828;9.494766 +17359;3;-0.23905945;-0.06929016;-0.054336548 +17360;12;0.21751429;0.07391132;0.19892196;0.95270926 +17361;0;-0.15278625;3.6677704;9.523392 +17362;1;-0.52587616;4.3497577;8.777196 +17362;2;-0.44330055;0.6827946;-0.69870853; +17362;3;-0.23417664;-0.071746826;-0.045776367 +17364;0;-0.16233826;3.7105408;9.48999 +17364;12;0.21693653;0.07363518;0.19880171;0.95288736 +17364;3;-0.22988892;-0.075408936;-0.037231445 +17366;0;-0.17666626;3.682022;9.466141 +17366;1;-0.5231356;4.338783;8.78279 +17367;3;-0.2250061;-0.079071045;-0.029891968 +17368;4;14.593506;-2.090454;-64.94751 +17368;6;-0.5527681;-0.37090084;0.018660799 +17369;7;0.8473752;-0.4893427;0.20615299;0.0;0.53070974;0.7932024;-0.2986254;0.0;-0.017390877 +17369;0;-0.19099426;3.6915283;9.518616 +17369;3;-0.21951294;-0.08395386;-0.022583008 +17369;12;0.21638027;0.07334003;0.19871582;0.9530545 +17371;0;-0.19099426;3.7105408;9.4804535 +17371;1;-0.5197871;4.3283243;8.788148 +17371;3;-0.21339417;-0.087631226;-0.017074585 +17374;0;-0.21966553;3.7580414;9.451843 +17374;12;0.21585967;0.07302776;0.1986593;0.95320827 +17375;3;-0.20423889;-0.091293335;-0.008529663 +17376;0;-0.19099426;3.772293;9.40892 +17376;3;-0.19445801;-0.09434509;-0.003036499 +17376;1;-0.5158468;4.318573;8.793176 +17380;4;12.643433;-0.74157715;-65.69672 +17380;6;-0.442792;-0.3812344;0.020296488 +17380;7;0.90013736;-0.39770275;0.17772204;0.0;0.43519855;0.83868885;-0.32741904;0.0;-0.018838031 +17380;0;-0.24354553;3.7865448;9.365997 +17380;3;-0.18469238;-0.09617615;0.0012512207 +17380;12;0.21538077;0.07269907;0.19862653;0.9533486 +17381;0;-0.24354553;3.8055573;9.304001 +17381;1;-0.5114725;4.3097467;8.797761 +17381;2;-0.3515005;0.597229;-0.6538925; +17381;3;-0.17430115;-0.0967865;0.0055236816 +17383;0;-0.26264954;3.862564;9.246765 +17384;12;0.21495654;0.07236438;0.19861373;0.9534725 +17384;3;-0.16270447;-0.0980072;0.011016846 +17384;5;999.60504 +17385;0;-0.24832153;3.8483124;9.16568 +17385;1;-0.5068423;4.3019614;8.801838 +17386;3;-0.15170288;-0.09861755;0.015914917 +17388;4;11.593628;-0.440979;-63.29651 +17388;6;-0.38741183;-0.39737898;0.02708591 +17388;7;0.9215906;-0.34835508;0.17122898;0.0;0.38735902;0.8537432;-0.347959;0.0;-0.024972282 +17388;0;-0.27697754;3.9005737;9.108459 +17388;3;-0.13887024;-0.09861755;0.023239136 +17389;12;0.21459064;0.072028115;0.19859633;0.9535839 +17390;0;-0.3056488;3.933838;9.079834 +17390;1;-0.5019846;4.295313;8.805363 +17391;3;-0.12786865;-0.0980072;0.0287323 +17393;0;-0.29130554;3.9718475;8.960602 +17393;12;0.21428628;0.07170361;0.19861946;0.95367205 +17394;3;-0.116882324;-0.0980072;0.035461426 +17395;0;-0.3104248;3.9718475;8.927231 +17396;1;-0.4969184;4.2897997;8.808336 +17396;3;-0.10772705;-0.0967865;0.042785645 +17398;9;2AEC2AEBC4E1;-64;-2147483648 +17399;4;13.693237;-1.3412476;-65.84625 +17399;6;-0.4173311;-0.4183918;0.034758795 +17399;7;0.90789884;-0.37036037;0.19634861;0.0;0.41798475;0.8353205;-0.35711107;0.0;-0.03175423 +17399;0;-0.3199768;3.9908295;8.831833 +17399;3;-0.09855652;-0.09617615;0.04827881 +17399;12;0.21404155;0.07138803;0.19866695;0.9537408 +17400;0;-0.3295288;4.0478516;8.731674 +17400;1;-0.49168646;4.285272;8.810834 +17400;2;-0.24145347;0.37245512;-0.21191978; +17400;3;-0.093063354;-0.09617615;0.055007935 +17402;0;-0.3343048;4.085861;8.664902 +17402;12;0.21385239;0.0710824;0.19874184;0.9537904 +17403;3;-0.08389282;-0.09617615;0.059280396 +17406;0;-0.3390808;4.109619;8.583832 +17406;1;-0.48625857;4.281569;8.812935 +17406;3;-0.07778931;-0.09617615;0.06416321 +17407;4;13.842773;-2.090454;-68.096924 +17407;6;-0.38232028;-0.4462104;0.039481737 +17407;7;0.9207235;-0.33654615;0.19749646;0.0;0.3885876;0.8369595;-0.38535497;0.0;-0.03560679 +17407;0;-0.3438568;4.123871;8.536133 +17407;3;-0.072906494;-0.09739685;0.07028198 +17408;12;0.21370563;0.07078114;0.198839;0.9538255 +17409;0;-0.36297607;4.180893;8.497986 +17410;1;-0.48063332;4.2785673;8.814701 +17410;3;-0.06800842;-0.09861755;0.07455444 +17412;0;-0.3390808;4.2473907;8.393066 +17412;12;0.21360004;0.07048332;0.19895744;0.95384645 +17413;3;-0.06556702;-0.09861755;0.07699585 +17414;0;-0.36775208;4.252136;8.354904 +17414;1;-0.4747686;4.276144;8.8161955 +17415;3;-0.06373596;-0.10105896;0.08065796 +17416;4;13.392639;-1.940918;-65.84625 +17416;6;-0.35420087;-0.47038206;0.04398792 +17417;7;0.9301042;-0.30917236;0.19828962;0.0;0.36519834;0.83606094;-0.4094293;0.0;-0.039197974 +17417;0;-0.39640808;4.3186646;8.335815 +17417;3;-0.06251526;-0.10166931;0.083099365 +17417;12;0.21352331;0.0701855;0.19909213;0.9538575 +17419;0;-0.38208008;4.3614197;8.230911 +17419;1;-0.46872562;4.274046;8.817535 +17419;2;-0.15359288;0.09192753;0.35188007; +17419;3;-0.061294556;-0.103500366;0.08432007 +17421;0;-0.40119934;4.413666;8.2118225 +17422;12;0.21346729;0.0698837;0.1992381;0.9538617 +17422;3;-0.060073853;-0.10227966;0.08494568 +17423;5;999.60504 +17424;0;-0.42507935;4.44693;8.125992 +17425;3;-0.060684204;-0.10473633;0.08494568 +17425;1;-0.462609;4.2722316;8.818738 +17428;4;13.542175;0.1586914;-64.497375 +17428;6;-0.31308445;-0.5001524;0.052263435 +17428;7;0.94237316;-0.27026817;0.19720016;0.0;0.3314082;0.83485204;-0.4395345;0.0;-0.04584078 +17428;12;0.21342535;0.06958206;0.19938673;0.95386213 +17428;0;-0.41073608;4.465927;8.106903 +17428;3;-0.061294556;-0.10533142;0.08432007 +17431;1;-0.45642245;4.270533;8.819882 +17432;12;0.21339007;0.06927855;0.19953535;0.95386106 +17432;0;-0.4298401;4.546707;8.097366 +17432;3;-0.06312561;-0.10777283;0.08370972 +17432;0;-0.4298401;4.537201;8.049683 +17432;3;-0.06251526;-0.10595703;0.08370972 +17434;1;-0.45020974;4.268864;8.82101 +17435;0;-0.43940735;4.5894623;8.016281 +17435;3;-0.06312561;-0.107177734;0.08248901 +17436;4;12.792969;0.30975342;-65.097046 +17436;6;-0.2731748;-0.5193202;0.054759566 +17436;7;0.95414746;-0.23421988;0.186396;0.0;0.2955413;0.8359648;-0.46240467;0.0;-0.047516134 +17436;0;-0.44418335;4.6084595;8.016281 +17436;3;-0.06373596;-0.10899353;0.08126831 +17437;12;0.2133565;0.068973094;0.19968069;0.9538603 +17438;0;-0.4202881;4.5847015;8.001968 +17439;1;-0.44394878;4.267203;8.822131 +17439;2;-0.061840147;-0.23050594;0.7287569; +17439;3;-0.064956665;-0.10961914;0.08126831 +17441;0;-0.45373535;4.660721;7.9638214 +17441;12;0.21332395;0.0686642;0.19982202;0.95386016 +17441;3;-0.06617737;-0.11021423;0.083099365 +17443;0;-0.45373535;4.6654816;7.973358 +17443;1;-0.43764466;4.265554;8.823243 +17444;3;-0.064956665;-0.11021423;0.08187866 +17445;4;14.442444;-1.6403198;-66.596985 +17445;6;-0.31593087;-0.52871245;0.05684512 +17445;7;0.9400681;-0.26827744;0.21047413;0.0;0.33743975;0.8207228;-0.4610302;0.0;-0.049056906 +17446;0;-0.45373535;4.693985;7.935196 +17446;3;-0.06678772;-0.11021423;0.08187866 +17446;12;0.21329165;0.0683525;0.19996259;0.95386034 +17448;0;-0.40119934;4.717743;7.9256744 +17448;1;-0.4313461;4.263982;8.824313 +17448;3;-0.06739807;-0.10961914;0.08126831 +17451;0;-0.44418335;4.760498;7.9161377 +17451;12;0.21326445;0.068041645;0.200102;0.9538595 +17452;3;-0.06617737;-0.107177734;0.08004761 +17453;0;-0.40119934;4.7652435;7.9161377 +17453;1;-0.4251498;4.2624416;8.825357 +17453;9;52ADB5BC186F;-81;-2147483648 +17454;3;-0.06800842;-0.10411072;0.0776062 +17456;4;11.743164;-0.59051514;-65.097046 +17456;6;-0.24804501;-0.5412971;0.05063787 +17456;7;0.9617487;-0.21041153;0.1754031;0.0;0.27047628;0.83081067;-0.48641145;0.0;-0.043380193 +17456;0;-0.43463135;4.7700043;7.901825 +17456;3;-0.07044983;-0.099227905;0.07577515 +17456;12;0.21323626;0.06773569;0.20023952;0.95385873 +17457;0;-0.38685608;4.7794952;7.906601 +17458;1;-0.41931027;4.2608137;8.826424 +17458;2;-0.033450514;-0.44155025;0.88266945; +17458;3;-0.07473755;-0.09434509;0.07455444 +17460;0;-0.39163208;4.7557526;7.9208984 +17460;12;0.21319892;0.06744428;0.20037213;0.95385987 +17461;3;-0.077178955;-0.087005615;0.07209778 +17463;5;999.60504 +17463;1;-0.41398928;4.2588754;8.82761 +17463;0;-0.40119934;4.784256;7.9256744 +17463;3;-0.08328247;-0.08029175;0.06906128 +17465;4;12.342834;0.009155273;-65.84625 +17465;6;-0.2566775;-0.5425258;0.05057704 +17465;7;0.9593755;-0.21741468;0.17980404;0.0;0.27879038;0.8283503;-0.48591313;0.0;-0.043296084 +17465;0;-0.39640808;4.73674;7.9304504 +17465;12;0.21313985;0.06717578;0.20049696;0.95386577 +17465;3;-0.08755493;-0.071121216;0.067840576 +17467;0;-0.38685608;4.7747498;7.9590607 +17467;1;-0.40939984;4.2564993;8.82897 +17467;3;-0.092453;-0.06135559;0.066604614 +17469;0;-0.41073608;4.7747498;7.9542847 +17470;12;0.21305066;0.06694112;0.20062625;0.953875 +17470;3;-0.09489441;-0.050964355;0.06477356 +17472;0;-0.38208008;4.750992;7.98291 +17472;1;-0.40570444;4.2537603;8.830461 +17472;3;-0.09855652;-0.04058838;0.06355286 +17474;4;13.842773;-1.4907837;-66.14685 +17474;6;-0.31419244;-0.5363396;0.047825757 +17474;7;0.9424089;-0.26565346;0.20320825;0.0;0.3319286;0.817505;-0.47064745;0.0;-0.04109463 +17474;0;-0.40119934;4.7747498;7.9685974 +17475;3;-0.10221863;-0.029586792;0.062942505 +17475;12;0.21293166;0.066747986;0.20076059;0.95388687 +17477;1;-0.40296048;4.250724;8.832048 +17477;0;-0.40119934;4.7557526;8.016281 +17477;3;-0.10588074;-0.020431519;0.0605011 +17477;2;-0.049191505;-0.49068308;0.8620682; +17479;0;-0.41552734;4.7414856;8.011505 +17479;12;0.21278457;0.066601835;0.20090093;0.95390034 +17479;3;-0.11076355;-0.011260986;0.059890747 +17481;0;-0.39163208;4.7462463;8.068741 +17481;1;-0.40109745;4.247292;8.833784 +17481;3;-0.11627197;-0.0014953613;0.058670044 +17484;4;13.693237;-0.29144287;-66.29639 +17484;6;-0.301636;-0.5312035;0.048498888 +17484;7;0.9464331;-0.2561442;0.19660775;0.0;0.32018322;0.8232714;-0.4687293;0.0;-0.04179926 +17484;0;-0.39163208;4.7224884;8.09259 +17485;3;-0.121154785;0.005844116;0.058059692 +17486;12;0.21260701;0.06649524;0.20104459;0.9539171 +17486;0;-0.41552734;4.703491;8.111679 +17486;1;-0.4000343;4.243346;8.835728 +17486;3;-0.12849426;0.012542725;0.055618286 +17488;0;-0.40596008;4.7224884;8.159363 +17489;12;0.21239354;0.06642661;0.2011958;0.95393753 +17489;3;-0.13459778;0.018051147;0.05378723 +17491;0;-0.39163208;4.6987305;8.202286 +17491;1;-0.3995925;4.2388015;8.83793 +17491;3;-0.14315796;0.023544312;0.050109863 +17494;4;12.042236;-0.59051514;-65.84625 +17494;6;-0.26744246;-0.51973075;0.047710467 +17494;7;0.957093;-0.22937016;0.17709415;0.0;0.28680915;0.8370971;-0.4658421;0.0;-0.04139473 +17494;0;-0.39640808;4.693985;8.254761 +17495;3;-0.15048218;0.03086853;0.047668457 +17496;12;0.2121403;0.06638144;0.20134783;0.95396495 +17496;1;-0.39978686;4.233496;8.840464 +17496;0;-0.42507935;4.6417236;8.297668 +17496;2;-0.038051277;-0.45512867;0.67890835; +17496;3;-0.15904236;0.0345459;0.047058105 +17498;0;-0.40596008;4.6654816;8.33107 +17499;12;0.21184027;0.066359185;0.2014949;0.95400214 +17499;3;-0.16452026;0.036376953;0.044006348 +17500;5;999.60504 +17500;0;-0.40119934;4.646469;8.340591 +17501;1;-0.40038678;4.2275057;8.843303 +17501;3;-0.17185974;0.038208008;0.04095459 +17503;4;11.8927;-0.14038086;-65.24658 +17503;6;-0.2679871;-0.50777996;0.048064977 +17503;7;0.9570061;-0.23138122;0.17493436;0.0;0.2870133;0.84263563;-0.4556189;0.0;-0.041984264 +17504;0;-0.38685608;4.6322327;8.378754 +17504;3;-0.1749115;0.040039062;0.037902832 +17504;12;0.21150057;0.06634626;0.20163254;0.95404935 +17508;1;-0.401264;4.2209525;8.846392 +17508;0;-0.4202881;4.6179657;8.397842 +17508;9;2AEC2AEBC4E1;-55;-2147483648 +17509;3;-0.18103027;0.03942871;0.036071777 +17509;0;-0.41552734;4.61322;8.478897 +17509;12;0.21112722;0.06634172;0.20176844;0.9541036 +17509;3;-0.18347168;0.040649414;0.033615112 +17512;0;-0.36297607;4.5847015;8.502762 +17512;3;-0.18652344;0.03942871;0.031784058 +17512;1;-0.40225443;4.213882;8.849717 +17513;4;13.542175;0.45928955;-65.69672 +17513;6;-0.3252897;-0.4941346;0.042663295 +17513;7;0.9402315;-0.2813546;0.19184454;0.0;0.33845955;0.8342108;-0.43535912;0.0;-0.037548497 +17513;0;-0.35820007;4.5419617;8.540909 +17513;3;-0.1895752;0.037597656;0.031784058 +17514;12;0.21072535;0.066331886;0.20189765;0.95416576 +17515;0;-0.3534088;4.556198;8.583832 +17516;1;-0.4031807;4.2065687;8.853154 +17516;2;-0.057447493;-0.38182163;0.3977852; +17516;3;-0.1895752;0.03515625;0.034240723 +17517;0;-0.3295288;4.513443;8.607666 +17518;12;0.21031293;0.06631522;0.20201886;0.95423234 +17518;3;-0.18896484;0.036987305;0.034240723 +17520;0;-0.26264954;4.4897003;8.612442 +17520;1;-0.4038819;4.1990356;8.856698 +17520;3;-0.18591309;0.036376953;0.034851074 +17522;4;13.542175;0.45928955;-66.44745 +17522;6;-0.35251123;-0.48035464;0.030487074 +17522;7;0.93320936;-0.3061835;0.1880743;0.0;0.35831478;0.83229864;-0.42295322;0.0;-0.027032696 +17523;0;-0.2817688;4.4516907;8.6792145 +17523;3;-0.18286133;0.03881836;0.03668213 +17523;12;0.20988995;0.06628456;0.20214556;0.95430064 +17524;0;-0.2722168;4.4089203;8.693527 +17525;1;-0.40458438;4.1916466;8.860165 +17525;3;-0.17918396;0.03942871;0.039123535 +17529;12;0.20947549;0.06625747;0.20227711;0.95436573 +17529;0;-0.24832153;4.3994293;8.70784 +17529;3;-0.1724701;0.041870117;0.04156494 +17531;1;-0.40525505;4.184564;8.8634815 +17532;0;-0.20533752;4.370926;8.750748 +17532;3;-0.16819763;0.04309082;0.043395996 +17532;4;12.942505;-0.440979;-64.497375 +17532;6;-0.3807156;-0.46313086;0.023460835 +17532;7;0.92424923;-0.3324415;0.18773942;0.0;0.38121253;0.8305997;-0.4059325;0.0;-0.020987503 +17532;0;-0.22442627;4.3281555;8.803207 +17533;3;-0.16207886;0.04675293;0.047058105 +17533;12;0.20907557;0.06623487;0.20242018;0.95442474 +17534;0;-0.19577026;4.323395;8.784149 +17535;1;-0.40598598;4.177849;8.866615 +17535;2;-0.19607857;-0.21462202;0.15108871; +17535;3;-0.1565857;0.048599243;0.050735474 +17537;0;-0.147995;4.3091583;8.78891 +17537;12;0.20869757;0.06622142;0.20257549;0.9544754 +17537;3;-0.14741516;0.052871704;0.054397583 +17538;5;999.6022 +17539;0;-0.12411499;4.290146;8.836609 +17539;1;-0.40671554;4.1716747;8.869488 +17539;3;-0.14009094;0.056533813;0.058670044 +17541;4;13.542175;-0.440979;-66.14685 +17541;6;-0.41570327;-0.45193917;0.014044622 +17541;7;0.9122655;-0.3632893;0.18918908;0.0;0.40940443;0.8229851;-0.39380637;0.0;-0.0126341535 +17542;0;-0.16711426;4.266403;8.874756 +17542;3;-0.13337708;0.060806274;0.0617218 +17543;12;0.20834467;0.06622097;0.20274778;0.954516 +17547;0;-0.13366699;4.2711487;8.898605 +17547;1;-0.4076495;4.1660953;8.872067 +17547;3;-0.12361145;0.06263733;0.06538391 +17547;12;0.20802227;0.06624069;0.20294052;0.95454395 +17547;0;-0.11933899;4.2426453;8.889069 +17547;3;-0.11566162;0.065704346;0.06965637 +17548;0;-0.12890625;4.214142;8.908142 +17549;3;-0.10650635;0.07119751;0.07272339 +17549;1;-0.40863627;4.1612115;8.874313 +17551;4;13.093567;0.30975342;-65.54718 +17551;6;-0.4042522;-0.44182897;0.0144696 +17551;7;0.9168671;-0.35556018;0.18147115;0.0;0.39897838;0.83110815;-0.3873958;0.0;-0.013079644 +17551;0;-0.12890625;4.2188873;8.931976 +17551;3;-0.09794617;0.07241821;0.07699585 +17552;12;0.20773461;0.066277094;0.2031501;0.9545595 +17554;0;-0.11933899;4.1713715;8.898605 +17555;1;-0.40980166;4.1570406;8.876215 +17555;2;-0.31934372;-0.07284784;-0.012727737; +17555;3;-0.089401245;0.07424927;0.08004761 +17556;0;-0.15278625;4.209381;8.927231 +17557;12;0.2074831;0.066335924;0.2033774;0.9545617 +17557;3;-0.07962036;0.07546997;0.08370972 +17558;0;-0.157547;4.1713715;8.941528 +17558;1;-0.41099977;4.153625;8.877758 +17561;3;-0.07106018;0.076690674;0.086761475 +17562;12;0.20727105;0.06640724;0.20361762;0.95455164 +17562;4;12.792969;-1.0406494;-64.64691 +17562;6;-0.41459852;-0.43644446;0.017617872 +17562;7;0.9121363;-0.3650621;0.18637908;0.0;0.4095761;0.82948035;-0.37974975;0.0;-0.015965553 +17562;0;-0.143219;4.1951294;8.912918 +17562;3;-0.06434631;0.077301025;0.087387085 +17563;0;-0.138443;4.190384;8.922455 +17563;1;-0.41216594;4.1509504;8.878955 +17563;3;-0.056411743;0.077301025;0.09286499 +17565;0;-0.12890625;4.214142;8.941528 +17566;12;0.20709851;0.066488475;0.20386991;0.95452946 +17566;3;-0.047851562;0.076690674;0.09593201 +17569;1;-0.41316617;4.148972;8.879833 +17569;0;-0.12411499;4.2188873;8.931976 +17569;3;-0.04296875;0.07546997;0.10020447 +17570;4;12.643433;-0.440979;-66.14685 +17570;6;-0.39750394;-0.44123462;0.013894686 +17570;7;0.9196442;-0.3500419;0.17811611;0.0;0.39255172;0.8337228;-0.38834196;0.0;-0.012563519 +17570;0;-0.143219;4.199875;8.922455 +17570;3;-0.037475586;0.07424927;0.10386658 +17571;12;0.20696346;0.066573784;0.20413649;0.95449597 +17573;0;-0.15278625;4.214142;8.927231 +17573;1;-0.41395372;4.1475134;8.880478 +17573;2;-0.31512767;-0.03609419;-0.058540344; +17573;3;-0.033813477;0.07180786;0.106933594 +17576;12;0.20685796;0.06665704;0.20441732;0.9544529 +17576;0;-0.138443;4.2046356;8.917694 +17576;3;-0.029525757;0.06997681;0.111816406 +17576;5;999.6022 +17577;0;-0.12411499;4.2188873;8.884293 +17577;1;-0.41440424;4.1464534;8.880952 +17577;3;-0.025253296;0.065078735;0.114868164 +17579;4;13.542175;0.45928955;-64.19678 +17579;6;-0.42377368;-0.44330478;0.013969251 +17579;7;0.908991;-0.371456;0.18909219;0.0;0.41662478;0.8234331;-0.38520363;0.0;-0.01261856 +17580;0;-0.12411499;4.2188873;8.912918 +17580;3;-0.020965576;0.06324768;0.11791992 +17580;12;0.20677678;0.066730365;0.20471066;0.95440245 +17582;0;-0.11933899;4.2283936;8.860458 +17582;1;-0.4144191;4.1457887;8.881262 +17582;3;-0.016082764;0.05958557;0.12219238 +17584;0;-0.13366699;4.223633;8.874756 +17585;12;0.20672037;0.066790275;0.20501837;0.9543444 +17585;3;-0.01121521;0.056533813;0.1252594 +17587;0;-0.12411499;4.2426453;8.884293 +17587;1;-0.41403663;4.14556;8.881386 +17587;3;-0.008148193;0.055923462;0.12892151 +17589;4;13.243103;0.45928955;-66.89758 +17589;6;-0.39745703;-0.44548446;0.013969252 +17589;7;0.91962856;-0.3492972;0.17965232;0.0;0.39258707;0.83205837;-0.3918604;0.0;-0.012605472 +17589;0;-0.11933899;4.2616425;8.836609 +17590;3;-0.0020446777;0.052261353;0.13258362 +17590;12;0.20669201;0.06683687;0.20533642;0.954279 +17592;0;-0.13366699;4.299652;8.812759 +17592;1;-0.41334423;4.1457934;8.8813095 +17592;2;-0.3306682;-0.073617935;-0.0022172928; +17592;3;0.0022277832;0.05104065;0.13563538 +17594;0;-0.10978699;4.275894;8.779373 +17595;12;0.20669013;0.06687613;0.20566696;0.95420545 +17595;3;0.0058898926;0.049819946;0.13929749 +17596;0;-0.095443726;4.313904;8.755524 +17597;1;-0.41233134;4.146476;8.881038 +17597;3;0.012619019;0.048599243;0.1399231 +17599;4;12.193298;-0.14038086;-65.69672 +17599;6;-0.37723237;-0.45777228;0.010900541 +17599;7;0.92785794;-0.33042338;0.17291632;0.0;0.37280566;0.8339663;-0.40683672;0.0;-0.00977802 +17599;0;-0.047683716;4.3186646;8.726913 +17600;3;0.01689148;0.04737854;0.14419556 +17600;12;0.20671657;0.06690388;0.20600188;0.9541255 +17601;0;-0.01423645;4.3614197;8.722153 +17601;1;-0.411025;4.147697;8.880528 +17601;3;0.024215698;0.044921875;0.14724731 +17604;0;-0.057235718;4.375656;8.674438 +17604;12;0.20677349;0.06692955;0.20635298;0.9540354 +17604;3;0.028503418;0.04248047;0.14846802 +17607;0;-0.019012451;4.404175;8.626755 +17607;3;0.03338623;0.040649414;0.15090942 +17607;1;-0.4094323;4.1495185;8.87975 +17616;2;-0.41053474;-0.19591856;0.18449402; +17616;1;-0.4075621;4.15183;8.878756 +17616;12;0.20686576;0.06694759;0.20671365;0.95393616 +17616;12;0.20698448;0.06696073;0.20708013;0.9538299 +17616;4;13.842773;0.45928955;-65.24658 +17616;6;-0.4272212;-0.4720312;0.0022038904 +17616;7;0.90970325;-0.36903346;0.19040573;0.0;0.41525432;0.81059575;-0.41291434;0.0;-0.0019628855 +17618;17;1;38dead6d7725;7473;1275;-66; +17618;17;1;38dead6d60ff;6718;843;-58; +17619;17;1;1c1bb5efa29a;5516;1298;-64; +17619;17;1;1c1bb5ecd182;2266;3499;-71; +17619;0;0.009643555;4.4279175;8.593384 +17619;3;0.038269043;0.040039062;0.15274048 +17621;1;-0.40547353;4.1545568;8.877577 +17621;0;-0.0046844482;4.4421844;8.593384 +17621;12;0.20712726;0.0669685;0.20745073;0.9537178 +17621;3;0.041931152;0.037597656;0.15518188 +17621;0;0.014419556;4.470688;8.607666 +17621;3;0.047439575;0.036987305;0.15579224 +17621;5;999.6022 +17621;0;0.014419556;4.456436;8.569519 +17621;3;0.050491333;0.036376953;0.15640259 +17621;4;13.693237;0.009155273;-65.84625 +17621;6;-0.42652243;-0.47954506;-0.0016826547 +17621;7;0.9107298;-0.3670432;0.18934228;0.0;0.41300002;0.8077203;-0.42073646;0.0;0.001492859 +17621;0;0.028747559;4.4754486;8.564758 +17621;3;0.054763794;0.036376953;0.1570282 +17621;0;0.019195557;4.4754486;8.593384 +17621;1;-0.40330857;4.157636;8.876233 +17621;3;0.0572052;0.033935547;0.1600647 +17626;0;0.052627563;4.556198;8.54567 +17626;12;0.20729151;0.06697764;0.207824;0.95360035 +17626;3;0.059036255;0.032714844;0.16252136 +17626;1;-0.40091684;4.1610603;8.874737 +17627;0;0.0048675537;4.560959;8.555222 +17627;3;0.059036255;0.032104492;0.16435242 +17629;4;12.042236;-0.59051514;-65.54718 +17629;6;-0.3792205;-0.4897911;-5.6895695E-4 +17629;7;0.9290525;-0.3266729;0.17362723;0.0;0.36994776;0.81973755;-0.4372289;0.0;5.0206535E-4 +17629;12;0.20747228;0.06698238;0.20820479;0.95347756 +17629;0;0.023986816;4.5419617;8.564758 +17629;3;0.06147766;0.032104492;0.16740417 +17631;0;0.028747559;4.5847015;8.593384 +17631;3;0.059646606;0.032714844;0.17045593 +17631;1;-0.39838603;4.1645665;8.873206 +17632;2;-0.468066;-0.3345399;0.2891245; +17634;12;0.20766157;0.066983014;0.20859513;0.95335096 +17634;0;0.023986816;4.627472;8.574295 +17634;3;0.060256958;0.032714844;0.17411804 +17635;1;-0.39574736;4.1681547;8.871639 +17635;0;0.03831482;4.6417236;8.54567 +17637;3;0.05781555;0.033935547;0.17840576 +17639;4;13.842773;0.45928955;-64.94751 +17639;6;-0.42327735;-0.49757758;-0.004483506 +17639;7;0.91261744;-0.36094368;0.19196084;0.0;0.40879554;0.8011904;-0.43701276;0.0;0.003939829 +17639;0;0.03352356;4.636963;8.550446 +17640;3;0.054153442;0.032714844;0.18145752 +17640;12;0.20785384;0.066981606;0.2089991;0.95322067 +17640;1;-0.3929793;4.1716013;8.870142 +17640;0;0.03352356;4.6654816;8.559982 +17641;3;0.050491333;0.033325195;0.18511963 +17644;0;0.0048675537;4.7082367;8.579071 +17645;12;0.20803937;0.06697785;0.20942241;0.9530876 +17645;3;0.04559326;0.033935547;0.18878174 +17645;0;-0.0046844482;4.717743;8.626755 +17645;1;-0.39013147;4.174756;8.868783 +17645;3;0.042541504;0.0345459;0.1918335 +17647;4;13.392639;0.009155273;-66.29639 +17647;6;-0.3974064;-0.5004395;5.430139E-4 +17647;7;0.92196697;-0.33956757;0.18620113;0.0;0.3872683;0.80899626;-0.4422083;0.0;-4.76425E-4 +17648;0;-0.019012451;4.6987305;8.631531 +17648;3;0.03643799;0.03515625;0.19551086 +17648;12;0.20820636;0.06696936;0.2098626;0.9529549 +17650;0;-0.019012451;4.727234;8.6792145 +17650;1;-0.387213;4.1775336;8.867603 +17650;2;-0.44589755;-0.48566675;0.26506615; +17650;3;0.028503418;0.038208008;0.19917297 +17652;0;-0.01423645;4.7462463;8.6839905 +17652;12;0.20835458;0.06695644;0.21032286;0.9528219 +17652;3;0.021774292;0.038208008;0.20039368 +17658;1;-0.38433495;4.1797132;8.866702 +17658;0;-0.028564453;4.7462463;8.6839905 +17658;3;0.015060425;0.038208008;0.20222473 +17658;5;999.6022 +17659;4;13.842773;-1.1901855;-64.94751 +17659;6;-0.42485508;-0.5001893;0.0032893117 +17659;7;0.9104433;-0.36169222;0.20067808;0.0;0.41362375;0.7994814;-0.43559706;0.0;-0.0028863386 +17659;0;-0.057235718;4.7652435;8.73645 +17659;3;0.0058898926;0.038208008;0.20405579 +17659;12;0.20846826;0.06694264;0.2107969;0.95269316 +17659;0;-0.047683716;4.793747;8.726913 +17659;1;-0.38143396;4.181278;8.866089 +17660;3;-0.0032653809;0.037597656;0.20710754 +17662;12;0.20854814;0.06692106;0.2112814;0.95256996 +17663;0;-0.07156372;4.750992;8.784149 +17663;3;-0.008773804;0.036987305;0.2089386 +17663;0;-0.07156372;4.7462463;8.812759 +17664;1;-0.37842456;4.1820736;8.865842 +17664;3;-0.017303467;0.036376953;0.21076965 +17666;4;12.792969;0.30975342;-64.34631 +17666;6;-0.37875798;-0.49400803;0.008120288 +17666;7;0.92767024;-0.32555726;0.18286696;0.0;0.37333193;0.818038;-0.43753523;0.0;-0.0071493443 +17666;0;-0.09068298;4.7462463;8.850922 +17666;3;-0.025253296;0.03515625;0.21199036 +17667;12;0.2085873;0.06688721;0.21177891;0.9524532 +17668;0;-0.11933899;4.727234;8.855682 +17669;2;-0.36069304;-0.5571122;0.09052658; +17669;3;-0.03440857;0.032714844;0.21565247 +17669;1;-0.37533155;4.1821785;8.865924 +17671;0;-0.10978699;4.7462463;8.860458 +17671;3;-0.039916992;0.03086853;0.21688843 +17672;12;0.20859106;0.066842474;0.21228525;0.9523428 +17673;0;-0.10978699;4.7414856;8.874756 +17673;1;-0.37198302;4.1816144;8.866332 +17674;3;-0.047851562;0.027832031;0.21932983 +17676;4;12.942505;-0.440979;-64.19678 +17676;6;-0.38550496;-0.49065185;0.012370074 +17676;7;0.924346;-0.33166564;0.1886327;0.0;0.3813992;0.81729287;-0.4319341;0.0;-0.010910448 +17676;0;-0.143219;4.7414856;8.927231 +17677;3;-0.053359985;0.02293396;0.21932983 +17677;12;0.20856033;0.0667783;0.21280047;0.9522391 +17683;0;-0.12411499;4.73674;8.960602 +17684;1;-0.36833814;4.1804323;8.867042 +17684;3;-0.0594635;0.018051147;0.22116089 +17684;12;0.2084998;0.066690266;0.21332441;0.9521413 +17684;1;-0.36419412;4.1787434;8.868008 +17684;0;-0.100234985;4.7082367;8.965378 +17684;3;-0.06251526;0.013763428;0.22238159 +17684;0;-0.08590698;4.6892242;9.013062 +17684;3;-0.06556702;0.009506226;0.2236023 +17685;4;13.243103;0.1586914;-64.94751 +17685;6;-0.3962472;-0.4797131;0.009531098 +17685;7;0.92077625;-0.3423949;0.18691401;0.0;0.38999957;0.81838924;-0.42206597;0.0;-0.008455171 +17685;0;-0.07635498;4.6987305;9.075058 +17685;3;-0.06983948;0.0046081543;0.22421265 +17686;12;0.20841731;0.06657136;0.21385132;0.95204943 +17687;0;-0.042907715;4.703491;9.051224 +17688;1;-0.3595945;4.1767335;8.8691435 +17688;3;-0.07106018;9.460449E-4;0.224823 +17688;2;-0.30911702;-0.53140783;-0.10485935; +17690;0;-0.042907715;4.703491;9.098923 +17690;12;0.20832458;0.066425525;0.21438017;0.951961 +17690;3;-0.07167053;-0.002090454;0.224823 +17692;5;999.6063 +17692;0;-0.042907715;4.670227;9.103683 +17692;1;-0.35463822;4.174531;8.870379 +17693;3;-0.07044983;-0.004547119;0.22421265 +17694;4;13.842773;-0.14038086;-64.94751 +17694;6;-0.42956853;-0.47399217;0.0047131907 +17694;7;0.9082394;-0.37056315;0.19438115;0.0;0.41842982;0.80891514;-0.4130046;0.0;-0.004193561 +17695;0;-0.028564453;4.6559753;9.127518 +17695;3;-0.06739807;-0.006378174;0.22238159 +17696;12;0.20822439;0.066258684;0.21490674;0.9518758 +17697;1;-0.34948888;4.1723585;8.871606 +17697;0;-0.019012451;4.660721;9.213379 +17698;3;-0.06312561;-0.0082092285;0.22055054 +17699;0;0.0048675537;4.622711;9.222916 +17700;12;0.20812829;0.0660805;0.21542864;0.9517912 +17700;3;-0.057632446;-0.0069885254;0.21932983 +17702;0;0.028747559;4.6322327;9.261063 +17702;1;-0.3442715;4.1704707;8.872698 +17702;3;-0.05458069;-0.006378174;0.21688843 +17704;4;13.542175;-0.14038086;-64.94751 +17704;6;-0.44378066;-0.46379268;-0.003104122 +17704;7;0.9037267;-0.38400072;0.18926562;0.0;0.42810085;0.80772984;-0.4053422;0.0;0.0027762053 +17704;0;0.028747559;4.6084595;9.299225 +17705;3;-0.049682617;-0.0069885254;0.21565247 +17705;12;0.20804986;0.06590092;0.21594095;0.9517048 +17707;0;0.08129883;4.61322;9.346909 +17707;1;-0.33912537;4.168864;8.873651 +17707;2;-0.38976902;-0.46496153;-0.34324265; +17707;3;-0.045410156;-0.007598877;0.21383667 +17709;0;0.08129883;4.61322;9.375534 +17710;12;0.20798725;0.06572592;0.21644473;0.95161605 +17710;3;-0.03930664;-0.009429932;0.21321106 +17711;0;0.09085083;4.57045;9.418457 +17712;1;-0.3339249;4.167606;8.874438 +17712;3;-0.036849976;-0.009429932;0.21076965 +17714;4;15.04364;-0.59051514;-64.64691 +17714;6;-0.5158657;-0.4517722;-0.009645742 +17714;7;0.8719027;-0.44379884;0.20694973;0.0;0.4896022;0.7825966;-0.38448963;0.0;0.008677898 +17715;0;0.09085083;4.5752106;9.4852295 +17715;3;-0.032577515;-0.011260986;0.20710754 +17716;12;0.2079429;0.065551795;0.21693991;0.951525 +17716;0;0.114746094;4.537201;9.470917 +17717;1;-0.32872552;4.166583;8.8751135 +17717;3;-0.027694702;-0.014312744;0.20344543 +17719;0;0.1338501;4.522949;9.54245 +17719;12;0.2079128;0.065377116;0.21742307;0.9514333 +17719;3;-0.02281189;-0.015533447;0.19978333 +17721;0;0.1290741;4.522949;9.552002 +17721;1;-0.32341984;4.165872;8.875642 +17721;3;-0.017929077;-0.018600464;0.19551086 +17723;4;13.093567;-0.59051514;-65.54718 +17723;6;-0.47118217;-0.44219497;-0.013511957 +17724;7;0.8935756;-0.41027755;0.182195;0.0;0.44874665;0.80532795;-0.38739303;0.0;0.012211932 +17724;0;0.1386261;4.5181885;9.590164 +17724;3;-0.014862061;-0.024093628;0.1906128 +17724;12;0.20790324;0.06519889;0.21788874;0.9513411 +17726;0;0.1529541;4.5181885;9.628311 +17726;1;-0.31803182;4.1654906;8.876016 +17727;2;-0.48498115;-0.3697753;-0.6394758; +17727;3;-0.01121521;-0.02897644;0.18634033 +17729;0;0.17684937;4.513443;9.633072 +17729;3;-0.0075531006;-0.0320282;0.18328857 +17729;12;0.20791449;0.065013885;0.21832784;0.9512506 +17732;5;999.6063 +17732;0;0.19593811;4.513443;9.714157 +17732;1;-0.31234476;4.165352;8.876283 +17732;3;-0.0032653809;-0.03692627;0.18023682 +17734;17;1;38dead6d7725;7076;941;-62; +17736;17;1;38dead6d60ff;7100;894;-59; +17737;17;1;1c1bb5efa29a;1619;2847;-65; +17737;17;1;1c1bb5ecd182;4010;2823;-68; +17738;4;13.392639;-0.29144287;-65.097046 +17738;6;-0.49800232;-0.43487182;-0.020167632 +17738;7;0.88241816;-0.43321174;0.18348244;0.0;0.47011033;0.7967678;-0.37968072;0.0;0.018289272 +17738;0;0.21505737;4.5514526;9.733231 +17738;3;-0.0014343262;-0.04058838;0.17655945 +17738;12;0.20794448;0.06481194;0.21874362;0.9511623 +17738;1;-0.3064247;4.1655054;8.876416 +17738;0;0.23893738;4.546707;9.737991 +17738;3;0.0010070801;-0.04425049;0.17533875 +17738;0;0.22940063;4.5989685;9.761841 +17739;12;0.20799534;0.064598605;0.21913911;0.9510747 +17739;3;0.005279541;-0.047302246;0.17289734 +17740;1;-0.30028656;4.165933;8.876427 +17741;0;0.24848938;4.6322327;9.776154 +17741;3;0.008956909;-0.0491333;0.16923523 +17743;4;13.693237;-1.0406494;-65.54718 +17743;6;-0.5176926;-0.44236812;-0.025412437 +17743;7;0.87406576;-0.44723982;0.18969862;0.0;0.48526454;0.78531724;-0.3844411;0.0;0.022963773 +17743;0;0.23893738;4.712982;9.838165 +17744;3;0.010772705;-0.050354004;0.16740417 +17744;12;0.20806557;0.0643752;0.21952024;0.95098656 +17745;0;0.24848938;4.7700043;9.833389 +17745;1;-0.29410076;4.1667295;8.876259 +17746;3;0.015060425;-0.049743652;0.16679382 +17746;2;-0.56980175;-0.42608595;-0.88479996; +17748;0;0.29148865;4.803253;9.885849 +17748;12;0.20815715;0.06414931;0.21988513;0.9508975 +17748;3;0.019332886;-0.046691895;0.16557312 +17750;1;-0.2879635;4.1678996;8.875911 +17750;0;0.3106079;4.907776;9.962158 +17750;3;0.024215698;-0.04119873;0.16496277 +17754;4;12.643433;-0.74157715;-64.94751 +17755;6;-0.48475942;-0.45755115;-0.031168679 +17755;7;0.89077246;-0.41806176;0.17818151;0.0;0.4535886;0.79377514;-0.40518916;0.0;0.027958045 +17755;0;0.33448792;4.9933014;9.990768 +17755;3;0.026657104;-0.0332489;0.16618347 +17755;12;0.2082705;0.06393001;0.22024155;0.950805 +17755;0;0.28193665;5.0788116;10.000305 +17755;1;-0.28230867;4.1695557;8.875315 +17756;3;0.029724121;-0.019195557;0.16679382 +17757;0;0.30104065;5.1263123;10.033691 +17758;12;0.20840251;0.06374514;0.22060335;0.9507045 +17758;3;0.03338623;-0.0039367676;0.16862488 +17761;0;0.25805664;5.221344;10.062302 +17761;3;0.03338623;0.013168335;0.17045593 +17761;1;-0.27774552;4.171574;8.87451 +17763;4;14.143372;0.7598877;-65.097046 +17763;6;-0.47853333;-0.47851986;-0.025640264 +17763;7;0.89281553;-0.40875572;0.18920694;0.0;0.4498473;0.7879658;-0.42041337;0.0;0.022757791 +17763;0;0.22940063;5.287857;10.057541 +17763;3;0.032165527;0.033325195;0.17228699 +17764;12;0.20854093;0.06362572;0.22098087;0.9505946 +17765;1;-0.27467772;4.1737556;8.87358 +17765;0;0.19117737;5.330597;10.110016 +17765;2;-0.60244125;-0.90847397;-1.1464367; +17765;3;0.027877808;0.05531311;0.17533875 +17768;0;0.1386261;5.3828583;10.110016 +17768;3;0.024215698;0.076690674;0.17840576 +17768;12;0.20866668;0.063590124;0.22138257;0.9504758 +17772;5;999.6063 +17772;0;0.057418823;5.4493866;10.138611 +17772;1;-0.27345213;4.1757326;8.872687 +17772;3;0.01689148;0.096847534;0.18023682 +17773;4;12.643433;-1.1901855;-65.24658 +17773;6;-0.41162792;-0.49318007;-0.005663321 +17773;7;0.91752875;-0.35242242;0.18422665;0.0;0.39763823;0.8072566;-0.4361431;0.0;0.004988407 +17773;0;-0.047683716;5.5253906;10.152924 +17774;3;0.009552002;0.117004395;0.17962646 +17776;12;0.20875877;0.06365545;0.22181371;0.95035076 +17776;0;-0.11456299;5.5919037;10.143387 +17776;1;-0.27411392;4.1772857;8.871936 +17777;3;0.0010070801;0.13717651;0.17962646 +17777;0;-0.24832153;5.625183;10.172012 +17777;12;0.20880316;0.06381812;0.22227466;0.9502224 +17777;3;-0.0069274902;0.15184021;0.17655945 +17779;0;-0.3438568;5.625183;10.195847 +17779;1;-0.27665558;4.178188;8.871433 +17780;3;-0.02281189;0.16404724;0.17350769 +17782;4;13.243103;-0.440979;-65.69672 +17782;6;-0.33623496;-0.5039172;0.033712406 +17782;7;0.93809736;-0.28892353;0.19104044;0.0;0.34511164;0.8266618;-0.4444413;0.0;-0.02951629 +17782;0;-0.4298401;5.625183;10.224472 +17782;3;-0.040527344;0.17260742;0.16984558 +17782;12;0.2087871;0.06406974;0.22275011;0.95009756 +17784;1;-0.28053686;4.1778364;8.871477 +17784;0;-0.5158386;5.6204224;10.234009 +17784;2;-0.14562652;-1.3677688;-1.3065386; +17784;3;-0.057022095;0.17687988;0.16374207 +17789;12;0.20868863;0.06437442;0.22322471;0.94998723 +17789;0;-0.6687012;5.634674;10.248322 +17789;3;-0.07778931;0.17687988;0.15762329 +17790;1;-0.2852593;4.175924;8.872227 +17790;0;-0.73558044;5.601425;10.305542 +17790;3;-0.100997925;0.17382812;0.15029907 +17792;4;13.243103;-0.440979;-65.69672 +17792;6;-0.26617268;-0.496801;0.071256325 +17792;7;0.9534107;-0.23124233;0.1937401;0.0;0.29511157;0.8481537;-0.4399372;0.0;-0.06258928 +17792;0;-0.835907;5.5919037;10.310318 +17792;3;-0.12542725;0.16894531;0.14602661 +17792;12;0.20849723;0.06469374;0.2236788;0.94990075 +17794;1;-0.29024383;4.1719613;8.873929 +17794;0;-0.9553375;5.5634003;10.338928 +17795;3;-0.15292358;0.16099548;0.1387024 +17797;0;-1.0269775;5.487381;10.400925 +17798;3;-0.17736816;0.14938354;0.13075256 +17798;12;0.20819297;0.064994276;0.2241123;0.9498449 +17798;1;-0.2949269;4.165714;8.876709 +17799;0;-1.0699768;5.458893;10.424774 +17799;3;-0.20301819;0.14021301;0.12219238 +17801;4;12.342834;1.05896;-65.097046 +17802;6;-0.1772591;-0.48023498;0.10227973 +17802;7;0.970869;-0.1563867;0.18153924;0.0;0.22184128;0.8729895;-0.43436822;0.0;-0.09055243 +17802;0;-1.1129761;5.387619;10.448624 +17803;3;-0.22927856;0.12983704;0.11364746 +17804;12;0.20777452;0.06523744;0.22450887;0.9498261 +17804;1;-0.29924327;4.1570582;8.880621 +17804;2;0.5962192;-1.340889;-1.4918518; +17804;0;-1.1702881;5.330597;10.453384 +17804;3;-0.25309753;0.1182251;0.10449219 +17806;0;-1.1846313;5.264099;10.45816 +17806;12;0.20723484;0.065420866;0.22486928;0.94984615 +17806;3;-0.27386475;0.10601807;0.09164429 +17808;1;-0.303006;4.1462917;8.885526 +17808;5;999.6063 +17808;0;-1.1702881;5.188095;10.501083 +17809;3;-0.29281616;0.09257507;0.078826904 +17811;4;12.342834;1.05896;-65.097046 +17811;6;-0.1666202;-0.45643264;0.11098654 +17811;7;0.97198725;-0.1488723;0.18187349;0.0;0.21297063;0.88519925;-0.4136012;0.0;-0.099420495 +17811;0;-1.1416473;5.1263123;10.515396 +17811;3;-0.30992126;0.08157349;0.06843567 +17812;12;0.20659462;0.065527715;0.2251569;0.94991004 +17813;1;-0.30617407;4.133733;8.891267 +17813;0;-1.1846313;5.059799;10.577393 +17814;3;-0.32214355;0.0687561;0.05378723 +17816;12;0.20586708;0.06557313;0.22540441;0.9500062 +17816;0;-1.1894073;4.9457855;10.615555 +17817;3;-0.33251953;0.05470276;0.039733887 +17817;1;-0.30882797;4.119812;8.897634 +17817;0;-1.1894073;4.841263;10.644165 +17818;3;-0.33924866;0.041870117;0.024459839 +17821;4;12.792969;-0.29144287;-66.29639 +17821;6;-0.19248869;-0.42452803;0.11128102 +17821;7;0.9667097;-0.17432092;0.18730873;0.0;0.23501523;0.8944038;-0.38053855;0.0;-0.101193815 +17826;12;0.20507981;0.06555767;0.2255827;0.95013523 +17827;0;-1.1894073;4.7700043;10.653702 +17827;3;-0.34291077;0.029052734;0.009185791 +17827;1;-0.31094342;4.105106;8.904354 +17827;0;-1.1559601;4.6654816;10.59169 +17827;3;-0.34106445;0.0113220215;-0.006088257 +17827;2;0.8152751;-0.86846113;-1.6713247; +17827;0;-1.1511993;4.594223;10.567856 +17827;3;-0.33374023;-0.0082092285;-0.018295288 +17827;12;0.20426467;0.065486684;0.22568262;0.950292 +17828;1;-0.31213462;4.090368;8.911092 +17828;0;-1.0890961;4.480179;10.586929 +17828;3;-0.32029724;-0.027145386;-0.030517578 +17832;12;0.20346284;0.065346666;0.22569294;0.9504712 +17832;4;12.792969;-0.29144287;-66.29639 +17832;6;-0.22612603;-0.3984426;0.10251116 +17832;7;0.9605247;-0.20664117;0.1862573;0.0;0.26171914;0.89820284;-0.35317814;0.0;-0.0943157 +17832;0;-1.0699768;4.347168;10.586929 +17832;3;-0.30503845;-0.043029785;-0.040893555 +17832;0;-0.98876953;4.3043976;10.648941 +17832;1;-0.31211847;4.076434;8.917476 +17832;3;-0.28303528;-0.055252075;-0.048843384 +17835;0;-0.90278625;4.199875;10.663239 +17835;12;0.20272571;0.0651398;0.22563754;0.95065606 +17835;3;-0.25738525;-0.06440735;-0.05555725 +17837;0;-0.86935425;4.0763702;10.639404 +17837;1;-0.31120035;4.064099;8.923136 +17837;3;-0.22927856;-0.071121216;-0.060440063 +17839;4;12.942505;0.9094238;-64.94751 +17839;6;-0.3032907;-0.36477682;0.08152967 +17839;7;0.94251174;-0.27901134;0.1839135;0.0;0.32539698;0.89156526;-0.31500494;0.0;-0.07608095 +17839;0;-0.850235;4.0145874;10.663239 +17839;3;-0.19506836;-0.07234192;-0.06349182 +17839;12;0.20208715;0.064900585;0.22552727;0.9508345 +17841;0;-0.7785797;3.9480896;10.586929 +17841;1;-0.3098832;4.054091;8.927733 +17841;3;-0.16026306;-0.071746826;-0.06594849 +17841;2;0.60471654;-0.1812644;-1.6966629; +17845;0;-0.73080444;3.8293152;10.563095 +17845;3;-0.11993408;-0.06990051;-0.064712524 +17845;12;0.2015808;0.06466336;0.22538137;0.9509927 +17847;1;-0.30855203;4.047007;8.930993 +17849;12;0.20123069;0.06445827;0.2252129;0.9511207 +17849;5;999.608 +17849;0;-0.68782043;3.7770538;10.567856 +17850;3;-0.07839966;-0.0650177;-0.06227112 +17850;4;12.942505;0.9094238;-64.94751 +17850;6;-0.3627992;-0.34259123;0.06499442 +17850;7;0.92519003;-0.33426887;0.17968793;0.0;0.37454122;0.88057715;-0.29034933;0.0;-0.06117433 +17850;0;-0.57315063;3.6535187;10.59169 +17850;3;-0.03503418;-0.05708313;-0.05921936 +17851;1;-0.30736873;4.0433164;8.932706 +17851;0;-0.5397186;3.5965118;10.563095 +17851;3;0.008331299;-0.04547119;-0.054336548 +17853;17;1;38dead6d7725;8125;498;-64; +17853;17;1;38dead6d60ff;4397;764;-63; +17854;17;1;1c1bb5efa29a;1762;1034;-67; +17854;17;1;1c1bb5ecd182;3512;4284;-66; +17855;12;0.20105967;0.06431048;0.22505465;0.9512043 +17856;0;-0.46328735;3.5062408;10.477234 +17856;3;0.051101685;-0.030197144;-0.050064087 +17856;0;-0.4298401;3.4634857;10.443863 +17856;1;-0.30688766;4.0432305;8.932761 +17856;3;0.09263611;-0.016159058;-0.044555664 +17857;4;13.542175;0.9094238;-65.69672 +17857;6;-0.46316057;-0.31996295;0.04113398 +17858;7;0.88810945;-0.42410263;0.17719674;0.0;0.45797157;0.84923905;-0.26278332;0.0;-0.039035298 +17858;0;-0.34864807;3.368454;10.381866 +17858;3;0.13356018;-0.0014953613;-0.037841797 +17858;12;0.20107037;0.06425042;0.22491534;0.95123905 +17860;0;-0.3438568;3.268692;10.362778 +17860;1;-0.30731988;4.0466113;8.931214 +17860;2;0.1599245;0.5013375;-1.5702114; +17860;3;0.1726532;0.015609741;-0.03540039 +17862;0;-0.3056488;3.2401886;10.315094 +17863;12;0.20125164;0.06429079;0.22480264;0.9512246 +17863;3;0.21115112;0.03149414;-0.028671265 +17865;0;-0.26264954;3.1831818;10.224472 +17865;1;-0.3088838;4.053256;8.928147 +17865;3;0.24719238;0.045532227;-0.023803711 +17868;12;0.20159453;0.06443829;0.22471453;0.9511628 +17868;4;14.143372;0.30975342;-65.84625 +17868;6;-0.5575147;-0.30172476;0.025682675 +17869;7;0.8442553;-0.505178;0.17896442;0.0;0.53538007;0.8102387;-0.23849837;0.0;-0.024519775 +17869;0;-0.25787354;3.1974335;10.129074 +17869;3;0.28018188;0.05531311;-0.019515991 +17869;0;-0.23399353;3.145172;10.033691 +17870;1;-0.31134945;4.06299;8.923636 +17870;3;0.3131714;0.06692505;-0.015853882 +17872;0;-0.18144226;3.1499176;9.952621 +17872;12;0.20208886;0.06467778;0.22465397;0.951056 +17873;3;0.34431458;0.073638916;-0.012191772 +17875;1;-0.31440684;4.075528;8.9178095 +17875;0;-0.143219;3.135666;9.847702 +17875;3;0.37057495;0.07913208;-0.010971069 +17877;4;13.093567;0.7598877;-65.84625 +17877;6;-0.52904457;-0.30823484;0.014542368 +17877;7;0.86097187;-0.48092216;0.16565476;0.0;0.508464;0.82260334;-0.25453532;0.0;-0.013856505 +17877;0;-0.138443;3.135666;9.747543 +17877;3;0.39440918;0.0834198;-0.008529663 +17877;12;0.20272486;0.06499008;0.22461106;0.9509095 +17879;0;-0.11933899;3.0976562;9.613998 +17879;1;-0.31780422;4.0903864;8.910883 +17879;2;-0.16004783;0.9452896;-1.0810986; +17879;3;0.4151764;0.0846405;-0.0066986084 +17881;0;-0.10978699;3.08815;9.504303 +17882;12;0.20347925;0.06535276;0.22457504;0.95073205 +17882;3;0.43411255;0.08279419;-0.0079193115 +17884;0;-0.07635498;3.1261597;9.385086 +17884;1;-0.32120585;4.1070924;8.903074 +17884;3;0.45121765;0.07913208;-0.009140015 +17885;5;999.608 +17886;4;12.342834;0.30975342;-65.84625 +17886;6;-0.50947773;-0.32152945;0.008135599 +17886;7;0.8717165;-0.4627272;0.1612259;0.0;0.48994967;0.8282609;-0.2719065;0.0;-0.0077185906 +17887;0;-0.06201172;3.1071625;9.227692 +17887;3;0.46343994;0.07180786;-0.009140015 +17887;12;0.20433588;0.065736756;0.22452106;0.9505345 +17889;0;-0.06678772;3.1261597;9.14183 +17889;1;-0.32424748;4.125264;8.894559 +17890;3;0.47505188;0.064468384;-0.010971069 +17892;0;-0.052444458;3.1641693;8.994003 +17892;12;0.20527531;0.066124946;0.22447182;0.95031685 +17892;3;0.48542786;0.05897522;-0.012802124 +17895;0;-0.038131714;3.202179;8.941528 +17895;1;-0.32672608;4.1445317;8.885506 +17895;3;0.49458313;0.052261353;-0.017700195 +17896;4;13.693237;1.05896;-64.64691 +17896;6;-0.53167176;-0.34389123;0.0042645377 +17897;7;0.86122394;-0.47729155;0.17460248;0.0;0.50820976;0.8114928;-0.288448;0.0;-0.004014836 +17897;0;-0.12411499;3.3542175;8.86998 +17897;12;0.20628394;0.066499464;0.22440492;0.950088 +17898;3;0.5019226;0.047973633;-0.023803711 +17899;0;-0.033355713;3.2971954;8.774612 +17899;1;-0.32893133;4.164744;8.875969 +17899;2;-0.306697;0.9992986;-0.23918056; +17900;3;0.5110779;0.04675293;-0.032958984 +17901;0;0.10997009;3.1261597;8.65538 +17901;12;0.2073389;0.06685287;0.22431095;0.94985574 +17902;3;0.51597595;0.046157837;-0.037231445 +17904;0;0.1434021;3.0738983;8.402588 +17904;1;-0.33096224;4.1853886;8.866177 +17904;3;0.52085876;0.043701172;-0.037841797 +17906;4;14.743042;-0.29144287;-63.89618 +17906;6;-0.632793;-0.35065797;-0.017064765 +17906;7;0.80972815;-0.5554108;0.1893654;0.0;0.58658636;0.75730824;-0.2870552;0.0;0.016025543 +17906;0;0.066970825;3.0834198;8.273819 +17907;3;0.5251312;0.033935547;-0.037231445 +17907;12;0.20842814;0.067207605;0.22418047;0.9496231 +17908;0;-0.009475708;3.1926727;8.354904 +17908;1;-0.33286178;4.206528;8.856095 +17909;3;0.5294037;0.026611328;-0.03845215 +17911;0;-0.033355713;3.2734528;8.378754 +17911;12;0.20954826;0.0675625;0.22403698;0.9493853 +17911;3;0.53001404;0.030273438;-0.037231445 +17914;0;-0.06678772;3.3637238;8.369217 +17914;1;-0.33444592;4.2280955;8.845759 +17914;3;0.5269623;0.038208008;-0.036621094 +17916;4;13.392639;-0.29144287;-64.34631 +17916;6;-0.4966324;-0.38214615;0.007979994 +17916;7;0.8777463;-0.44209823;0.184691;0.0;0.4790687;0.81577295;-0.3240493;0.0;-0.0074042906 +17917;0;-0.09068298;3.3827057;8.221359 +17919;3;0.52085876;0.051651;-0.03540039 +17919;12;0.21069753;0.06790396;0.22388482;0.9491424 +17920;0;-0.12411499;3.4017181;8.073517 +17920;2;-0.38519076;1.0316458;0.48288155; +17920;1;-0.3367803;4.249575;8.835372 +17921;3;0.517807;0.065078735;-0.034179688 +17921;12;0.21183124;0.06828612;0.22374423;0.94889575 +17923;0;-0.17666626;3.4064636;7.997223 +17923;3;0.51597595;0.07852173;-0.029296875 +17924;1;-0.3402799;4.2708006;8.824998 +17924;0;-0.18621826;3.3732147;7.939972 +17924;3;0.51168823;0.09196472;-0.026855469 +17924;5;999.608 +17926;4;13.542175;-1.1901855;-64.19678 +17926;6;-0.46279532;-0.40163586;0.023448965 +17926;7;0.8904699;-0.41092378;0.19546114;0.0;0.45453018;0.82360166;-0.3392384;0.0;-0.021580983 +17926;0;-0.16711426;3.358963;7.863678 +17928;3;0.50497437;0.1023407;-0.025024414 +17928;12;0.21293443;0.068724684;0.22362505;0.94864523 +17929;1;-0.34474158;4.291693;8.814683 +17929;0;-0.21009827;3.3969727;7.7587433 +17930;3;0.4982605;0.11090088;-0.022583008 +17930;0;-0.24832153;3.4777374;7.773056 +17931;12;0.21401158;0.0692195;0.22353417;0.9483883 +17931;3;0.49031067;0.117004395;-0.017700195 +17933;0;-0.28652954;3.5062408;7.782593 +17933;1;-0.34994128;4.312248;8.8044405 +17933;3;0.4799347;0.12556458;-0.013412476 +17937;4;13.093567;-0.29144287;-66.29639 +17937;6;-0.37392548;-0.42303562;0.036800098 +17937;7;0.92475325;-0.3330726;0.1841034;0.0;0.37908566;0.848839;-0.3684652;0.0;-0.033548485 +17937;0;-0.3199768;3.5870209;7.773056 +17937;3;0.46710205;0.1341095;-0.0079193115 +17937;12;0.21505964;0.06975191;0.22346514;0.9481284 +17940;0;-0.3390808;3.615509;7.7921295 +17940;3;0.45365906;0.14511108;-0.004257202 +17940;2;-0.1628404;0.8864479;0.9475994; +17940;1;-0.35562927;4.3317714;8.794623 +17944;0;-0.40596008;3.6725311;7.734909 +17944;3;0.4335022;0.15428162;6.4086914E-4 +17944;12;0.21604468;0.070303604;0.22342825;0.9478723 +17944;1;-0.36217102;4.3504095;8.7851515 +17944;0;-0.42507935;3.70578;7.6586 +17944;3;0.4163971;0.16221619;0.0055236816 +17945;4;13.693237;-0.59051514;-65.54718 +17945;6;-0.34125552;-0.45005926;0.055446643 +17945;7;0.93281883;-0.30134445;0.19758682;0.0;0.35687402;0.84849876;-0.3907568;0.0;-0.049899764 +17946;12;0.21697068;0.070893474;0.22341889;0.9476191 +17946;0;-0.48239136;3.7105408;7.6204376 +17946;3;0.39562988;0.1658783;0.010406494 +17947;0;-0.49195862;3.7580414;7.5822906 +17947;1;-0.36917555;4.3674383;8.776405 +17947;3;0.3718109;0.16770935;0.015914917 +17954;12;0.21780398;0.071493246;0.22344981;0.94737554 +17954;0;-0.5158386;3.8150635;7.5775146 +17954;3;0.34553528;0.16770935;0.020187378 +17954;1;-0.3761968;4.3825936;8.768549 +17956;0;-0.57315063;3.8293152;7.548889 +17956;3;0.3168335;0.16526794;0.023239136 +17956;4;13.542175;-1.7913818;-66.44745 +17956;6;-0.28640524;-0.46828708;0.07577977 +17956;7;0.9468591;-0.2520919;0.19976877;0.0;0.3144741;0.8559937;-0.4103423;0.0;-0.06755682 +17956;0;-0.64004517;3.8815765;7.558426 +17956;3;0.2862854;0.15916443;0.026290894 +17956;12;0.21853206;0.07207913;0.22351143;0.9471489 +17957;0;-0.63049316;3.9148254;7.4916687 +17957;1;-0.38297448;4.395453;8.761817 +17957;3;0.2545166;0.15487671;0.0287323 +17957;2;0.08952665;0.62925863;1.1530294; +17960;0;-0.65437317;3.9053192;7.5441284 +17960;3;0.21847534;0.1506195;0.031784058 +17960;12;0.21913786;0.07262173;0.22359432;0.9469479 +17962;1;-0.38924325;4.405559;8.756463 +17962;0;-0.64482117;3.9100647;7.567978 +17962;3;0.18182373;0.14266968;0.037902832 +17962;5;999.608 +17964;4;13.842773;-3.1402588;-66.14685 +17964;6;-0.28498492;-0.4754125;0.0849986 +17964;7;0.9452768;-0.24996531;0.20968811;0.0;0.31741813;0.8532427;-0.41379035;0.0;-0.07548162 +17965;0;-0.65914917;3.9148254;7.5775146 +17965;3;0.14089966;0.1328888;0.042175293 +17965;12;0.21959972;0.073103815;0.22369313;0.9467805 +17966;0;-0.73080444;3.9148254;7.601364 +17967;3;0.10057068;0.12251282;0.04888916 +17967;1;-0.3947333;4.412506;8.752719 +17971;12;0.21989775;0.073510684;0.22382128;0.94664955 +17971;0;-0.6925812;3.9005737;7.606125 +17971;3;0.058425903;0.11212158;0.054397583 +17975;0;-0.71170044;3.9243164;7.653824 +17975;1;-0.39911732;4.4160047;8.750755 +17975;3;0.012619019;0.0993042;0.059280396 +17975;4;13.392639;-1.6403198;-67.49725 +17975;6;-0.23449032;-0.47203124;0.092719644 +17975;7;0.95867354;-0.20693931;0.19524668;0.0;0.27229604;0.86627215;-0.41884068;0.0;-0.082462154 +17975;0;-0.72125244;3.9243164;7.7062836 +17975;3;-0.029525757;0.08769226;0.066604614 +17975;12;0.2200214;0.07382025;0.22397947;0.9465592 +17976;0;-0.74513245;3.933838;7.7492065 +17976;3;-0.072906494;0.077301025;0.07394409 +17977;1;-0.4022948;4.415797;8.750714 +17977;2;0.24587029;0.51935387;1.11273; +17979;12;0.21995798;0.07402332;0.22416611;0.946514 +17979;0;-0.7403717;3.938568;7.787369 +17979;3;-0.11505127;0.06692505;0.079437256 +17980;1;-0.4042846;4.412001;8.752538 +17981;0;-0.7403717;3.938568;7.815979 +17981;3;-0.15414429;0.057144165;0.08554077 +17982;4;14.292908;-2.5405884;-64.94751 +17982;6;-0.28831446;-0.46498;0.09444359 +17983;7;0.9424285;-0.25414878;0.21734062;0.0;0.3236102;0.8569372;-0.40116712;0.0;-0.08429112 +17983;0;-0.7642517;3.872055;7.8779755 +17983;3;-0.1932373;0.04737854;0.09164429 +17984;12;0.21971025;0.074123345;0.22438598;0.9465115 +17985;0;-0.75468445;3.872055;7.9638214 +17985;3;-0.23049927;0.040649414;0.099594116 +17987;17;1;38dead6d7725;7559;769;-60; +17988;17;1;38dead6d60ff;6681;908;-64; +17988;17;1;1c1bb5efa29a;4480;1078;-65; +17989;17;1;1c1bb5ecd182;5591;1469;-66; +17991;1;-0.40521115;4.404738;8.756151 +17991;0;-0.802475;3.8815765;8.1689 +17991;12;0.21928601;0.07412828;0.22463869;0.94654965 +17991;3;-0.26654053;0.03881836;0.10874939 +17991;1;-0.4052633;4.394216;8.761435 +17991;0;-0.7260437;3.8673248;8.230911 +17991;3;-0.30014038;0.041870117;0.11853027 +17993;4;12.193298;-1.4907837;-64.497375 +17993;6;-0.24119245;-0.43775135;0.08798168 +17993;7;0.9584009;-0.21633786;0.18618713;0.0;0.27410632;0.8794904;-0.3890531;0.0;-0.07958286 +17993;0;-0.6639252;3.7675476;8.41214 +17993;12;0.21869251;0.0740464;0.22493553;0.94662285 +17993;3;-0.33068848;0.041259766;0.12585449 +17995;0;-0.63526917;3.6867828;8.455063 +17995;1;-0.40483528;4.380629;8.768256 +17995;2;0.27805018;0.5477624;0.66689587; +17995;3;-0.36428833;0.044921875;0.13136292 +17997;0;-0.6925812;3.6867828;8.526611 +17997;3;-0.39483643;0.04675293;0.13929749 +17997;12;0.21793793;0.07391736;0.22528714;0.9467233 +17999;0;-0.73080444;3.6677704;8.631531 +17999;1;-0.4044008;4.3642426;8.7764435 +18000;3;-0.42781067;0.045532227;0.1423645 +18000;5;999.608 +18001;4;12.643433;-1.7913818;-66.14685 +18001;6;-0.27935162;-0.4005249;0.08446539 +18001;7;0.94873756;-0.25391003;0.18821982;0.0;0.30636835;0.88515896;-0.35018867;0.0;-0.07768805 +18002;0;-0.7833557;3.6867828;8.784149 +18002;3;-0.45896912;0.045532227;0.14785767 +18002;12;0.21703415;0.0737522;0.22564442;0.9468587 +18004;0;-0.7738037;3.6915283;8.893829 +18004;1;-0.40382499;4.344968;8.786028 +18004;3;-0.48768616;0.045532227;0.15029907 +18011;12;0.21597296;0.07355247;0.22607425;0.94701433 +18011;1;-0.40310943;4.323291;8.796747 +18011;0;-0.7738037;3.6582794;9.003525 +18011;3;-0.5121155;0.044921875;0.15396118 +18011;0;-0.802475;3.615509;9.08461 +18011;3;-0.5365448;0.043701172;0.1570282 +18011;4;13.392639;-1.3412476;-64.64691 +18011;6;-0.32224023;-0.37743202;0.08810478 +18011;7;0.9345797;-0.2944016;0.19972111;0.0;0.34622243;0.88176525;-0.3203435;0.0;-0.08179752 +18011;0;-0.8120117;3.548996;9.170456 +18012;3;-0.5560913;0.041259766;0.1600647 +18012;12;0.21478225;0.07331845;0.22652674;0.9471952 +18013;0;-0.840683;3.4872284;9.275375 +18014;1;-0.40219548;4.2993097;8.808535 +18014;2;0.32973352;0.69117546;-0.12574577; +18014;3;-0.5762634;0.0345459;0.16374207 +18016;0;-0.87890625;3.449234;9.332611 +18016;12;0.2134707;0.07304827;0.22700296;0.9473985 +18017;3;-0.5927429;0.025375366;0.16618347 +18018;0;-0.90278625;3.4207153;9.4423065 +18018;1;-0.4007275;4.273709;8.821051 +18019;3;-0.609848;0.012542725;0.16862488 +18021;4;14.593506;-2.090454;-65.69672 +18021;6;-0.38042876;-0.3461139;0.09532103 +18021;7;0.91230124;-0.34929875;0.21376817;0.0;0.39961275;0.8734434;-0.27821976;0.0;-0.089532584 +18021;0;-0.883667;3.3304443;9.532913 +18021;3;-0.62635803;-0.002090454;0.17045593 +18022;12;0.21207991;0.07272646;0.22748902;0.94761896 +18023;0;-0.897995;3.358963;9.585388 +18023;1;-0.39813066;4.246522;8.834289 +18024;3;-0.6422272;-0.01737976;0.17045593 +18025;0;-0.9219055;3.3542175;9.666458 +18026;12;0.2106243;0.07232804;0.22797981;0.9478561 +18026;3;-0.6526184;-0.035705566;0.16923523 +18028;0;-0.91233826;3.3209534;9.718933 +18028;1;-0.3942305;4.218027;8.848104 +18028;3;-0.6629944;-0.054641724;0.16801453 +18030;4;14.442444;-1.3412476;-65.097046 +18030;6;-0.3924687;-0.3279211;0.09359798 +18031;7;0.90841043;-0.36209026;0.20900056;0.0;0.40860945;0.87473315;-0.26053867;0.0;-0.08848119 +18031;0;-0.874115;3.3019562;9.771393 +18031;3;-0.6697235;-0.07662964;0.16618347 +18032;12;0.20911625;0.07183905;0.22846028;0.9481116 +18033;0;-0.89323425;3.268692;9.790451 +18033;1;-0.3887055;4.188624;8.862306 +18033;2;0.46413773;0.8632941;-0.75674534; +18033;3;-0.673996;-0.09617615;0.16374207 +18035;0;-0.89323425;3.2496948;9.838165 +18036;12;0.20758316;0.07125162;0.2289177;0.94838244 +18036;3;-0.67277527;-0.11694336;0.16313171 +18038;0;-0.859787;3.244934;9.876312 +18038;1;-0.3815277;4.1588316;8.876636 +18038;3;-0.66789246;-0.13832092;0.1600647 +18038;5;999.60004 +18040;4;13.842773;-0.14038086;-64.94751 +18040;6;-0.380963;-0.31632817;0.08683654 +18040;7;0.914778;-0.35336667;0.19573763;0.0;0.39545852;0.88224816;-0.25544223;0.0;-0.08242439 +18040;0;-0.831131;3.2164307;9.9096985 +18040;3;-0.660553;-0.15971375;0.15762329 +18041;12;0.2060553;0.07056483;0.22934292;0.9486642 +18042;0;-0.8215637;3.202179;9.923996 +18043;1;-0.3725931;4.129345;8.89077 +18043;3;-0.64834595;-0.18292236;0.15457153 +18045;0;-0.802475;3.16893;9.933533 +18045;12;0.20456895;0.06978786;0.22973992;0.94894725 +18045;3;-0.63061523;-0.20307922;0.15090942 +18047;0;-0.7642517;3.2116852;9.957382 +18047;1;-0.36187252;4.100856;8.904388 +18048;3;-0.61291504;-0.22323608;0.14724731 +18049;4;13.392639;-0.29144287;-65.097046 +18049;6;-0.3980743;-0.31115118;0.07660209 +18050;7;0.9100238;-0.36902997;0.18887448;0.0;0.40810442;0.87754554;-0.25172332;0.0;-0.07285249 +18050;0;-0.7021332;3.2211914;9.990768 +18050;3;-0.5903015;-0.24217224;0.14480591 +18051;12;0.20316546;0.06892367;0.23009765;0.9492252 +18052;0;-0.6925812;3.2306824;10.014618 +18052;1;-0.3494966;4.0739803;8.917212 +18053;2;0.40478873;0.88441277;-1.0282211; +18053;3;-0.56404114;-0.25927734;0.14173889 +18055;0;-0.65437317;3.2496948;10.014618 +18055;12;0.20187153;0.06799077;0.23041461;0.9494916 +18056;3;-0.53349304;-0.27331543;0.13807678 +18062;1;-0.33576694;4.0493655;8.928942 +18062;0;-0.6495819;3.2544403;10.014618 +18062;3;-0.49928284;-0.28372192;0.13502502 +18068;4;14.292908;-0.74157715;-66.44745 +18068;6;-0.46144307;-0.31358737;0.064772636 +18068;7;0.88464326;-0.4235277;0.1950143;0.0;0.46218538;0.8517445;-0.24681166;0.0;-0.061570805 +18068;0;-0.59706116;3.2639465;10.005081 +18068;3;-0.46325684;-0.29104614;0.13197327 +18068;12;0.20071839;0.0670117;0.2306911;0.94973856 +18068;12;0.19973624;0.066022806;0.23093385;0.94995576 +18068;1;-0.32119086;4.027664;8.939288 +18068;0;-0.5683899;3.3114624;10.000305 +18068;3;-0.4247589;-0.2965393;0.12953186 +18068;0;-0.5158386;3.368454;9.990768 +18068;1;-0.30627716;4.009399;8.948018 +18068;3;-0.38261414;-0.29592896;0.1252594 +18069;0;-0.5015106;3.415985;9.957382 +18069;3;-0.34046936;-0.2928772;0.12159729 +18069;4;12.792969;-0.59051514;-66.596985 +18069;6;-0.41825426;-0.33009073;0.05032319 +18069;7;0.9060203;-0.3842381;0.1774493;0.0;0.42055047;0.864466;-0.27538285;0.0;-0.047586296 +18070;0;-0.45851135;3.4872284;9.943069 +18070;3;-0.29403687;-0.28494263;0.11669922 +18070;12;0.19894354;0.065058924;0.23114614;0.95013696 +18072;0;-0.45851135;3.5394897;9.885849 +18072;1;-0.29169694;3.994895;8.954989 +18072;2;0.21776995;0.6648588;-1.0369453; +18072;3;-0.24760437;-0.27331543;0.111206055 +18077;12;0.1983489;0.06415961;0.2313304;0.9502777 +18077;0;-0.43940735;3.606018;9.799988 +18077;3;-0.20179749;-0.2623291;0.106933594 +18077;0;-0.42507935;3.7010345;9.776154 +18077;1;-0.2782948;3.9846396;8.959984 +18078;3;-0.15719604;-0.24461365;0.10142517 +18078;5;999.60004 +18079;4;12.942505;0.1586914;-66.14685 +18079;6;-0.40092435;-0.36159104;0.043453876 +18079;7;0.91383404;-0.36503282;0.17792796;0.0;0.40405002;0.8611636;-0.30844882;0.0;-0.04063115 +18079;0;-0.41552734;3.729538;9.733231 +18079;3;-0.113220215;-0.22384644;0.095321655 +18079;12;0.1979664;0.06337072;0.2314797;0.950374 +18085;1;-0.26652488;3.9783797;8.963123 +18085;0;-0.40119934;3.8150635;9.661682 +18085;3;-0.072280884;-0.20307922;0.091049194 +18087;12;0.19777822;0.06271742;0.23161247;0.95042413 +18087;0;-0.41552734;3.8958282;9.590164 +18087;3;-0.033187866;-0.17985535;0.08494568 +18087;1;-0.2568131;3.975891;8.964511 +18087;0;-0.41073608;3.962326;9.494766 +18088;3;0.0010070801;-0.15603638;0.078826904 +18089;12;0.1977651;0.062215615;0.23172884;0.9504315 +18090;4;12.643433;-0.74157715;-64.94751 +18090;6;-0.38143665;-0.3950129;0.04323226 +18090;7;0.9210725;-0.34358755;0.18322974;0.0;0.3873426;0.85665697;-0.34074128;0.0;-0.039890584 +18090;0;-0.38208008;4.0383606;9.40892 +18090;3;0.031555176;-0.1309967;0.07331848 +18091;1;-0.249362;3.9765701;8.964419 +18091;0;-0.38208008;4.0763702;9.327835 +18091;2;0.11901331;0.15574169;-0.6502609; +18091;3;0.05781555;-0.10899353;0.067214966 +18094;0;-0.35820007;4.1571198;9.237228 +18095;12;0.1978918;0.06186883;0.23183013;0.950403 +18095;3;0.08102417;-0.087631226;0.062332153 +18095;0;-0.38208008;4.266403;9.075058 +18096;1;-0.24406594;3.9797926;8.963136 +18096;3;0.09812927;-0.07052612;0.05683899 +18098;4;12.193298;0.1586914;-66.89758 +18098;6;-0.31472588;-0.43912166;0.042077366 +18098;7;0.94450355;-0.28018683;0.17148829;0.0;0.3262871;0.86066675;-0.39088273;0.0;-0.038074058 +18098;0;-0.3534088;4.342407;8.970154 +18098;3;0.110961914;-0.054641724;0.051330566 +18098;12;0.19813126;0.061661664;0.23190236;0.95034903 +18101;0;-0.38208008;4.4231873;8.846146 +18103;1;-0.24051633;3.984824;8.960995 +18110;3;0.122558594;-0.04119873;0.04156494 +18110;0;-0.36297607;4.4754486;8.76506 +18127;12;0.19844219;0.06156835;0.2319771;0.9502719 +18127;1;-0.23839967;3.9909995;8.958303 +18127;12;0.19879682;0.061555877;0.23202342;0.9501873 +18127;1;-0.23719428;3.9975502;8.955414 +18127;2;0.08144984;-0.39110994;0.122244835; +18127;12;0.19916211;0.06158931;0.23203589;0.9501056 +18127;1;-0.236489;4.003984;8.952558 +18127;12;0.19951755;0.061633773;0.23199785;0.9500374 +18127;1;-0.23601459;4.009865;8.949938 +18127;12;0.19984265;0.06167238;0.23191191;0.94998753 +18127;3;0.12989807;-0.031417847;0.033615112 +18127;0;-0.3438568;4.5086975;8.631531 +18127;3;0.13111877;-0.02470398;0.02507019 +18127;4;12.942505;1.5090942;-65.69672 +18127;6;-0.3123425;-0.4810436;0.039816238 +18127;7;0.9452024;-0.27241522;0.17995095;0.0;0.32457224;0.8436198;-0.42773643;0.0;-0.035288267 +18127;0;-0.3343048;4.5657043;8.559982 +18127;3;0.12989807;-0.020431519;0.015914917 +18127;0;-0.3534088;4.6179657;8.459839 +18127;3;0.12623596;-0.019195557;0.006134033 +18127;0;-0.34864807;4.6797333;8.393066 +18127;3;0.12011719;-0.020431519;-0.004852295 +18127;0;-0.3343048;4.7414856;8.316757 +18128;3;0.11340332;-0.022262573;-0.018295288 +18128;5;999.60004 +18128;4;12.792969;0.009155273;-67.49725 +18128;6;-0.29086348;-0.51780605;0.040174905 +18128;7;0.9515224;-0.24918485;0.18031125;0.0;0.30559337;0.8324102;-0.46228355;0.0;-0.034898877 +18128;0;-0.3104248;4.7700043;8.254761 +18128;1;-0.2353936;4.014827;8.94773 +18128;3;0.10119629;-0.026535034;-0.029296875 +18128;0;-0.3056488;4.7794952;8.164139 +18128;3;0.08958435;-0.03263855;-0.0390625 +18128;0;-0.2817688;4.817505;8.11644 +18128;3;0.07797241;-0.039367676;-0.048843384 +18128;0;-0.27697754;4.8317566;8.106903 +18128;3;0.06513977;-0.046691895;-0.060440063 +18128;4;12.643433;1.5090942;-64.94751 +18128;6;-0.2914012;-0.5372205;0.03415236 +18128;7;0.9522635;-0.24682471;0.1796435;0.0;0.30386448;0.8229152;-0.48008;0.0;-0.02933576 +18128;0;-0.24832153;4.8460083;8.049683 +18128;3;0.04927063;-0.055862427;-0.06838989 +18128;12;0.20012233;0.06168019;0.23177822;0.9499608 +18129;17;1;38dead6d7725;7620;1323;-60; +18130;17;1;38dead6d60ff;4388;1926;-66; +18130;17;1;1c1bb5efa29a;5502;599;-69; +18131;17;1;1c1bb5ecd182;5561;743;-66; +18131;0;-0.24354553;4.8650208;8.030594 +18131;1;-0.23446795;4.0187044;8.946013 +18131;2;0.019354999;-0.74457264;0.7531595; +18131;3;0.033996582;-0.061965942;-0.07815552 +18132;0;-0.22921753;4.86026;8.021057 +18132;12;0.2003503;0.06164734;0.23159473;0.9499596 +18132;3;0.021774292;-0.06990051;-0.08732605 +18134;0;-0.21009827;4.869766;8.001968 +18134;1;-0.23323314;4.021331;8.944865 +18134;3;0.0058898926;-0.08029175;-0.09587097 +18136;4;12.643433;-0.74157715;-64.94751 +18136;6;-0.31741977;-0.5465449;0.02624979 +18136;7;0.9454589;-0.26664886;0.18709858;0.0;0.32496876;0.81164664;-0.4854123;0.0;-0.022423286 +18136;0;-0.21487427;4.8365173;8.03537 +18136;3;-0.008148193;-0.08822632;-0.10258484 +18137;12;0.20051713;0.0615713;0.23136394;0.9499856 +18139;0;-0.19099426;4.8365173;8.073517 +18139;3;-0.023422241;-0.094955444;-0.10809326 +18139;1;-0.23150878;4.0226336;8.9443245 +18140;0;-0.18144226;4.8365173;8.073517 +18141;12;0.20062283;0.0614435;0.23109485;0.95003706 +18141;3;-0.036849976;-0.09861755;-0.11419678 +18143;0;-0.18144226;4.817505;8.121216 +18144;1;-0.22943556;4.022632;8.944379 +18144;3;-0.047851562;-0.10473633;-0.11846924 +18147;4;13.243103;0.1586914;-65.24658 +18147;6;-0.33763233;-0.53529495;0.022338044 +18147;7;0.93953204;-0.28491762;0.19000393;0.0;0.3419217;0.8115573;-0.4737766;0.0;-0.01921176 +18147;0;-0.171875;4.7652435;8.164139 +18147;3;-0.0594635;-0.10899353;-0.12275696 +18147;12;0.20066258;0.061273787;0.23079534;0.95011246 +18147;0;-0.18621826;4.793747;8.159363 +18148;1;-0.2271237;4.0215273;8.944934 +18148;3;-0.07044983;-0.11143494;-0.12580872 +18148;2;-0.07125777;-0.78043747;0.851244; +18150;0;-0.143219;4.760498;8.2118225 +18150;12;0.20065112;0.061072525;0.23047495;0.9502056 +18150;3;-0.07595825;-0.1138916;-0.12580872 +18152;0;-0.15278625;4.7082367;8.2595215 +18153;1;-0.22461964;4.0194864;8.945914 +18153;3;-0.080841064;-0.11328125;-0.12825012 +18153;5;999.60004 +18155;4;11.442566;-1.3412476;-65.84625 +18155;6;-0.31344965;-0.5180232;0.018496087 +18155;7;0.948289;-0.26788747;0.17024754;0.0;0.31700116;0.82646793;-0.4652537;0.0;-0.016068479 +18155;0;-0.12890625;4.660721;8.326294 +18155;3;-0.085113525;-0.11143494;-0.12886047 +18156;12;0.20058993;0.06084297;0.23012966;0.95031685 +18157;0;-0.09068298;4.622711;8.364441 +18157;1;-0.2221271;4.0168524;8.94716 +18157;3;-0.08755493;-0.10899353;-0.12641907 +18159;0;-0.09068298;4.594223;8.416901 +18160;12;0.20049837;0.06060772;0.22979456;0.9504324 +18160;3;-0.08694458;-0.107177734;-0.12397766 +18162;0;-0.07635498;4.5514526;8.459839 +18162;1;-0.21971597;4.0139103;8.948539 +18162;3;-0.08267212;-0.102890015;-0.124572754 +18164;4;13.243103;0.45928955;-65.24658 +18164;6;-0.38338542;-0.49357194;0.009025337 +18164;7;0.9257664;-0.32941654;0.185584;0.0;0.37801257;0.8167145;-0.4359863;0.0;-0.007948021 +18164;0;-0.10499573;4.513443;8.474136 +18165;3;-0.08023071;-0.0967865;-0.120910645 +18165;12;0.2003884;0.060376618;0.22946997;0.9505487 +18167;0;-0.10978699;4.494446;8.536133 +18167;1;-0.2176452;4.011105;8.949848 +18167;2;-0.14567125;-0.5792427;0.55735874; +18167;3;-0.0753479;-0.090667725;-0.11968994 +18169;0;-0.100234985;4.44693;8.593384 +18170;12;0.2002807;0.060165707;0.22915412;0.95066094 +18170;3;-0.068618774;-0.08578491;-0.117248535 +18172;0;-0.100234985;4.380417;8.6362915 +18172;1;-0.21597938;4.0085464;8.951035 +18172;3;-0.061904907;-0.08029175;-0.11480713 +18175;4;14.292908;-0.74157715;-64.497375 +18175;6;-0.442457;-0.4693721;0.011605732 +18175;7;0.90139395;-0.38185662;0.20414345;0.0;0.4328763;0.8059693;-0.4037719;0.0;-0.010350369 +18175;0;-0.095443726;4.3851776;8.6792145 +18175;3;-0.05458069;-0.07418823;-0.11236572 +18176;12;0.20018099;0.059981916;0.22885245;0.95076615 +18176;0;-0.10499573;4.347168;8.731674 +18177;3;-0.04724121;-0.06745911;-0.109313965 +18177;1;-0.21469009;4.006479;8.951991 +18180;0;-0.08111572;4.3329163;8.741211 +18180;3;-0.040527344;-0.06135559;-0.105041504 +18180;12;0.20010263;0.05982689;0.22856562;0.95086145 +18181;0;-0.10499573;4.3186646;8.81752 +18181;3;-0.031967163;-0.055252075;-0.101989746 +18182;1;-0.21381745;4.004949;8.952697 +18184;4;13.392639;-0.59051514;-65.54718 +18184;6;-0.41832563;-0.455412;0.0119070625 +18184;7;0.91157824;-0.3648279;0.18954095;0.0;0.4109876;0.8206388;-0.39704043;0.0;-0.01069324 +18184;0;-0.10978699;4.2854004;8.836609 +18184;3;-0.02708435;-0.0491333;-0.09831238 +18184;12;0.20004587;0.059705637;0.22829749;0.9509455 +18186;0;-0.12411499;4.2854004;8.850922 +18186;1;-0.21336614;4.003962;8.953149 +18187;3;-0.01852417;-0.04547119;-0.09587097 +18187;2;-0.15119347;-0.3220911;0.20649624; +18188;0;-0.157547;4.2711487;8.889069 +18189;12;0.20001303;0.05961825;0.22804873;0.95101756 +18189;3;-0.01121521;-0.042419434;-0.09159851 +18191;0;-0.19099426;4.2473907;8.908142 +18191;1;-0.21322368;4.00355;8.953337 +18191;3;-0.0038757324;-0.038757324;-0.08854675 +18192;5;999.5962 +18193;4;12.342834;0.7598877;-65.84625 +18193;6;-0.3589496;-0.44482565;0.02143713 +18193;7;0.93281096;-0.31710532;0.17119527;0.0;0.3598461;0.84515417;-0.3952532;0.0;-0.01934951 +18194;0;-0.21487427;4.2426453;8.979691 +18194;3;0.0010070801;-0.035079956;-0.0867157 +18195;12;0.20000546;0.059556093;0.22780845;0.95108056 +18196;0;-0.21487427;4.214142;8.965378 +18196;1;-0.2133194;4.003646;8.953291 +18196;3;0.006500244;-0.034484863;-0.084869385 +18198;0;-0.23399353;4.2473907;8.970154 +18198;12;0.20002325;0.059516896;0.2275906;0.95113146 +18199;3;0.015670776;-0.033859253;-0.08303833 +18200;0;-0.2722168;4.256897;8.989227 +18200;1;-0.21351412;4.0043044;8.952992 +18201;3;0.020553589;-0.03263855;-0.08425903 +18203;4;13.243103;-0.14038086;-66.14685 +18203;6;-0.37753084;-0.44209176;0.030273305 +18203;7;0.9243781;-0.33318615;0.18577462;0.0;0.38049543;0.840207;-0.38636214;0.0;-0.027358614 +18203;0;-0.28652954;4.280655;8.989227 +18203;3;0.02482605;-0.03263855;-0.08181763 +18204;12;0.20006934;0.059492968;0.2273798;0.9511736 +18205;0;-0.3438568;4.2949066;8.965378 +18205;1;-0.21384169;4.0055003;8.95245 +18206;2;-0.014802098;-0.23039532;-0.015063286; +18206;3;0.031555176;-0.034484863;-0.07998657 +18207;0;-0.3199768;4.275894;8.965378 +18208;12;0.20014189;0.0594823;0.22716938;0.9512093 +18208;3;0.038879395;-0.03630066;-0.08242798 +18210;0;-0.3295288;4.313904;9.003525 +18210;1;-0.21402867;4.0072365;8.951668 +18210;3;0.04498291;-0.038757324;-0.084869385 +18212;4;12.792969;-0.59051514;-65.84625 +18212;6;-0.35387537;-0.44655588;0.036583647 +18212;7;0.9319355;-0.31255427;0.1838645;0.0;0.36112052;0.8460527;-0.39215645;0.0;-0.032988887 +18213;0;-0.32476807;4.3281555;8.989227 +18213;3;0.04988098;-0.04058838;-0.0867157 +18214;12;0.20024607;0.059470695;0.22695798;0.9512386 +18215;0;-0.3534088;4.323395;9.013062 +18215;1;-0.21413931;4.0095267;8.950639 +18215;3;0.0572052;-0.041809082;-0.0879364 +18217;0;-0.3534088;4.3091583;9.013062 +18217;12;0.20037906;0.059459932;0.22673263;0.951265 +18218;3;0.06391907;-0.042419434;-0.09098816 +18222;1;-0.21424912;4.012345;8.949374 +18222;0;-0.37252808;4.3281555;9.013062 +18222;3;0.07003784;-0.041809082;-0.093429565 +18222;4;12.193298;-0.14038086;-65.69672 +18222;6;-0.32094076;-0.44735715;0.04130851 +18222;7;0.9424941;-0.2844162;0.17553446;0.0;0.33214253;0.8555574;-0.39711848;0.0;-0.0372329 +18223;0;-0.38685608;4.3281555;8.989227 +18223;3;0.07675171;-0.043029785;-0.09648132 +18223;12;0.20054244;0.05945458;0.22649689;0.95128715 +18226;0;-0.40119934;4.3281555;8.936752 +18226;1;-0.21449715;4.0157385;8.947846 +18226;3;0.08102417;-0.042419434;-0.100753784 +18226;2;0.10083309;-0.28092575;-0.052695274; +18227;0;-0.4202881;4.2949066;8.922455 +18228;12;0.20073469;0.059460536;0.2262461;0.95130587 +18228;3;0.08836365;-0.043029785;-0.10321045 +18229;0;-0.49195862;4.3043976;8.927231 +18230;1;-0.21495637;4.019592;8.946104 +18230;3;0.09875488;-0.04486084;-0.105651855 +18240;17;1;38dead6d7725;7199;1328;-64; +18241;17;1;38dead6d60ff;5413;1719;-64; +18241;17;1;1c1bb5efa29a;1986;2748;-71; +18242;17;1;1c1bb5ecd182;2388;4079;-70; +18243;5;999.5962 +18243;12;0.20094998;0.059479125;0.22597109;0.9513246 +18243;12;0.20120177;0.059505954;0.22568779;0.951337 +18243;1;-0.2154561;4.02412;8.9440565 +18243;1;-0.2159834;4.029101;8.941801 +18243;4;12.193298;-0.440979;-66.44745 +18243;6;-0.28878313;-0.4486852;0.055051956 +18243;7;0.9503415;-0.25659734;0.17609331;0.0;0.3072346;0.8637081;-0.39951882;0.0;-0.049577765 +18243;0;-0.48718262;4.290146;8.922455 +18243;3;0.10241699;-0.04547119;-0.10687256 +18243;0;-0.5110626;4.290146;8.865219 +18243;3;0.107299805;-0.04547119;-0.10870361 +18243;0;-0.5206146;4.266403;8.855682 +18243;3;0.115234375;-0.046081543;-0.10809326 +18243;0;-0.48718262;4.275894;8.831833 +18243;3;0.1207428;-0.04852295;-0.10809326 +18244;12;0.20147863;0.05953882;0.2253976;0.951345 +18244;0;-0.5540619;4.280655;8.803207 +18244;3;0.12562561;-0.049743652;-0.10687256 +18244;4;12.042236;0.009155273;-64.34631 +18244;6;-0.2740241;-0.4518191;0.06285573 +18244;7;0.95336723;-0.2434533;0.17838542;0.0;0.29647487;0.86608803;-0.40248495;0.0;-0.05651121 +18244;1;-0.21644431;4.0346236;8.939299 +18244;0;-0.5827179;4.280655;8.774612 +18244;3;0.13174438;-0.051574707;-0.105651855 +18244;2;0.25142857;-0.23144388;0.066672325; +18247;0;-0.5779419;4.252136;8.741211 +18247;12;0.20178422;0.059574354;0.22510523;0.9513473 +18247;3;0.13722229;-0.05279541;-0.10321045 +18248;13;78.11499 +18249;0;-0.6257019;4.2711487;8.6839905 +18249;3;0.14273071;-0.054641724;-0.101364136 +18249;1;-0.2167716;4.0406446;8.936571 +18252;4;13.093567;1.05896;-65.84625 +18252;6;-0.2682944;-0.45607516;0.07192805 +18252;7;0.9533407;-0.23799215;0.18574493;0.0;0.29492125;0.86566913;-0.40452242;0.0;-0.06452047 +18252;0;-0.5874939;4.233139;8.712601 +18252;3;0.14700317;-0.055862427;-0.101989746 +18252;12;0.20211782;0.05960901;0.22481322;0.95134336 +18257;0;-0.6257019;4.223633;8.621979 +18257;1;-0.21692948;4.0470886;8.933651 +18257;3;0.1512909;-0.058303833;-0.100753784 +18257;12;0.20247713;0.059642773;0.22452718;0.95133245 +18257;0;-0.60661316;4.214142;8.574295 +18257;3;0.15678406;-0.059524536;-0.100753784 +18258;1;-0.21695864;4.0539656;8.930532 +18258;0;-0.65437317;4.233139;8.559982 +18259;3;0.15922546;-0.06074524;-0.09953308 +18261;4;11.743164;-0.59051514;-64.64691 +18261;6;-0.23460808;-0.45810267;0.07629722 +18261;7;0.9619398;-0.20849343;0.17664163;0.0;0.2645716;0.8723233;-0.41116172;0.0;-0.06836409 +18261;0;-0.64482117;4.2283936;8.574295 +18261;12;0.20285995;0.05967531;0.22423951;0.9513167 +18261;3;0.16288757;-0.061965942;-0.09892273 +18263;0;-0.65437317;4.223633;8.555222 +18263;1;-0.21688506;4.061134;8.927276 +18263;2;0.36746258;-0.15537643;0.2899332; +18263;3;0.16349792;-0.061965942;-0.09526062 +18265;0;-0.64004517;4.2473907;8.488449 +18266;12;0.20326136;0.0597056;0.22395301;0.95129657 +18266;3;0.16410828;-0.06135559;-0.09526062 +18268;0;-0.6782532;4.2616425;8.478897 +18268;1;-0.21674536;4.0684924;8.923928 +18268;3;0.16593933;-0.06135559;-0.09465027 +18269;5;999.5962 +18270;4;13.392639;-0.29144287;-64.34631 +18270;6;-0.27663428;-0.46446097;0.079823114 +18270;7;0.9491617;-0.24418603;0.19865856;0.0;0.30660987;0.86007094;-0.40776008;0.0;-0.07129114 +18270;0;-0.67349243;4.252136;8.464584 +18270;3;0.16532898;-0.062576294;-0.09220886 +18271;12;0.20367157;0.05973727;0.22367358;0.95127267 +18272;0;-0.6925812;4.252136;8.421677 +18272;1;-0.2165993;4.0759373;8.920534 +18273;3;0.16593933;-0.063186646;-0.09037781 +18275;0;-0.6782532;4.266403;8.393066 +18275;12;0.20408759;0.05976981;0.22339828;0.951246 +18277;3;0.16593933;-0.063797;-0.08854675 +18282;0;-0.68304443;4.2711487;8.345367 +18282;3;0.16349792;-0.066848755;-0.08854675 +18282;4;12.193298;0.1586914;-66.89758 +18282;6;-0.21345387;-0.4716894;0.081665106 +18282;7;0.9661959;-0.18870449;0.1756591;0.0;0.24735616;0.87058526;-0.42531902;0.0;-0.0726666 +18282;0;-0.6925812;4.299652;8.321533 +18282;3;0.16288757;-0.06990051;-0.0879364 +18282;12;0.2045089;0.05979838;0.22313093;0.9512165 +18282;1;-0.21631792;4.0834513;8.917104 +18282;0;-0.68304443;4.3186646;8.297668 +18282;1;-0.21582289;4.090916;8.913693 +18282;2;0.42547294;-0.16301012;0.5034008; +18282;3;0.16166687;-0.07418823;-0.08732605 +18284;0;-0.6687012;4.313904;8.292908 +18285;12;0.20492941;0.05981367;0.22286431;0.95118755 +18285;3;0.16105652;-0.07846069;-0.08610535 +18287;0;-0.6495819;4.342407;8.292908 +18287;1;-0.21491347;4.0983706;8.910291 +18287;3;0.15983582;-0.083343506;-0.0867157 +18289;4;12.042236;0.009155273;-65.097046 +18289;6;-0.22333902;-0.48111588;0.0781702 +18289;7;0.96418136;-0.19634354;0.17833531;0.0;0.25605094;0.8644619;-0.43260092;0.0;-0.0692257 +18289;0;-0.6639252;4.366165;8.283371 +18289;3;0.1561737;-0.087631226;-0.08610535 +18290;12;0.20535538;0.05980673;0.2225902;0.9511603 +18291;0;-0.64004517;4.3994293;8.2642975 +18292;1;-0.21361136;4.1056986;8.906948 +18292;3;0.1537323;-0.091293335;-0.085494995 +18295;0;-0.63526917;4.380417;8.2642975 +18295;12;0.20577836;0.059777863;0.22232027;0.95113385 +18296;3;0.1512909;-0.094955444;-0.08732605 +18296;0;-0.6161499;4.404175;8.302444 +18297;1;-0.21195138;4.1127887;8.903716 +18297;3;0.14700317;-0.09861755;-0.08610535 +18298;4;11.593628;-0.74157715;-66.14685 +18299;6;-0.21455722;-0.48658726;0.07407727 +18299;7;0.9670227;-0.1882026;0.17160103;0.0;0.2461451;0.8636659;-0.43987927;0.0;-0.06541953 +18299;0;-0.5922699;4.437439;8.278595 +18299;3;0.14334106;-0.10044861;-0.08732605 +18300;12;0.20619392;0.059726402;0.2220478;0.9511108 +18301;0;-0.6018219;4.4897003;8.316757 +18301;1;-0.20996933;4.1196647;8.900583 +18301;2;0.38844198;-0.2563367;0.60545826; +18302;3;0.13722229;-0.10411072;-0.0867157 +18304;0;-0.59706116;4.4991913;8.350128 +18304;12;0.20660108;0.059656005;0.22177075;0.95109147 +18304;3;0.13111877;-0.10473633;-0.084869385 +18306;0;-0.5683899;4.503952;8.393066 +18306;1;-0.20775592;4.126024;8.897689 +18306;3;0.12623596;-0.10473633;-0.085494995 +18307;5;999.5962 +18308;4;13.093567;-1.0406494;-66.29639 +18308;6;-0.27247572;-0.49156603;0.067618124 +18308;7;0.95232403;-0.2372518;0.19180857;0.0;0.29921696;0.84907055;-0.43537143;0.0;-0.059566364 +18308;0;-0.5779419;4.5514526;8.431213 +18309;3;0.119522095;-0.10411072;-0.085494995 +18309;12;0.20698303;0.05956627;0.22149576;0.9510781 +18311;0;-0.5397186;4.5847015;8.402588 +18311;1;-0.2055036;4.13194;8.894997 +18311;3;0.110961914;-0.103500366;-0.08610535 +18313;0;-0.5253906;4.5989685;8.483673 +18314;12;0.20734224;0.0594684;0.22122478;0.95106906 +18314;3;0.10241699;-0.10105896;-0.08425903 +18315;0;-0.5158386;4.6084595;8.49321 +18316;1;-0.20328334;4.1371546;8.892623 +18316;3;0.09385681;-0.099227905;-0.084869385 +18318;4;12.193298;-0.14038086;-65.24658 +18318;6;-0.2571173;-0.49637672;0.0606609 +18318;7;0.9580064;-0.22360396;0.17951359;0.0;0.28174844;0.85040826;-0.4443238;0.0;-0.05330726 +18318;0;-0.5015106;4.603714;8.531357 +18318;3;0.08653259;-0.0980072;-0.084869385 +18319;12;0.20766208;0.05936453;0.22095829;0.95106775 +18320;0;-0.5349426;4.603714;8.569519 +18320;1;-0.20121121;4.1416235;8.890589 +18321;3;0.07614136;-0.0967865;-0.085494995 +18321;2;0.30986723;-0.4135666;0.42633057; +18323;0;-0.49671936;4.6417236;8.621979 +18323;12;0.20794034;0.059259947;0.22069666;0.95107424 +18323;3;0.06820679;-0.09434509;-0.08425903 +18325;0;-0.45373535;4.603714;8.6792145 +18325;1;-0.19920811;4.1452827;8.888928 +18325;3;0.058425903;-0.09310913;-0.084869385 +18327;4;12.792969;-1.0406494;-64.34631 +18327;6;-0.30924684;-0.48712936;0.052230842 +18327;7;0.9438267;-0.2689404;0.19199573;0.0;0.3272047;0.8417612;-0.42938948;0.0;-0.04613438 +18328;0;-0.5015106;4.5894623;8.741211 +18328;3;0.04927063;-0.090667725;-0.08425903 +18328;12;0.20817128;0.059148524;0.22043882;0.95109046 +18330;0;-0.48718262;4.5989685;8.798447 +18330;1;-0.19737968;4.148056;8.887676 +18330;3;0.039489746;-0.087005615;-0.08425903 +18332;0;-0.5015106;4.5894623;8.81752 +18333;12;0.20835498;0.059035998;0.22018708;0.9511155 +18333;3;0.03338623;-0.082733154;-0.085494995 +18335;0;-0.47763062;4.5799713;8.86998 +18335;1;-0.19584936;4.150033;8.886787 +18336;3;0.02482605;-0.079071045;-0.08425903 +18337;4;13.542175;0.45928955;-64.94751 +18337;6;-0.31808922;-0.4760482;0.053796034 +18337;7;0.9407541;-0.2779782;0.19419044;0.0;0.33570492;0.84422547;-0.4178347;0.0;-0.04779155 +18337;0;-0.5158386;4.5847015;8.927231 +18337;3;0.01689148;-0.07418823;-0.08303833 +18338;12;0.2084917;0.058929577;0.21994069;0.95114917 +18339;0;-0.48239136;4.546707;8.955841 +18340;1;-0.19465561;4.1512713;8.886234 +18340;2;0.2617354;-0.42768478;0.07797718; +18340;3;0.011398315;-0.06990051;-0.08364868 +18342;0;-0.48718262;4.522949;9.017838 +18343;3;0.0058898926;-0.06562805;-0.08364868 +18343;12;0.20858358;0.058830902;0.21970387;0.9511898 +18344;0;-0.5206146;4.52771;9.070297 +18345;1;-0.19384237;4.151889;8.885964 +18345;3;0.0022277832;-0.060134888;-0.081207275 +18346;5;999.60175 +18347;4;12.342834;-0.59051514;-67.49725 +18347;6;-0.2760649;-0.46233445;0.057334837 +18347;7;0.95358765;-0.24395536;0.17651138;0.0;0.2967155;0.8611244;-0.41282517;0.0;-0.051287353 +18348;0;-0.5253906;4.5086975;9.13707 +18348;3;-0.0026550293;-0.054031372;-0.080596924 +18348;12;0.20863838;0.058746234;0.21946871;0.95123726 +18349;1;-0.19343303;4.15204;8.885901 +18349;0;-0.49671936;4.494446;9.19429 +18350;3;-0.0063323975;-0.047912598;-0.081207275 +18352;0;-0.5349426;4.4611816;9.203827 +18353;12;0.2086627;0.05867892;0.21925093;0.95128644 +18353;3;-0.008773804;-0.041809082;-0.07937622 +18356;1;-0.19356598;4.1517987;8.886012 +18356;0;-0.5445099;4.44693;9.227692 +18356;3;-0.0093688965;-0.03753662;-0.07815552 +18360;12;0.20865907;0.058636922;0.21903981;0.95133835 +18360;1;-0.19414708;4.151372;8.886199 +18360;4;13.093567;0.7598877;-65.54718 +18361;6;-0.30371246;-0.448393;0.0589399 +18361;7;0.9449388;-0.26950073;0.18563466;0.0;0.32291347;0.8599021;-0.3953421;0.0;-0.053082645 +18361;0;-0.5874939;4.4231873;9.294464 +18361;3;-0.009994507;-0.0320282;-0.07632446 +18361;0;-0.62094116;4.3946686;9.351685 +18361;3;-0.009994507;-0.024093628;-0.07388306 +18361;2;0.3133682;-0.30869007;-0.30752182; +18363;0;-0.64482117;4.380417;9.365997 +18363;3;-0.0075531006;-0.017974854;-0.07144165 +18363;12;0.20863971;0.058618616;0.21884288;0.9513891 +18366;1;-0.1952972;4.1508985;8.8863945 +18366;0;-0.6782532;4.3376617;9.394608 +18366;3;-0.005706787;-0.013092041;-0.07022095 +18367;4;13.243103;0.1586914;-65.69672 +18367;6;-0.29448357;-0.43156752;0.07207096 +18367;7;0.9457255;-0.2636334;0.19000195;0.0;0.3183164;0.86921036;-0.3783491;0.0;-0.0654062 +18367;0;-0.68782043;4.3186646;9.38031 +18367;12;0.20861092;0.058631245;0.21865901;0.9514369 +18368;3;-2.1362305E-4;-0.0069885254;-0.0708313 +18369;1;-0.19691107;4.150621;8.886488 +18370;0;-0.7021332;4.313904;9.418457 +18370;3;0.006500244;-8.69751E-4;-0.06776428 +18372;12;0.20858598;0.05867273;0.2184867;0.9514794 +18372;0;-0.74513245;4.275894;9.4804535 +18372;3;0.011398315;0.0070648193;-0.06654358 +18374;1;-0.19910526;4.150769;8.886371 +18374;0;-0.7929077;4.275894;9.4852295 +18374;3;0.017501831;0.011947632;-0.064712524 +18376;4;12.042236;-1.3412476;-65.097046 +18376;6;-0.24990301;-0.4222119;0.08340003 +18376;7;0.95712644;-0.2255924;0.18170592;0.0;0.27952603;0.8838491;-0.3750681;0.0;-0.075988084 +18376;0;-0.816803;4.2711487;9.499542 +18377;3;0.02116394;0.018661499;-0.06410217 +18377;12;0.2085784;0.058752947;0.21832597;0.951513 +18379;1;-0.20183663;4.1513405;8.886042 +18379;2;0.506002;-0.14108133;-0.5623045; +18379;0;-0.840683;4.266403;9.509079 +18379;3;0.028503418;0.026611328;-0.06288147 +18381;0;-0.816803;4.2426453;9.4756775 +18381;12;0.20858704;0.058866125;0.21817589;0.95153856 +18381;3;0.03643799;0.036987305;-0.061050415 +18386;0;-0.831131;4.280655;9.4804535 +18386;3;0.043762207;0.044921875;-0.057998657 +18386;1;-0.20521379;4.152476;8.885434 +18386;5;999.60175 +18386;4;11.8927;-0.14038086;-65.69672 +18387;6;-0.22139254;-0.42268685;0.08744429 +18387;7;0.96399826;-0.20026243;0.174935;0.0;0.25370002;0.88973075;-0.3794937;0.0;-0.07964673 +18387;12;0.20861849;0.059022643;0.21803164;0.951555 +18387;0;-0.864563;4.2378845;9.4375305 +18387;3;0.051712036;0.05104065;-0.053115845 +18388;1;-0.20923363;4.154267;8.884503 +18390;0;-0.91233826;4.2711487;9.470917 +18390;3;0.059646606;0.056533813;-0.053726196 +18390;12;0.2086763;0.059227057;0.21791261;0.9515569 +18390;0;-0.9457855;4.266403;9.4375305 +18390;3;0.06820679;0.060806274;-0.05065918 +18394;1;-0.21375777;4.1567883;8.883216 +18394;0;-1.0174255;4.299652;9.418457 +18395;3;0.07614136;0.062026978;-0.048843384 +18395;4;11.743164;-0.29144287;-65.84625 +18395;6;-0.1669755;-0.42606997;0.10760738 +18395;7;0.973011;-0.15134184;0.17419876;0.0;0.20900986;0.8979324;-0.38733998;0.0;-0.09779797 +18396;0;-1.0508728;4.3091583;9.389847 +18396;3;0.08590698;0.06263733;-0.050064087 +18396;12;0.20876753;0.059469797;0.21780263;0.95154685 +18397;0;-1.0604248;4.347168;9.304001 +18397;1;-0.21847998;4.1601214;8.88154 +18398;2;0.6901871;-0.108929634;-0.55201435; +18398;3;0.095077515;0.06263733;-0.050064087 +18400;0;-1.0652008;4.366165;9.256302 +18400;12;0.20890172;0.059731953;0.21769759;0.9515251 +18400;3;0.10545349;0.060806274;-0.05128479 +18402;1;-0.22326653;4.1643944;8.879419 +18402;0;-1.1416473;4.4279175;9.213379 +18402;3;0.115234375;0.056533813;-0.05065918 +18408;4;13.093567;-1.0406494;-64.34631 +18408;6;-0.18439573;-0.4450372;0.1232835 +18408;7;0.9658798;-0.16549301;0.19921936;0.0;0.23400162;0.8872931;-0.39743435;0.0;-0.110993356 +18408;0;-1.1225281;4.4611816;9.203827 +18408;3;0.12501526;0.049819946;-0.052505493 +18408;12;0.20908557;0.06000903;0.21758467;0.9514931 +18408;1;-0.22773036;4.169612;8.876857 +18408;0;-1.1273041;4.4991913;9.184769 +18408;3;0.13478088;0.043701172;-0.053726196 +18410;0;-1.1177521;4.546707;9.132294 +18410;12;0.20932455;0.060278088;0.21746318;0.9514513 +18410;3;0.14395142;0.03881836;-0.054336548 +18413;0;-1.1225281;4.65123;9.056 +18414;1;-0.2317306;4.175815;8.873837 +18414;3;0.15310669;0.03086853;-0.057998657 +18414;4;13.093567;0.7598877;-65.097046 +18414;6;-0.16078079;-0.47138283;0.12332503 +18414;7;0.9706627;-0.14262986;0.19357339;0.0;0.214015;0.8794504;-0.42516428;0.0;-0.10959704 +18414;0;-1.1511993;4.6797333;8.998749 +18415;3;0.16105652;0.026611328;-0.06288147 +18415;12;0.20962429;0.060534988;0.21732661;0.9514002 +18416;0;-1.1416473;4.7319946;8.951065 +18417;1;-0.23536639;4.1829295;8.87039 +18418;2;0.86205935;-0.3504548;-0.26062202; +18418;3;0.16899109;0.018051147;-0.06654358 +18418;0;-1.1320801;4.7985077;8.889069 +18419;12;0.20997812;0.060777903;0.21716611;0.9513433 +18419;3;0.18060303;0.007659912;-0.07022095 +18421;0;-1.1034241;4.841263;8.836609 +18421;1;-0.2384531;4.190958;8.866517 +18421;3;0.19099426;-0.0027160645;-0.07266235 +18422;5;999.60175 +18423;4;12.193298;0.1586914;-66.14685 +18423;6;-0.120589904;-0.497949;0.12422662 +18423;7;0.9779683;-0.10568937;0.18002197;0.0;0.17812225;0.8721838;-0.45559633;0.0;-0.108860545 +18424;0;-1.0890961;4.960037;8.81752 +18424;3;0.19831848;-0.0149383545;-0.077545166 +18424;12;0.21039027;0.060995992;0.21697007;0.9512831 +18438;0;-1.0843201;5.040802;8.793686 +18438;1;-0.24071361;4.2000813;8.862138 +18438;3;0.204422;-0.022872925;-0.077545166 +18440;17;1;38dead6d7725;12842;820;-68; +18441;17;1;38dead6d60ff;4660;1182;-68; +18441;17;1;1c1bb5efa29a;3449;2446;-69; +18441;17;1;1c1bb5ecd182;4193;2587;-67; +18441;1;-0.24211185;4.209929;8.857426 +18441;1;-0.24273196;4.2204876;8.852383 +18442;0;-1.0030975;5.140564;8.769836 +18442;3;0.21298218;-0.031417847;-0.081207275 +18442;0;-0.93144226;5.211838;8.779373 +18442;3;0.21786499;-0.038757324;-0.08242798 +18442;0;-0.859787;5.344864;8.745987 +18442;3;0.2215271;-0.04547119;-0.08364868 +18442;4;11.29303;-0.440979;-65.24658 +18442;6;-0.14210065;-0.54641986;0.09799159 +18442;7;0.97797185;-0.12100123;0.17008746;0.0;0.19126916;0.84577864;-0.4980708;0.0;-0.083589144 +18442;0;-0.75468445;5.487381;8.73645 +18442;3;0.22520447;-0.050964355;-0.084869385 +18442;2;0.7277545;-0.8726659;0.050845146; +18442;0;-0.67349243;5.5871735;8.784149 +18442;3;0.22764587;-0.05340576;-0.084869385 +18442;12;0.21087232;0.061179496;0.2167509;0.95121455 +18442;12;0.21140479;0.061322436;0.21651374;0.95114106 +18442;12;0.2119853;0.061429854;0.21626122;0.9510625 +18442;1;-0.24274746;4.2315125;8.847117 +18442;0;-0.6257019;5.7106934;8.78891 +18442;3;0.22824097;-0.050964355;-0.08242798 +18442;4;13.093567;0.009155273;-64.64691 +18442;6;-0.23366912;-0.5750531;0.071072295 +18442;7;0.96142447;-0.19430701;0.19469912;0.0;0.26853654;0.8163578;-0.51131994;0.0;-0.059591074 +18443;0;-0.49671936;5.8532104;8.827072 +18443;3;0.22642517;-0.04547119;-0.07937622 +18443;12;0.21259865;0.061510652;0.21599852;0.95098007 +18445;0;-0.39640808;5.962494;8.884293 +18445;1;-0.24258319;4.24277;8.841728 +18445;3;0.22335815;-0.035705566;-0.07571411 +18447;0;-0.2960968;6.076523;8.931976 +18448;12;0.21322328;0.06158745;0.21575117;0.9508914 +18448;3;0.21603394;-0.023483276;-0.07388306 +18450;0;-0.24354553;6.1667786;8.941528 +18450;1;-0.24285759;4.253842;8.8364 +18451;3;0.2056427;-0.0082092285;-0.07144165 +18452;4;13.392639;0.30975342;-65.097046 +18452;6;-0.30114207;-0.60359186;0.02723084 +18452;7;0.9500603;-0.24420057;0.19429718;0.0;0.31126007;0.7862523;-0.53378326;0.0;-0.022416443 +18452;0;-0.17666626;6.266556;9.003525 +18452;3;0.1897583;0.0070648193;-0.06716919 +18453;12;0.21383028;0.0616927;0.21552996;0.9507984 +18455;0;-0.11933899;6.3140564;9.117996 +18455;1;-0.24409528;4.2640443;8.831447 +18455;2;0.1105164;-1.7217946;-0.08224106; +18456;3;0.17021179;0.026611328;-0.06349182 +18457;0;-0.057235718;6.375824;9.213379 +18457;12;0.21437359;0.06184212;0.21534108;0.95070904 +18457;3;0.15066528;0.048599243;-0.05921936 +18459;0;-0.01423645;6.4518433;9.284912 +18459;1;-0.24664667;4.272659;8.827211 +18460;3;0.12440491;0.07180786;-0.05555725 +18461;5;999.60175 +18461;4;13.842773;-0.440979;-66.14685 +18461;6;-0.35214332;-0.6072768;0.0015332875 +18461;7;0.9383328;-0.28324217;0.19825633;0.0;0.3457313;0.77081233;-0.53508735;0.0;-0.0012591429 +18462;0;-0.057235718;6.489853;9.337372 +18462;3;0.095687866;0.09379578;-0.0549469 +18462;12;0.21481481;0.062051855;0.21519522;0.9506289 +18464;0;-0.01423645;6.5421143;9.4470825 +18464;1;-0.25097924;4.279138;8.82395 +18464;3;0.06147766;0.11456299;-0.053726196 +18466;0;0.0048675537;6.489853;9.571075 +18467;12;0.21511455;0.062332373;0.21509564;0.9505653 +18467;3;0.027282715;0.13717651;-0.056167603 +18469;0;7.6293945E-5;6.466095;9.728455 +18469;1;-0.2570716;4.2826486;8.822071 +18469;3;-0.011810303;0.15731812;-0.05921936 +18471;4;13.842773;-0.440979;-66.14685 +18471;6;-0.36481327;-0.5866107;-7.84235E-6 +18471;7;0.9341919;-0.29712975;0.19748233;0.0;0.35677072;0.7780138;-0.51711595;0.0;6.531278E-6 +18472;0;-0.023803711;6.3568115;9.833389 +18472;3;-0.052734375;0.17749023;-0.06594849 +18472;12;0.21522923;0.06267367;0.21502933;0.9505319 +18474;0;-0.028564453;6.266556;9.966934 +18474;1;-0.26509756;4.282622;8.821847 +18474;2;-0.26573074;-2.1444254;-0.7281065; +18474;3;-0.09977722;0.19520569;-0.072052 +18476;0;-0.01423645;6.147766;10.138611 +18477;12;0.21512942;0.06306974;0.21497928;0.95053965 +18477;3;-0.15048218;0.20680237;-0.08303833 +18478;0;-0.052444458;5.981491;10.348465 +18478;1;-0.2748435;4.2782507;8.823669 +18479;3;-0.20729065;0.2184143;-0.09159851 +18481;4;12.342834;-1.6403198;-65.54718 +18481;6;-0.36520255;-0.52408606;0.0050678058 +18481;7;0.9331337;-0.30920395;0.18345118;0.0;0.35950264;0.8086846;-0.46560392;0.0;-0.0043875943 +18481;0;-0.06678772;5.8627167;10.510635 +18481;3;-0.26960754;0.22268677;-0.101989746 +18482;12;0.21477512;0.06349707;0.21492344;0.95060384 +18483;0;-0.09068298;5.7201843;10.653702 +18483;1;-0.28584516;4.2686567;8.827965 +18484;3;-0.33496094;0.22085571;-0.11053467 +18486;0;-0.138443;5.534912;10.77771 +18486;12;0.21412852;0.0639185;0.21485496;0.95073706 +18486;3;-0.4015503;0.21292114;-0.117248535 +18489;0;-0.23399353;5.3401184;10.930313 +18489;3;-0.46995544;0.19825745;-0.12580872 +18489;1;-0.2971446;4.2531114;8.835093 +18490;4;12.342834;-1.6403198;-65.54718 +18490;6;-0.37974185;-0.4543638;0.021404492 +18491;7;0.9250656;-0.33307165;0.18252921;0.0;0.3793202;0.8345288;-0.39959732;0.0;-0.019231334 +18491;0;-0.23876953;5.154831;11.020935 +18491;3;-0.53715515;0.17687988;-0.13496399 +18491;12;0.21316086;0.064273626;0.21476485;0.9509508 +18493;0;-0.25787354;5.007553;11.111557 +18493;1;-0.30759063;4.231403;8.845153 +18493;2;-0.19575998;-1.360301;-1.8431959; +18494;3;-0.60069275;0.14633179;-0.14535522 +18495;0;-0.32476807;4.827011;11.216476 +18496;12;0.21187823;0.064498425;0.21464288;0.9512497 +18496;3;-0.6593323;0.11395264;-0.15634155 +18498;0;-0.3104248;4.660721;11.340485 +18498;1;-0.31612808;4.203737;8.858034 +18499;3;-0.7106476;0.07974243;-0.1691742 +18501;5;999.59454 +18501;4;12.643433;0.1586914;-64.19678 +18502;6;-0.41551697;-0.38980493;0.027366318 +18502;7;0.9103679;-0.3733815;0.17837223;0.0;0.4130252;0.8462744;-0.33649668;0.0;-0.025310226 +18502;0;-0.26264954;4.456436;11.483566 +18502;3;-0.7564697;0.045532227;-0.18017578 +18502;12;0.21030359;0.06453109;0.21445987;0.95163816 +18504;1;-0.3221095;4.171359;8.873112 +18504;0;-0.21009827;4.2711487;11.578934 +18504;3;-0.7937317;0.013168335;-0.19055176 +18505;0;-0.16233826;4.11911;11.707718 +18505;12;0.20851426;0.06435853;0.21421106;0.9520995 +18506;3;-0.8242645;-0.020431519;-0.200943 +18508;0;-0.147995;3.9955902;11.831726 +18508;1;-0.32557178;4.135362;8.88982 +18508;3;-0.84381104;-0.05279541;-0.21072388 +18511;4;12.643433;0.1586914;-64.19678 +18511;6;-0.5187617;-0.32565293;0.012507666 +18511;7;0.86638194;-0.46974662;0.16947107;0.0;0.49924135;0.8227907;-0.27161288;0.0;-0.01184998 +18511;0;-0.095443726;3.8245544;11.979553 +18511;12;0.2065679;0.06399892;0.21389323;0.9526193 +18512;3;-0.855423;-0.082733154;-0.21987915 +18512;0;-0.08111572;3.663025;12.046326 +18512;1;-0.32657644;4.0972185;8.907427 +18512;3;-0.8615265;-0.11328125;-0.22781372 +18513;2;-0.15243113;-0.12571478;-2.7436; +18516;0;-0.028564453;3.5205078;12.084488 +18516;12;0.20454332;0.063474335;0.21350554;0.9531781 +18516;3;-0.8560333;-0.14138794;-0.2351532 +18518;1;-0.3252562;4.0583644;8.925244 +18518;0;-0.047683716;3.425476;12.094025 +18518;3;-0.8413696;-0.16947937;-0.24247742 +18521;4;12.342834;-0.59051514;-64.34631 +18521;6;-0.6186982;-0.27600586;0.0039427294 +18521;7;0.81400466;-0.558024;0.16126248;0.0;0.58084595;0.78380156;-0.21971153;0.0;-0.0037934938 +18521;12;0.20251611;0.062813975;0.21304958;0.9537566 +18521;0;-0.057235718;3.3019562;12.113098 +18521;3;-0.8206024;-0.19819641;-0.25286865 +18522;0;-0.052444458;3.1736755;12.156036 +18522;3;-0.7876129;-0.22262573;-0.26263428 +18522;1;-0.32180157;4.02042;8.942526 +18525;12;0.20056772;0.06204383;0.21252699;0.95433515 +18525;0;-0.019012451;3.0691528;12.170349 +18526;3;-0.74790955;-0.24217224;-0.2730255 +18527;0;7.6293945E-5;2.9741364;12.251404 +18527;1;-0.3165519;3.9849179;8.9585905 +18527;3;-0.699646;-0.2574463;-0.28219604 +18532;12;0.19877653;0.061200634;0.21192512;0.95489794 +18532;4;12.342834;-0.59051514;-64.34631 +18532;6;-0.70163447;-0.23815194;-6.227364E-6 +18532;7;0.7637891;-0.62724906;0.15226549;0.0;0.64546585;0.7422308;-0.18018709;0.0;6.0516004E-6 +18532;0;0.0048675537;2.8743744;12.284805 +18532;3;-0.64468384;-0.2635498;-0.28829956 +18532;1;-0.3103608;3.9533157;8.972796 +18532;2;-0.31200147;0.8136499;-3.2159204; +18532;0;0.0048675537;2.8458557;12.318176 +18533;3;-0.5829773;-0.2611084;-0.29440308 +18535;0;0.009643555;2.7888489;12.322952 +18535;12;0.19721124;0.0603491;0.21125521;0.955425 +18535;3;-0.51638794;-0.25376892;-0.29745483 +18537;1;-0.3044628;3.9268858;8.984597 +18537;0;-0.01423645;2.765091;12.284805 +18537;3;-0.44369507;-0.23912048;-0.29989624 +18538;5;999.59454 +18538;4;13.243103;0.1586914;-65.24658 +18538;6;-0.73776907;-0.22139254;0.0011588661 +18539;7;0.7397994;-0.65622145;0.14856108;0.0;0.67282665;0.7219103;-0.16170944;0.0;-0.0011305809 +18539;0;0.009643555;2.7175903;12.237106 +18540;3;-0.36795044;-0.21896362;-0.30174255 +18540;12;0.19592117;0.059571873;0.21054307;0.95589626 +18542;1;-0.29983768;3.9065883;8.993596 +18542;0;-0.009475708;2.6605682;12.156036 +18542;3;-0.28974915;-0.19207764;-0.29930115 +18544;12;0.1949433;0.058936078;0.2098123;0.95629627 +18544;0;-0.052444458;2.641571;12.046326 +18544;3;-0.21278381;-0.1639862;-0.29745483 +18548;0;-0.095443726;2.608307;11.903259 +18548;3;-0.13398743;-0.13282776;-0.29318237 +18548;1;-0.29741833;3.8929496;8.999589 +18549;4;12.792969;1.6586304;-65.84625 +18549;6;-0.66206884;-0.21570922;0.008018114 +18549;7;0.78764176;-0.60050297;0.137901;0.0;0.6160836;0.7704433;-0.16388379;0.0;-0.007832208 +18549;0;-0.11933899;2.575058;11.764954 +18552;3;-0.053955078;-0.0967865;-0.2889099 +18552;12;0.19429386;0.058498163;0.20908782;0.95661396 +18552;2;-0.27195993;1.2286148;-3.0492373; +18552;0;-0.147995;2.608307;11.645706 +18552;3;0.026046753;-0.058914185;-0.28219604 +18552;1;-0.2976393;3.8861315;9.002527 +18553;0;-0.15278625;2.6463165;11.454941 +18553;12;0.19397913;0.058284257;0.20838664;0.95684385 +18554;3;0.1060791;-0.020431519;-0.27790833 +18556;1;-0.300909;3.886404;9.002301 +18556;0;-0.147995;2.7223206;11.259399 +18556;3;0.18487549;0.015609741;-0.2730255 +18559;4;12.342834;3.0090332;-65.84625 +18559;6;-0.5568253;-0.23720956;0.013143372 +18559;7;0.8472317;-0.5136946;0.13533823;0.0;0.53107;0.82516485;-0.19252959;0.0;-0.012774956 +18559;0;-0.19577026;2.7460938;11.068634 +18560;3;0.26063538;0.05104065;-0.2681427 +18560;12;0.19400579;0.05831996;0.20771737;0.9569817 +18560;0;-0.20054626;2.8411102;10.820633 +18560;1;-0.3072086;3.8936503;8.998957 +18561;3;0.3327179;0.085250854;-0.26509094 +18563;0;-0.21966553;2.864853;10.620316 +18564;3;0.40112305;0.11395264;-0.26202393 +18564;12;0.19436808;0.058602568;0.20708601;0.9570278 +18565;1;-0.3163123;3.9074097;8.992675 +18565;0;-0.19577026;2.9076233;10.386612 +18565;3;0.4628296;0.1377716;-0.26080322 +18569;4;11.8927;1.2084961;-65.24658 +18569;6;-0.5156971;-0.27290654;0.018846096 +18569;7;0.8672898;-0.474891;0.14928772;0.0;0.49747255;0.8377536;-0.22514383;0.0;-0.018147558 +18569;12;0.1950451;0.059110135;0.20647715;0.9569904 +18569;0;-0.19099426;2.9646301;10.110016 +18569;3;0.51963806;0.15487671;-0.25775146 +18574;1;-0.3273014;3.9266534;8.983896 +18574;0;-0.22442627;3.0026398;9.876312 +18574;2;-0.16341928;1.1062768;-1.7240152; +18574;3;0.56729126;0.16526794;-0.2571411 +18574;0;-0.21487427;3.0691528;9.675995 +18574;12;0.19599211;0.059785176;0.20588519;0.95688254 +18574;3;0.60943604;0.1695404;-0.2571411 +18576;1;-0.33917207;3.950257;8.973101 +18576;0;-0.20533752;3.0738983;9.4852295 +18576;3;0.6430359;0.1683197;-0.25836182 +18576;5;999.59454 +18577;4;12.792969;2.4093628;-65.097046 +18577;6;-0.46942633;-0.3133237;0.021644754 +18577;7;0.8886013;-0.43035057;0.15870117;0.0;0.458218;0.8484087;-0.26502603;0.0;-0.020589357 +18577;0;-0.21009827;3.1404114;9.280151 +18578;12;0.19716206;0.060556;0.20529087;0.9567214 +18578;3;0.6711273;0.1646576;-0.26019287 +18579;1;-0.35104853;3.977001;8.960822 +18579;0;-0.19577026;3.1974335;9.089371 +18580;3;0.69555664;0.15916443;-0.26202393 +18581;0;-0.143219;3.2401886;8.86998 +18582;12;0.19850345;0.061360124;0.20468357;0.9565228 +18582;3;0.71450806;0.14938354;-0.26446533 +18584;1;-0.36240226;4.005978;8.9474535 +18584;0;-0.13366699;3.259201;8.688751 +18584;3;0.72976685;0.13839722;-0.26875305 +18586;4;11.29303;0.45928955;-65.69672 +18586;6;-0.41148221;-0.3588245;0.015382699 +18586;7;0.91426;-0.3744944;0.15453993;0.0;0.40487185;0.85815555;-0.31567058;0.0;-0.014402411 +18587;0;-0.11456299;3.3209534;8.488449 +18587;3;0.74443054;0.12617493;-0.2705841 +18587;12;0.19997223;0.062160622;0.20405415;0.95629966 +18589;0;-0.07635498;3.3209534;8.292908 +18589;1;-0.372962;4.0366907;8.933204 +18589;2;-0.2388129;0.85193443;-0.06001854; +18589;3;0.7542114;0.11090088;-0.27668762 +18592;12;0.20154592;0.06293191;0.20339058;0.9560603 +18594;1;-0.3823057;4.068242;8.918484 +18597;12;0.20317848;0.06364072;0.20268996;0.95581645 +18598;0;-0.047683716;3.3494568;8.097366 +18598;3;0.76275635;0.09501648;-0.27973938 +18598;0;-0.038131714;3.3542175;7.9208984 +18598;3;0.7682648;0.080963135;-0.28645325 +18598;4;13.093567;2.708435;-66.29639 +18598;6;-0.4230836;-0.40056497;0.004814027 +18598;7;0.91104597;-0.3780734;0.16448641;0.0;0.41228098;0.8396477;-0.35357606;0.0;-0.0044329353 +18598;0;0.03352356;3.3114624;7.849365 +18598;3;0.7743683;0.06692505;-0.29196167 +18599;0;0.08607483;3.3542175;7.7492065 +18599;1;-0.3904863;4.100305;8.903434 +18599;3;0.775589;0.053482056;-0.29501343 +18601;0;0.1434021;3.3827057;7.6108856 +18601;12;0.20486028;0.06428712;0.20195392;0.9555701 +18601;3;0.77619934;0.044311523;-0.29989624 +18603;0;0.20072937;3.3874664;7.5441284 +18603;1;-0.39760593;4.1326413;8.888155 +18603;3;0.77497864;0.038208008;-0.30233765 +18605;4;12.643433;2.2598267;-66.14685 +18605;6;-0.46081775;-0.42190662;-0.026601087 +18605;7;0.9002157;-0.4056866;0.15820913;0.0;0.43476763;0.817146;-0.37848312;0.0;0.02426557 +18606;0;0.23416138;3.415985;7.434433 +18606;3;0.7688751;0.03515625;-0.30477905 +18606;12;0.20657052;0.06487474;0.2011871;0.9553238 +18608;0;0.26760864;3.449234;7.300888 +18608;1;-0.40422267;4.164884;8.872793 +18608;2;-0.54324514;0.8072872;1.1745491; +18608;3;0.76397705;0.032714844;-0.30784607 +18610;0;0.28193665;3.4634857;7.2341156 +18610;12;0.20828606;0.06543184;0.20040128;0.95507854 +18610;3;0.7572632;0.03086853;-0.30784607 +18612;0;0.34883118;3.4634857;7.1196594 +18613;1;-0.41063514;4.1966977;8.857495 +18613;3;0.74871826;0.028427124;-0.30906677 +18615;4;13.243103;0.9094238;-65.24658 +18615;6;-0.51498157;-0.45229203;-0.04895634 +18615;7;0.8797925;-0.44299495;0.17239697;0.0;0.47331578;0.7827911;-0.40399307;0.0;0.04401608 +18615;0;0.36791992;3.458725;7.081497 +18616;3;0.7377167;0.026611328;-0.31089783 +18616;12;0.20998226;0.06596689;0.19960383;0.9548373 +18617;5;999.59454 +18617;0;0.4156952;3.4634857;7.009964 +18617;1;-0.41680542;4.227749;8.842427 +18618;3;0.72610474;0.026611328;-0.31028748 +18620;0;0.42526245;3.5205078;6.9956665 +18620;12;0.21164419;0.06648012;0.19880494;0.95460135 +18620;3;0.71388245;0.027832031;-0.31150818 +18622;0;0.4300232;3.515747;6.9002686 +18622;1;-0.42294905;4.2578616;8.827675 +18622;3;0.69862366;0.026611328;-0.31150818 +18624;4;11.743164;1.05896;-66.29639 +18624;6;-0.47769502;-0.47044212;-0.06223929 +18624;7;0.8992991;-0.40979168;0.15274835;0.0;0.43380573;0.79158556;-0.43035448;0.0;0.055442296 +18625;0;0.45391846;3.5442505;6.928894 +18625;3;0.68273926;0.026611328;-0.31150818 +18625;12;0.21325672;0.066980265;0.19800752;0.9543733 +18627;0;0.46824646;3.5822601;6.881195 +18627;1;-0.42905343;4.2867303;8.813396 +18628;3;0.66197205;0.02720642;-0.31028748 +18628;2;-0.8596467;0.80232334;1.7845621; +18630;0;0.46824646;3.639267;6.895508 +18630;12;0.214807;0.067463785;0.19721305;0.9541559 +18630;3;0.6430359;0.030273438;-0.30906677 +18632;0;0.46824646;3.6962738;6.8668976 +18632;1;-0.43523246;4.314061;8.799747 +18633;3;0.62286377;0.03149414;-0.30784607 +18636;4;12.643433;-1.1901855;-65.69672 +18636;6;-0.5241066;-0.49282873;-0.06808355 +18636;7;0.87987316;-0.44088647;0.17732018;0.0;0.4714139;0.76274294;-0.44271007;0.0;0.059935145 +18637;0;0.49214172;3.7390442;6.8668976 +18637;3;0.60087585;0.033935547;-0.30477905 +18637;12;0.21627581;0.0679326;0.19642664;0.9539531 +18637;0;0.47302246;3.7675476;6.847809 +18639;17;1;38dead6d7725;5797;1348;-74; +18640;17;1;38dead6d60ff;6767;2286;-63; +18641;17;1;1c1bb5efa29a;5473;1992;-62; +18641;17;1;1c1bb5ecd182;7480;2698;-66; +18641;1;-0.44156465;4.339896;8.786719 +18641;3;0.57888794;0.037597656;-0.30355835 +18642;0;0.4443512;3.8245544;6.876419 +18642;12;0.21766172;0.068395935;0.19565393;0.95376366 +18642;3;0.5562897;0.043701172;-0.30233765 +18642;1;-0.44821948;4.3637347;8.774568 +18642;0;0.4300232;3.843567;6.8621216 +18642;3;0.53063965;0.047973633;-0.30111694 +18644;4;12.942505;-0.74157715;-64.497375 +18644;6;-0.50911367;-0.5097396;-0.06258438 +18644;7;0.88634205;-0.42544067;0.18275137;0.0;0.45980155;0.7621712;-0.45571643;0.0;0.054592468 +18644;0;0.4347992;3.862564;6.847809 +18644;3;0.50497437;0.05104065;-0.30111694 +18645;12;0.21893641;0.068853855;0.19490442;0.9535923 +18646;0;0.44914246;3.843567;6.890732 +18647;1;-0.4552223;4.3854394;8.763378 +18647;2;-0.9471346;0.62392855;1.884448; +18647;3;0.47627258;0.05531311;-0.29930115 +18648;0;0.4156952;3.9290771;6.895508 +18649;12;0.22009236;0.06930731;0.19417182;0.9534428 +18649;3;0.44511414;0.05836487;-0.29623413 +18651;0;0.4061432;3.9718475;6.9050446 +18651;1;-0.46253917;4.404796;8.753282 +18651;3;0.4139557;0.065078735;-0.29684448 +18653;5;999.59454 +18654;4;12.792969;-1.0406494;-64.64691 +18654;6;-0.49268597;-0.5212457;-0.058750644 +18654;7;0.8933753;-0.4101803;0.18339278;0.0;0.44641685;0.7640597;-0.46575195;0.0;0.050919224 +18654;0;0.39179993;4.009842;6.9908905 +18655;3;0.37852478;0.07058716;-0.29379272 +18655;12;0.22111796;0.06975195;0.19345644;0.9533185 +18656;0;0.3297119;4.057358;6.9813538 +18657;1;-0.47037145;4.4214444;8.744467 +18657;3;0.34492493;0.07608032;-0.29379272 +18658;0;0.3106079;4.0763702;7.062439 +18658;12;0.22199094;0.07019758;0.19276442;0.95322317 +18659;3;0.31193542;0.0821991;-0.29379272 +18661;1;-0.4787597;4.43523;8.737026 +18661;0;0.29148865;4.1381226;7.1053467 +18661;3;0.27774048;0.08830261;-0.29379272 +18663;4;12.342834;-1.3412476;-65.54718 +18663;6;-0.44460094;-0.52700895;-0.041000854 +18663;7;0.91089034;-0.37173995;0.17913148;0.0;0.41112474;0.7802886;-0.47130254;0.0;0.035427738 +18663;0;0.26760864;4.166626;7.1959686 +18664;12;0.22270285;0.070639916;0.19209239;0.95316005 +18664;3;0.24168396;0.097457886;-0.29318237 +18665;0;0.24848938;4.1618805;7.2388916 +18665;1;-0.48779678;4.446076;8.731012 +18666;3;0.20809937;0.109069824;-0.29196167 +18666;2;-0.8572734;0.3959775;1.6749125; +18669;0;0.20550537;4.2046356;7.2865753 +18671;12;0.22324751;0.07108488;0.19143909;0.95313096 +18671;3;0.17510986;0.12188721;-0.29135132 +18671;1;-0.49784198;4.4540253;8.726392 +18671;0;0.18640137;4.214142;7.358124 +18671;3;0.1402893;0.1353302;-0.29013062 +18676;12;0.2236222;0.07155142;0.1908103;0.95313424 +18676;4;13.542175;-0.14038086;-65.69672 +18676;6;-0.43941078;-0.5199805;-0.025327314 +18676;7;0.91006505;-0.36917984;0.1883821;0.0;0.41388232;0.7853873;-0.46029148;0.0;0.021977425 +18676;0;0.1625061;4.199875;7.4105835 +18676;3;0.107910156;0.14816284;-0.28707886 +18677;1;-0.50899154;4.4590683;8.723173 +18677;0;0.1338501;4.2426453;7.4630585 +18677;3;0.074920654;0.16099548;-0.28463745 +18679;0;0.07652283;4.275894;7.525055 +18679;12;0.22382893;0.072050504;0.19021547;0.95316714 +18679;3;0.04437256;0.17626953;-0.28341675 +18681;1;-0.52132785;4.461379;8.721262 +18682;0;7.6293945E-5;4.2711487;7.601364 +18682;3;0.014450073;0.18725586;-0.27973938 +18683;4;11.593628;-0.440979;-64.19678 +18683;6;-0.35723737;-0.5119278;-1.0036876E-5 +18683;7;0.93686825;-0.30485806;0.17128801;0.0;0.3496827;0.81676185;-0.45893583;0.0;8.750166E-6 +18683;0;-0.06201172;4.2711487;7.6681366 +18683;3;-0.014266968;0.2025299;-0.27851868 +18684;12;0.22387029;0.07258759;0.18965432;0.9532284 +18685;1;-0.5348298;4.461067;8.720605 +18686;0;-0.10978699;4.266403;7.815979 +18688;3;-0.0435791;0.21780396;-0.27790833 +18689;0;-0.12890625;4.190384;7.897049 +18689;2;-0.6473337;0.23031521;1.195653; +18689;12;0.22375277;0.07315815;0.18912767;0.95331705 +18689;3;-0.07106018;0.23368835;-0.27668762 +18690;0;-0.21966553;4.1951294;7.9685974 +18690;1;-0.54969054;4.458129;8.721184 +18690;3;-0.09916687;0.2477417;-0.27607727 +18692;5;999.58826 +18692;4;14.143372;-1.0406494;-64.34631 +18692;6;-0.40036824;-0.4844325;0.027559418 +18693;7;0.915566;-0.34491172;0.20682028;0.0;0.40142757;0.8149561;-0.41797403;0.0;-0.024385327 +18693;0;-0.27697754;4.123871;8.102127 +18693;3;-0.12908936;0.25933838;-0.27424622 +18693;12;0.22347848;0.07377792;0.18862909;0.95343244 +18696;1;-0.5658638;4.452575;8.722986 +18697;0;-0.37728882;4.0811005;8.159363 +18697;3;-0.15904236;0.2685089;-0.2730255 +18698;0;-0.43463135;4.0763702;8.2595215 +18698;3;-0.1895752;0.27217102;-0.2705841 +18698;12;0.22304963;0.074442185;0.1881588;0.95357406 +18700;1;-0.5828374;4.4443297;8.726072 +18701;0;-0.5015106;4.024109;8.364441 +18701;3;-0.2225647;0.27156067;-0.2681427 +18702;4;13.243103;-1.4907837;-65.24658 +18702;6;-0.32999045;-0.44771072;0.059885766 +18702;7;0.93595415;-0.29209736;0.19664465;0.0;0.34796444;0.8528037;-0.3894184;0.0;-0.05395119 +18702;0;-0.59706116;3.9480896;8.564758 +18702;3;-0.2555542;0.2685089;-0.26080322 +18702;12;0.22246143;0.07512133;0.187714;0.95374584 +18707;1;-0.5997996;4.433055;8.730658 +18707;0;-0.6257019;3.8910675;8.698288 +18707;3;-0.28730774;0.2624054;-0.2571411 +18708;2;-0.24323618;0.3794136;0.46972847; +18708;0;-0.6495819;3.8055573;8.81752 +18708;12;0.22170967;0.075767264;0.18729654;0.95395195 +18708;3;-0.32092285;0.2538452;-0.2546997 +18709;1;-0.6162599;4.4186554;8.736808 +18710;0;-0.7403717;3.663025;8.903381 +18710;3;-0.35328674;0.24101257;-0.2498169 +18712;4;14.143372;-0.59051514;-66.29639 +18712;6;-0.3318172;-0.38910094;0.08296536 +18712;7;0.93195885;-0.30141112;0.2015046;0.0;0.35436365;0.8747798;-0.33043396;0.0;-0.0766757 +18712;0;-0.816803;3.6012573;8.994003 +18712;3;-0.3868866;0.22207642;-0.24491882 +18713;12;0.2207916;0.076359734;0.18689758;0.95419586 +18713;0;-0.883667;3.525238;9.094147 +18714;1;-0.63149726;4.4013095;8.7444725 +18714;3;-0.41926575;0.19581604;-0.23698425 +18716;0;-0.90278625;3.4777374;9.21814 +18716;12;0.21972819;0.076857366;0.18651928;0.95447534 +18717;3;-0.44674683;0.1695404;-0.23088074 +18718;0;-0.90756226;3.425476;9.365997 +18718;1;-0.6444259;4.381124;8.753661 +18719;3;-0.47485352;0.14389038;-0.22537231 +18721;4;13.392639;-2.6901245;-67.49725 +18721;6;-0.3155;-0.34911886;0.09659811 +18721;7;0.9359724;-0.2915733;0.19733408;0.0;0.3402087;0.8932934;-0.29374284;0.0;-0.090629674 +18721;0;-0.90756226;3.3209534;9.4852295 +18721;3;-0.50050354;0.11578369;-0.21865845 +18721;12;0.2185326;0.07720413;0.18615772;0.95479226 +18723;0;-0.859787;3.2496948;9.628311 +18723;1;-0.65480804;4.358383;8.7642355 +18723;2;0.14071459;0.8647542;-0.4344988; +18724;3;-0.5237274;0.088912964;-0.21131897 +18726;0;-0.855011;3.1879272;9.728455 +18726;12;0.21722548;0.077391595;0.18580689;0.9551437 +18727;3;-0.5420532;0.062026978;-0.2021637 +18731;0;-0.8120117;3.145172;9.814301 +18732;1;-0.6624759;4.333574;8.775953 +18732;3;-0.5597534;0.03515625;-0.19299316 +18732;5;999.58826 +18732;0;-0.826355;3.078659;9.895386 +18733;3;-0.570755;0.008285522;-0.18139648 +18733;4;14.743042;0.7598877;-65.54718 +18733;6;-0.42457935;-0.3006435;0.08331581 +18733;7;0.8978995;-0.39346054;0.19739652;0.0;0.43296474;0.87034076;-0.23462449;0.0;-0.07948674 +18733;12;0.21583423;0.07742112;0.18547164;0.9555218 +18733;1;-0.6674205;4.3072796;8.788515 +18733;0;-0.8120117;3.0263977;9.976471 +18733;3;-0.57870483;-0.019195557;-0.17163086 +18735;0;-0.7976837;2.9646301;10.043243 +18736;3;-0.57992554;-0.046081543;-0.16184998 +18736;12;0.2143886;0.07729928;0.18515806;0.95591784 +18737;0;-0.7738037;2.9076233;10.119553 +18738;1;-0.6695762;4.280279;8.801533 +18738;3;-0.5750427;-0.07234192;-0.15390015 +18740;4;14.442444;-0.29144287;-65.097046 +18740;6;-0.48519728;-0.27901754;0.07631768 +18740;7;0.87221485;-0.44834623;0.19551703;0.0;0.48360014;0.850373;-0.20735629;0.0;-0.07329501 +18740;0;-0.7929077;2.8696136;10.191071 +18741;12;0.21293163;0.07703297;0.18486744;0.9563211 +18741;3;-0.56282043;-0.0967865;-0.14352417 +18742;0;-0.7499237;2.8458557;10.257843 +18743;1;-0.6691207;4.25364;8.814473 +18743;2;0.09567362;1.2694225;-1.2009697; +18743;3;-0.5463257;-0.11755371;-0.13435364 +18744;0;-0.6782532;2.7935944;10.3246155 +18745;12;0.2115209;0.07663732;0.18459046;0.95671946 +18745;3;-0.52311707;-0.13526917;-0.12519836 +18747;0;-0.65914917;2.7841034;10.362778 +18747;1;-0.6663551;4.2283993;8.826818 +18747;3;-0.49440002;-0.15237427;-0.11846924 +18749;4;13.693237;0.009155273;-64.34631 +18749;6;-0.51664674;-0.26196057;0.0635218 +18749;7;0.85960627;-0.4771152;0.1828609;0.0;0.5072649;0.83981735;-0.19336271;0.0;-0.06131345 +18750;0;-0.6161499;2.741333;10.420013 +18750;3;-0.46018982;-0.1639862;-0.105651855 +18751;12;0.21020813;0.076145254;0.18432815;0.9570986 +18752;0;-0.5922699;2.7603455;10.477234 +18752;1;-0.6617836;4.2055736;8.838059 +18752;3;-0.42536926;-0.17314148;-0.097091675 +18754;0;-0.5206146;2.7128296;10.529694 +18755;12;0.20904313;0.075591795;0.18408278;0.9574448 +18755;3;-0.3832245;-0.17741394;-0.0879364 +18757;0;-0.5062866;2.7128296;10.548782 +18757;1;-0.655966;4.1858425;8.847855 +18757;3;-0.34046936;-0.17863464;-0.076934814 +18759;4;13.243103;0.1586914;-64.497375 +18759;6;-0.5552222;-0.251438;0.047957994 +18759;7;0.8425191;-0.5105568;0.1717364;0.0;0.5366616;0.8230625;-0.18590996;0.0;-0.046432182 +18759;0;-0.46328735;2.741333;10.567856 +18760;3;-0.29403687;-0.17436218;-0.069610596 +18760;12;0.20805715;0.075017355;0.1838611;0.9577473 +18761;0;-0.37728882;2.7460938;10.558319 +18761;1;-0.64958656;4.169897;8.855852 +18762;2;-0.13601708;1.444468;-1.6318626; +18762;3;-0.24638367;-0.16825867;-0.057998657 +18764;0;-0.35820007;2.7460938;10.548782 +18764;12;0.20727819;0.07446259;0.18366861;0.95799637 +18764;3;-0.19935608;-0.15603638;-0.04762268 +18766;0;-0.3152008;2.7365875;10.501083 +18766;1;-0.64330274;4.1580377;8.861884 +18766;3;-0.15048218;-0.14016724;-0.036010742 +18768;0;-0.3056488;2.7841034;10.477234 +18769;4;14.892578;0.45928955;-65.24658 +18769;6;-0.6438763;-0.2596211;0.02916439 +18769;7;0.794941;-0.58018243;0.17736177;0.0;0.60603184;0.7729722;-0.18772149;0.0;-0.028183019 +18769;12;0.20671624;0.073969655;0.1835139;0.9581856 +18769;3;-0.10221863;-0.12243652;-0.023803711 +18770;5;999.58826 +18771;0;-0.28652954;2.8363647;10.424774 +18771;1;-0.6378241;4.150449;8.865837 +18771;3;-0.05458069;-0.09983826;-0.014022827 +18773;0;-0.28652954;2.8838654;10.358002 +18774;12;0.20637424;0.0735791;0.18340963;0.95830935 +18774;3;-0.008773804;-0.079071045;3.0517578E-5 +18776;0;-0.26264954;2.945633;10.262619 +18776;1;-0.63364494;4.1471114;8.867698 +18776;3;0.03277588;-0.05279541;0.011627197 +18778;4;13.093567;1.05896;-65.54718 +18778;6;-0.5366862;-0.27942467;0.025587251 +18778;7;0.8555186;-0.4914601;0.16295671;0.0;0.5171877;0.82607496;-0.22386825;0.0;-0.024592148 +18778;0;-0.23876953;3.0026398;10.148163 +18778;3;0.0718689;-0.030807495;0.023849487 +18779;12;0.20624544;0.07331524;0.18336259;0.95836633 +18780;0;-0.25787354;3.0976562;10.005081 +18781;1;-0.63095826;4.1476564;8.867635 +18781;2;-0.3810959;1.2962146;-1.4889545; +18781;3;0.103012085;-0.009429932;0.03668213 +18783;0;-0.28652954;3.1926727;9.9049225 +18783;12;0.20630784;0.07318968;0.18338057;0.95835894 +18783;3;0.13356018;0.008880615;0.051330566 +18785;0;-0.29130554;3.259201;9.752304 +18785;1;-0.629591;4.151312;8.866022 +18786;3;0.15983582;0.028427124;0.06416321 +18788;4;12.643433;1.2084961;-65.69672 +18788;6;-0.45052803;-0.32239455;0.029861553 +18788;7;0.89569676;-0.41300678;0.16478091;0.0;0.44376275;0.8538376;-0.27209547;0.0;-0.02831886 +18788;0;-0.3104248;3.335205;9.613998 +18788;3;0.18182373;0.041259766;0.07699585 +18789;12;0.20651974;0.07317907;0.18345772;0.95829934 +18790;0;-0.30085754;3.425476;9.494766 +18791;1;-0.62920886;4.15763;8.863087 +18791;3;0.19770813;0.052261353;0.087387085 +18793;0;-0.34864807;3.4967346;9.318314 +18793;12;0.20686005;0.073267095;0.18361366;0.9581894 +18794;3;0.20869446;0.05958557;0.09837341 +18797;0;-0.34864807;3.5632477;9.156143 +18797;3;0.21542358;0.065078735;0.10752869 +18797;1;-0.6293405;4.1656327;8.85932 +18798;4;13.842773;1.2084961;-65.24658 +18798;6;-0.4269599;-0.37088606;0.038059663 +18798;7;0.9038587;-0.38594908;0.18461494;0.0;0.4263587;0.84833926;-0.3139088;0.0;-0.035463292 +18798;0;-0.35820007;3.6440125;9.003525 +18798;3;0.21786499;0.06692505;0.11853027 +18799;12;0.20728205;0.07341165;0.18382372;0.95804685 +18800;1;-0.62949896;4.174573;8.855099 +18800;2;-0.3468864;0.7490449;-0.5499172; +18801;0;-0.3343048;3.7247925;8.860458 +18801;3;0.21603394;0.065704346;0.12463379 +18802;0;-0.39163208;3.7770538;8.722153 +18803;3;0.21298218;0.062026978;0.13258362 +18803;12;0.20774962;0.07357976;0.18408214;0.95788306 +18806;1;-0.6293333;4.183697;8.850803 +18807;0;-0.40596008;3.796051;8.6362915 +18807;3;0.2068634;0.057144165;0.13748169 +18808;4;13.392639;2.708435;-65.097046 +18808;6;-0.34330323;-0.4137204;0.046971723 +18808;7;0.9342555;-0.30820101;0.17938456;0.0;0.35400322;0.86220247;-0.36233762;0.0;-0.04299297 +18808;0;-0.34864807;3.8910675;8.550446 +18808;3;0.19953918;0.05531311;0.13929749 +18808;5;999.58826 +18808;12;0.20822667;0.07373668;0.18436953;0.9577122 +18810;0;-0.3390808;3.9433289;8.450302 +18810;1;-0.6285685;4.1926084;8.846641 +18810;3;0.18792725;0.053482056;0.1423645 +18812;0;-0.32476807;4.0050964;8.35968 +18812;12;0.208696;0.07386733;0.18468344;0.95753944 +18813;3;0.17572021;0.052261353;0.14419556 +18818;1;-0.6275431;4.20085;8.842802 +18819;0;-0.3343048;4.057358;8.278595 +18819;3;0.16105652;0.049819946;0.14724731 +18819;0;-0.34864807;4.100113;8.230911 +18819;12;0.20912893;0.07398161;0.18501015;0.95737296 +18820;3;0.14700317;0.048599243;0.14602661 +18820;4;12.193298;1.2084961;-63.746643 +18820;6;-0.30921516;-0.46179765;0.042333074 +18820;7;0.94598114;-0.27243546;0.17578013;0.0;0.32200044;0.85279363;-0.41116777;0.0;-0.037887495 +18820;2;-0.3119722;0.27182102;0.4006548; +18821;1;-0.6263191;4.208103;8.839439 +18821;0;-0.3438568;4.1571198;8.14505 +18821;3;0.13111877;0.046157837;0.14602661 +18822;12;0.20951085;0.07407656;0.18534727;0.95721704 +18823;0;-0.3534088;4.2283936;8.11644 +18823;3;0.11279297;0.043701172;0.14541626 +18824;0;-0.36775208;4.2711487;8.059219 +18824;1;-0.6249531;4.21419;8.836637 +18824;3;0.095077515;0.038208008;0.1429596 +18828;4;13.392639;0.30975342;-65.54718 +18828;6;-0.3215187;-0.48690534;0.0455996 +18828;7;0.94103044;-0.27928296;0.1909521;0.0;0.3359147;0.83849686;-0.42905042;0.0;-0.040286276 +18828;0;-0.39163208;4.2711487;7.992447 +18828;3;0.07675171;0.033935547;0.1423645 +18828;12;0.20982856;0.07415141;0.18568182;0.9570767 +18830;0;-0.41073608;4.323395;7.9685974 +18830;1;-0.6233366;4.218855;8.834524 +18830;3;0.059036255;0.029647827;0.14051819 +18832;0;-0.43463135;4.3614197;7.9495087 +18832;3;0.04437256;0.024765015;0.13807678 +18832;12;0.2100725;0.07419686;0.18601367;0.95695525 +18834;1;-0.6214819;4.222165;8.833074 +18834;0;-0.45851135;4.366165;7.906601 +18834;3;0.028503418;0.01927185;0.13441467 +18837;4;13.392639;1.3595581;-66.596985 +18837;6;-0.27545714;-0.50383425;0.05792608 +18837;7;0.9530848;-0.23818919;0.1868026;0.0;0.29842728;0.84272337;-0.44806072;0.0;-0.050699696 +18837;0;-0.47283936;4.404175;7.897049 +18837;3;0.01322937;0.014389038;0.13014221 +18839;17;1;38dead6d7725;7227;713;-66; +18839;17;1;38dead6d60ff;10083;2182;-65; +18840;17;1;1c1bb5efa29a;5185;1147;-65; +18840;17;1;1c1bb5ecd182;6223;3118;-67; +18840;12;0.21024506;0.074212745;0.1863385;0.9568529 +18840;0;-0.46328735;4.4516907;7.863678 +18840;1;-0.6193642;4.224251;8.832225 +18840;2;-0.24081302;-0.0821538;0.84650135; +18841;3;-0.0014343262;0.009506226;0.12585449 +18841;0;-0.45851135;4.4231873;7.787369 +18841;3;-0.017303467;0.0052337646;0.12281799 +18842;12;0.2103561;0.07419584;0.18664736;0.95676965 +18844;0;-0.46806335;4.432678;7.7969055 +18844;3;-0.031967163;-0.0014953613;0.11853027 +18844;1;-0.6170086;4.2250915;8.831988 +18846;4;13.542175;-0.74157715;-65.24658 +18846;6;-0.2925433;-0.5161765;0.05995998 +18846;7;0.94726336;-0.250815;0.19945881;0.0;0.31618956;0.8327615;-0.45445815;0.0;-0.05211671 +18846;0;-0.45373535;4.44693;7.7969055 +18847;3;-0.045410156;-0.007598877;0.114868164 +18847;5;999.58875 +18848;12;0.21040183;0.0741478;0.18693666;0.9567068 +18848;0;-0.45373535;4.470688;7.782593 +18849;1;-0.61429137;4.2247033;8.832363 +18849;3;-0.0594635;-0.014312744;0.10997009 +18850;0;-0.44418335;4.44693;7.7969055 +18851;12;0.2103858;0.07406318;0.18720962;0.9566635 +18851;3;-0.072280884;-0.019821167;0.106933594 +18853;0;-0.44418335;4.4897003;7.815979 +18853;1;-0.61118144;4.223128;8.833332 +18853;3;-0.085113525;-0.022262573;0.10205078 +18856;4;12.792969;-0.29144287;-64.64691 +18856;6;-0.27540687;-0.52070665;0.0567691 +18856;7;0.95308834;-0.2358979;0.18967;0.0;0.29866374;0.834777;-0.46254438;0.0;-0.049218923 +18857;0;-0.45851135;4.513443;7.7969055 +18857;3;-0.096725464;-0.026535034;0.09776306 +18857;12;0.210313;0.073941775;0.18746369;0.95663923 +18857;1;-0.6079838;4.2205763;8.834772 +18857;0;-0.43940735;4.53244;7.8016815 +18858;2;-0.19615883;-0.2224369;1.0222645; +18858;3;-0.10954285;-0.027145386;0.0922699 +18860;0;-0.47763062;4.53244;7.811203 +18860;12;0.2101884;0.07379947;0.18769556;0.956632 +18860;3;-0.121154785;-0.029586792;0.086761475 +18862;0;-0.43940735;4.546707;7.863678 +18862;3;-0.13153076;-0.030807495;0.08126831 +18863;1;-0.6048064;4.2169037;8.836743 +18864;4;13.842773;0.9094238;-65.24658 +18864;6;-0.29303122;-0.52355385;0.055820048 +18864;7;0.9478244;-0.25016272;0.19760443;0.0;0.31510997;0.82913053;-0.46178803;0.0;-0.04831773 +18864;0;-0.46328735;4.53244;7.854141 +18865;3;-0.14253235;-0.0320282;0.0763855 +18865;12;0.21000424;0.07363911;0.1879067;0.9566434 +18867;0;-0.45373535;4.4991913;7.882736 +18867;1;-0.6017391;4.2122655;8.839165 +18867;3;-0.15170288;-0.0320282;0.07331848 +18869;0;-0.44418335;4.4754486;7.939972 +18869;12;0.20976645;0.0734678;0.18809654;0.9566714 +18870;3;-0.15841675;-0.0332489;0.07028198 +18871;0;-0.44418335;4.480179;7.978134 +18871;1;-0.59872323;4.2067065;8.842016 +18872;3;-0.16758728;-0.034484863;0.067214966 +18874;4;12.942505;-0.14038086;-65.69672 +18874;6;-0.27942142;-0.5110126;0.05561767 +18874;7;0.9522309;-0.24056609;0.18810716;0.0;0.3015051;0.8384197;-0.4540343;0.0;-0.048487496 +18874;0;-0.46328735;4.4897003;8.054443 +18876;12;0.20948114;0.073287405;0.18827395;0.9567129 +18876;3;-0.1749115;-0.0332489;0.06538391 +18881;0;-0.48718262;4.465927;8.102127 +18882;1;-0.5958272;4.2004128;8.845204 +18882;2;-0.17759317;-0.2775898;0.8947449; +18882;3;-0.18040466;-0.030807495;0.06355286 +18882;0;-0.49195862;4.480179;8.149826 +18882;12;0.20915583;0.07310231;0.18843932;0.95676565 +18883;1;-0.5931746;4.1935544;8.848637 +18883;3;-0.18347168;-0.028366089;0.06416321 +18883;0;-0.47763062;4.4089203;8.235672 +18883;3;-0.18713379;-0.025314331;0.06355286 +18884;4;12.193298;-0.74157715;-64.94751 +18884;6;-0.2713263;-0.49082345;0.05793045 +18884;7;0.95448613;-0.23636964;0.18189491;0.0;0.2938519;0.8496803;-0.4378295;0.0;-0.051062904 +18884;0;-0.46806335;4.44693;8.269058 +18884;3;-0.19018555;-0.022262573;0.06416321 +18885;12;0.20879813;0.07291877;0.18859491;0.9568271 +18885;5;999.58875 +18886;0;-0.43940735;4.413666;8.35968 +18886;1;-0.5907203;4.186326;8.8522215 +18887;3;-0.1920166;-0.017974854;0.06477356 +18888;0;-0.48718262;4.4089203;8.416901 +18889;12;0.20841701;0.072745405;0.18876345;0.95689017 +18889;3;-0.19262695;-0.011871338;0.067840576 +18891;0;-0.43940735;4.380417;8.497986 +18891;1;-0.58860344;4.1788287;8.855905 +18891;3;-0.1932373;-0.0069885254;0.06965637 +18893;4;12.342834;1.3595581;-65.097046 +18893;6;-0.27932844;-0.47539967;0.05166123 +18893;7;0.9534421;-0.24513663;0.1756593;0.0;0.2980608;0.85464865;-0.42512986;0.0;-0.04591208 +18893;0;-0.43940735;4.347168;8.512299 +18894;3;-0.19262695;-2.746582E-4;0.07209778 +18894;12;0.20801826;0.07258636;0.18894318;0.9569536 +18895;0;-0.38685608;4.366165;8.564758 +18896;1;-0.5868042;4.171237;8.859603 +18896;2;-0.17415869;-0.21156836;0.4697981; +18896;3;-0.1907959;0.007659912;0.07209778 +18898;0;-0.4202881;4.375656;8.65538 +18898;12;0.20761204;0.072447516;0.18913966;0.95701355 +18898;3;-0.1907959;0.014389038;0.07455444 +18900;0;-0.42507935;4.3281555;8.693527 +18900;1;-0.58558905;4.163666;8.863244 +18901;3;-0.18835449;0.021102905;0.078826904 +18903;4;14.143372;0.30975342;-62.69684 +18903;6;-0.3707019;-0.46145758;0.048857164 +18903;7;0.9230834;-0.32437792;0.20662978;0.0;0.38210553;0.8345825;-0.3968214;0.0;-0.043729518 +18903;0;-0.4202881;4.3376617;8.698288 +18903;3;-0.18652344;0.02720642;0.08004761 +18904;12;0.20719992;0.07234217;0.18934797;0.9570696 +18905;0;-0.40596008;4.3329163;8.73645 +18905;1;-0.5847979;4.1562176;8.866792 +18905;3;-0.18469238;0.0345459;0.083099365 +18907;0;-0.4298401;4.347168;8.798447 +18908;12;0.20678946;0.07226478;0.18957679;0.95711887 +18908;3;-0.17796326;0.041259766;0.086761475 +18910;0;-0.4298401;4.3376617;8.831833 +18910;1;-0.58450305;4.149004;8.870188 +18910;3;-0.17614746;0.047973633;0.08920288 +18912;4;13.243103;0.9094238;-64.94751 +18912;6;-0.3272038;-0.4560662;0.048631035 +18912;7;0.9389442;-0.2885472;0.18741478;0.0;0.34129027;0.85015947;-0.40093642;0.0;-0.043643348 +18913;0;-0.40596008;4.3186646;8.86998 +18913;12;0.20638512;0.0722182;0.18982403;0.9571608 +18914;3;-0.1724701;0.054092407;0.0934906 +18916;0;-0.4298401;4.366165;8.893829 +18916;1;-0.5846224;4.1420774;8.873416 +18916;2;-0.20512706;-0.17764854;0.0874691; +18917;3;-0.16941833;0.06263733;0.095321655 +18917;0;-0.38208008;4.342407;8.946289 +18918;12;0.20599216;0.07220074;0.1900914;0.95719355 +18918;3;-0.16636658;0.06814575;0.10020447 +18920;0;-0.42507935;4.313904;8.974915 +18920;1;-0.58521026;4.1353474;8.876515 +18920;3;-0.16392517;0.073028564;0.102645874 +18922;4;13.243103;1.2084961;-65.24658 +18922;6;-0.33040217;-0.4476209;0.047327686 +18922;7;0.9382096;-0.29246107;0.1850115;0.0;0.34342945;0.85272014;-0.39360464;0.0;-0.04264901 +18923;0;-0.38685608;4.3091583;8.989227 +18923;3;-0.16270447;0.076690674;0.10508728 +18923;12;0.20560256;0.07221424;0.19037718;0.9572196 +18924;5;999.58875 +18925;0;-0.42507935;4.323395;9.03215 +18925;1;-0.5860712;4.1288834;8.879469 +18925;3;-0.16148376;0.0834198;0.10874939 +18927;0;-0.4298401;4.3186646;9.065521 +18928;12;0.20522372;0.072249934;0.19068094;0.9572377 +18928;3;-0.15841675;0.08647156;0.111816406 +18929;0;-0.4298401;4.3091583;9.041687 +18930;1;-0.5872831;4.1224756;8.882365 +18930;3;-0.1565857;0.09013367;0.11364746 +18932;4;12.942505;0.9094238;-65.24658 +18932;6;-0.32576764;-0.44430485;0.047504045 +18932;7;0.9398044;-0.28896374;0.18239473;0.0;0.3390126;0.8554215;-0.3915669;0.0;-0.04287573 +18932;0;-0.43940735;4.2711487;9.075058 +18932;3;-0.1565857;0.09135437;0.11730957 +18933;12;0.2048424;0.072307885;0.19100769;0.9572499 +18935;0;-0.4298401;4.299652;9.070297 +18935;1;-0.58863914;4.116234;8.885169 +18935;2;-0.21181488;-0.17160702;-0.15282536; +18935;3;-0.15475464;0.089523315;0.11975098 +18937;0;-0.45373535;4.256897;9.108459 +18937;12;0.2044683;0.07237775;0.19134644;0.9572569 +18938;3;-0.15292358;0.088912964;0.12281799 +18939;0;-0.44418335;4.252136;9.089371 +18939;1;-0.5898373;4.110083;8.887937 +18939;3;-0.15109253;0.08647156;0.1252594 +18941;4;13.093567;1.05896;-65.097046 +18941;6;-0.33160254;-0.43711144;0.048829593 +18941;7;0.937668;-0.29494908;0.18380372;0.0;0.3447075;0.8566222;-0.38389468;0.0;-0.04422097 +18942;0;-0.43463135;4.2711487;9.098923 +18942;3;-0.15109253;0.08279419;0.12831116 +18942;12;0.20410192;0.07244105;0.19169228;0.95726115 +18944;0;-0.42507935;4.2711487;9.13707 +18944;1;-0.59070873;4.104082;8.890652 +18945;3;-0.14926147;0.08035278;0.13075256 +18947;0;-0.4298401;4.252136;9.094147 +18947;12;0.2037445;0.07249256;0.19205318;0.957261 +18948;3;-0.14741516;0.07424927;0.13380432 +18949;1;-0.5911881;4.098219;8.893324 +18949;0;-0.46328735;4.2616425;9.079834 +18949;3;-0.14682007;0.06814575;0.13624573 +18954;4;13.093567;1.05896;-64.34631 +18954;6;-0.33093697;-0.4383306;0.05097956 +18954;7;0.9374821;-0.29421097;0.18592252;0.0;0.3449614;0.8563296;-0.3843192;0.0;-0.046140034 +18954;0;-0.41552734;4.252136;9.103683 +18954;3;-0.14619446;0.062026978;0.1399231 +18954;12;0.20339827;0.0725268;0.19242236;0.9572579 +18956;0;-0.44895935;4.2283936;9.117996 +18956;1;-0.59101796;4.092427;8.896002 +18956;3;-0.14375305;0.05531311;0.13929749 +18956;2;-0.1935631;-0.14022732;-0.22121334; +18957;12;0.20305978;0.07253007;0.19279869;0.9572538 +18957;0;-0.4202881;4.180893;9.098923 +18958;3;-0.13948059;0.047973633;0.1423645 +18959;1;-0.59020597;4.086813;8.898637 +18959;0;-0.41073608;4.2046356;9.089371 +18959;3;-0.13764954;0.041870117;0.14419556 +18962;13;68.53499 +18962;0;-0.40596008;4.2046356;9.127518 +18962;3;-0.13459778;0.03515625;0.14602661 +18962;4;13.243103;0.1586914;-65.69672 +18962;6;-0.35484213;-0.43130377;0.04444721 +18962;7;0.93032146;-0.3156241;0.18677123;0.0;0.3645173;0.8518281;-0.37618634;0.0;-0.04036351 +18962;5;999.58875 +18963;12;0.20273994;0.07250184;0.19317421;0.95724803 +18964;1;-0.5887093;4.081447;8.901198 +18964;0;-0.35820007;4.209381;9.13707 +18971;3;-0.13031006;0.02720642;0.14907837 +18972;1;-0.5864944;4.076455;8.903631 +18972;0;-0.34864807;4.190384;9.122772 +18972;3;-0.12483215;0.02293396;0.15151978 +18972;12;0.20244001;0.07243949;0.19354925;0.9572404 +18972;0;-0.3390808;4.190384;9.11322 +18972;3;-0.11810303;0.013763428;0.15579224 +18972;4;12.942505;0.45928955;-66.89758 +18972;6;-0.35098085;-0.4307225;0.03719042 +18972;7;0.93304896;-0.31241608;0.17836969;0.0;0.35815927;0.85326844;-0.3790183;0.0;-0.033785816 +18972;0;-0.29130554;4.2283936;9.098923 +18972;3;-0.11138916;0.011947632;0.1594696 +18972;12;0.20216857;0.07234656;0.19393232;0.9572274 +18978;1;-0.58355856;4.0720644;8.905832 +18979;2;-0.2666152;-0.10531187;-0.22088337; +18979;12;0.20193443;0.07222664;0.19432433;0.95720637 +18979;1;-0.58013034;4.0684347;8.907716 +18979;0;-0.30085754;4.1951294;9.117996 +18979;3;-0.10343933;0.0070648193;0.16374207 +18979;0;-0.27697754;4.233139;9.089371 +18979;3;-0.093063354;0.0033874512;0.16679382 +18979;0;-0.27697754;4.2283936;9.079834 +18979;3;-0.084503174;0.002166748;0.17106628 +18980;4;14.442444;0.7598877;-65.097046 +18981;6;-0.4140477;-0.43564743;0.030495236 +18981;7;0.90989757;-0.36474055;0.19761239;0.0;0.4139109;0.82998943;-0.37389207;0.0;-0.027642606 +18981;0;-0.24832153;4.256897;9.065521 +18981;3;-0.072906494;-8.69751E-4;0.17533875 +18982;12;0.20174612;0.07209212;0.19472657;0.9571745 +18982;1;-0.57631224;4.0657115;8.909206 +18983;0;-0.23399353;4.2616425;9.041687 +18984;3;-0.06373596;-2.746582E-4;0.17840576 +18985;0;-0.24832153;4.2949066;9.022598 +18985;12;0.20160967;0.0719522;0.19514242;0.95712894 +18985;3;-0.05029297;-2.746582E-4;0.18328857 +18987;1;-0.57231027;4.063996;8.910247 +18987;0;-0.22921753;4.313904;9.03215 +18988;3;-0.03869629;0.0015716553;0.18634033 +18990;4;13.542175;-0.440979;-64.94751 +18990;6;-0.4051351;-0.44545582;0.02537251 +18990;7;0.914445;-0.35568026;0.19308549;0.0;0.40406227;0.8293632;-0.38586324;0.0;-0.022894062 +18990;0;-0.21009827;4.342407;9.022598 +18990;3;-0.028915405;0.0046081543;0.18939209 +18990;12;0.20152815;0.07181617;0.1955718;0.9570688 +18992;1;-0.568251;4.0633764;8.9107895 +18992;2;-0.3715039;-0.2051754;-0.14239216; +18992;0;-0.19577026;4.3994293;8.965378 +18992;3;-0.017929077;0.005844116;0.1918335 +18995;0;-0.15278625;4.3614197;8.917694 +18995;12;0.2015052;0.07169325;0.19601803;0.95699143 +18996;3;-0.0069274902;0.010101318;0.19610596 +18998;1;-0.5642648;4.063739;8.910877 +18998;0;-0.15278625;4.4184265;8.960602 +18998;3;0.0028381348;0.011947632;0.19734192 +18999;4;13.243103;0.9094238;-66.89758 +18999;6;-0.3777707;-0.45805055;0.01704924 +18999;7;0.92657346;-0.33082688;0.17892791;0.0;0.37580287;0.83367395;-0.40467253;0.0;-0.015290999 +19000;12;0.2015349;0.0715873;0.1964651;0.95690143 +19000;0;-0.12890625;4.4611816;8.908142 +19002;3;0.012619019;0.016220093;0.19917297 +19002;5;999.58655 +19002;1;-0.56040454;4.065102;8.9105 +19002;0;-0.157547;4.5181885;8.912918 +19003;3;0.019332886;0.018661499;0.19978333 +19004;12;0.20161441;0.07150565;0.19693336;0.95679456 +19004;0;-0.147995;4.546707;8.893829 +19004;3;0.028503418;0.021713257;0.20100403 +19006;0;-0.138443;4.556198;8.836609 +19007;1;-0.556788;4.067244;8.909749 +19007;3;0.033996582;0.025375366;0.20100403 +19009;4;12.792969;1.6586304;-65.54718 +19009;6;-0.35641873;-0.47600344;0.015665699 +19009;7;0.93453276;-0.310132;0.17454685;0.0;0.35560456;0.83297235;-0.4239133;0.0;-0.013923628 +19009;0;-0.12890625;4.6417236;8.836609 +19009;3;0.038269043;0.030273438;0.20222473 +19010;12;0.2017341;0.071445264;0.19740379;0.9566769 +19011;1;-0.55346334;4.0700226;8.908687 +19012;0;-0.138443;4.636963;8.807983 +19012;2;-0.45439523;-0.4257555;0.011538506; +19012;3;0.04071045;0.033325195;0.20039368 +19014;12;0.20188297;0.07140871;0.19787842;0.9565502 +19014;0;-0.12411499;4.6797333;8.769836 +19014;3;0.043151855;0.03515625;0.20100403 +19016;0;-0.13366699;4.7082367;8.7603 +19016;1;-0.55042577;4.073134;8.907454 +19017;3;0.043151855;0.036376953;0.19978333 +19019;4;13.392639;0.30975342;-66.29639 +19019;6;-0.3717941;-0.49310955;0.015257084 +19019;7;0.928945;-0.32000732;0.18616252;0.0;0.36997372;0.82068187;-0.4354316;0.0;-0.013438912 +19019;0;-0.10499573;4.717743;8.731674 +19019;3;0.040100098;0.038208008;0.19795227 +19019;12;0.20204656;0.07138959;0.19834913;0.9564196 +19024;1;-0.5475032;4.076286;8.906192 +19024;0;-0.07635498;4.750992;8.722153 +19024;3;0.035827637;0.037597656;0.19551086 +19024;12;0.20221059;0.07137732;0.19882143;0.9562877 +19024;0;-0.08590698;4.7462463;8.70784 +19024;3;0.032165527;0.03515625;0.19366455 +19025;1;-0.54460984;4.079119;8.905071 +19025;0;-0.07156372;4.7462463;8.70784 +19025;3;0.028503418;0.032104492;0.19244385 +19031;4;13.842773;2.859497;-65.24658 +19031;6;-0.3751486;-0.4990241;0.0082181245 +19031;7;0.9289807;-0.321727;0.18299335;0.0;0.37005782;0.8169844;-0.44225973;0.0;-0.007215843 +19031;0;-0.057235718;4.7652435;8.669678 +19031;1;-0.5414866;4.0815706;8.904139 +19031;3;0.019332886;0.02720642;0.1918335 +19031;12;0.20235808;0.071360715;0.19928496;0.9561613 +19031;0;-0.10978699;4.803253;8.6792145 +19031;2;-0.49126804;-0.6379714;0.17342854; +19031;3;0.010177612;0.021713257;0.1906128 +19042;0;-0.08111572;4.784256;8.693527 +19042;3;0.004058838;0.016220093;0.18817139 +19042;1;-0.53794706;4.08328;8.903569 +19042;1;-0.53392714;4.0843067;8.90334 +19042;0;-0.06201172;4.7890015;8.70784 +19042;3;-0.0051116943;0.009506226;0.18634033 +19042;4;14.593506;-0.14038086;-64.497375 +19042;6;-0.4276939;-0.5028051;0.0071212463 +19042;7;0.90847826;-0.36343876;0.20634797;0.0;0.41788548;0.79730713;-0.43551454;0.0;-0.006239827 +19043;17;1;38dead6d7725;9534;1784;-71; +19044;17;1;38dead6d60ff;7821;806;-62; +19044;17;1;1c1bb5efa29a;7446;643;-66; +19045;17;1;1c1bb5ecd182;5082;1572;-63; +19045;0;-0.06201172;4.8079987;8.688751 +19045;3;-0.014266968;0.0027923584;0.18511963 +19045;5;999.58655 +19045;12;0.20248683;0.07132783;0.19974068;0.9560414 +19045;12;0.20258193;0.07126157;0.2001877;0.9559327 +19045;0;-0.06678772;4.8365173;8.6839905 +19045;3;-0.021591187;-0.0057678223;0.18328857 +19045;0;-0.047683716;4.817505;8.722153 +19045;3;-0.027694702;-0.012481689;0.18084717 +19045;0;-0.052444458;4.8222656;8.741211 +19045;3;-0.035629272;-0.020431519;0.17962646 +19045;1;-0.5293129;4.0846505;8.903458 +19049;12;0.20264542;0.07116004;0.20062342;0.9558355 +19050;4;13.243103;1.8096924;-66.14685 +19050;6;-0.36543673;-0.504117;0.0059996066 +19050;7;0.9329153;-0.31290242;0.17821613;0.0;0.36005735;0.81778336;-0.44898647;0.0;-0.005253232 +19051;0;-0.047683716;4.827011;8.793686 +19051;3;-0.044189453;-0.027755737;0.1771698 +19051;0;-0.07635498;4.7747498;8.793686 +19051;3;-0.049682617;-0.0332489;0.17533875 +19051;2;-0.50850224;-0.70471287;0.16450214; +19051;1;-0.52415437;4.084272;8.903937 +19051;12;0.20267917;0.07101741;0.2010459;0.95575017 +19052;0;-0.057235718;4.7794952;8.831833 +19052;3;-0.05517578;-0.039367676;0.17228699 +19052;12;0.20268013;0.0708354;0.20145506;0.9556773 +19054;0;-0.033355713;4.7794952;8.874756 +19054;1;-0.5185495;4.083288;8.9047165 +19054;3;-0.060684204;-0.042419434;0.17167664 +19056;4;13.693237;0.009155273;-63.89618 +19056;6;-0.41749159;-0.49400663;0.0037584759 +19056;7;0.91337985;-0.356991;0.19569024;0.0;0.40709496;0.8048182;-0.43190438;0.0;-0.0033091055 +19057;0;-0.052444458;4.7557526;8.927231 +19057;3;-0.06373596;-0.04486084;0.17106628 +19058;12;0.20265472;0.07061934;0.20184883;0.9556155 +19059;0;-0.033355713;4.750992;8.960602 +19059;1;-0.5126848;4.081797;8.90574 +19059;3;-0.06617737;-0.0491333;0.16984558 +19061;0;0.0048675537;4.7794952;8.989227 +19061;12;0.20260802;0.07038123;0.20223683;0.95556104 +19062;3;-0.06373596;-0.050964355;0.16862488 +19064;1;-0.50650257;4.080146;8.90685 +19067;12;0.202555;0.070125654;0.20261972;0.95550984 +19069;2;-0.5271081;-0.662961;-0.052643776; +19069;1;-0.5003518;4.0786915;8.907864 +19072;0;7.6293945E-5;4.73674;8.989227 +19072;3;-0.061294556;-0.050964355;0.16679382 +19072;4;13.693237;0.009155273;-65.097046 +19072;6;-0.4237899;-0.48496285;-8.4872645E-6 +19073;7;0.9115386;-0.3638014;0.19169202;0.0;0.4112144;0.80642974;-0.4249397;0.0;7.5086173E-6 +19073;0;7.6293945E-5;4.727234;8.989227 +19073;3;-0.058242798;-0.05279541;0.16496277 +19073;0;0.0048675537;4.760498;9.036911 +19073;3;-0.053955078;-0.05340576;0.16435242 +19073;12;0.20251307;0.069871515;0.20299073;0.9554587 +19073;0;-0.0046844482;4.6987305;9.051224 +19073;3;-0.044799805;-0.054031372;0.16191101 +19073;0;-0.047683716;4.717743;9.070297 +19073;1;-0.494223;4.077604;8.908704 +19074;3;-0.036254883;-0.05340576;0.16069031 +19076;4;13.392639;0.30975342;-64.64691 +19076;6;-0.40871274;-0.47961673;0.00525708 +19076;7;0.9166564;-0.3525873;0.18821058;0.0;0.39964896;0.8140983;-0.42133674;0.0;-0.0046639116 +19076;0;-0.038131714;4.6892242;9.127518 +19077;3;-0.027694702;-0.05218506;0.1582489 +19077;12;0.20249178;0.06962147;0.20334968;0.9554051 +19078;5;999.58655 +19078;0;-0.01423645;4.717743;9.146606 +19078;1;-0.48821387;4.077199;8.909221 +19079;3;-0.017929077;-0.05218506;0.15640259 +19080;0;-0.009475708;4.703491;9.14183 +19080;12;0.20250848;0.069382496;0.20370053;0.95534414 +19081;3;-0.008148193;-0.050964355;0.15396118 +19083;1;-0.482317;4.0775676;8.909373 +19083;0;0.0048675537;4.6797333;9.160919 +19083;3;3.9672852E-4;-0.051574707;0.15090942 +19085;4;13.693237;1.3595581;-64.64691 +19085;6;-0.42150044;-0.47227925;-5.3133897E-4 +19085;7;0.9125749;-0.36434412;0.18563543;0.0;0.40890944;0.8125908;-0.41531843;0.0;4.7317526E-4 +19085;0;0.04307556;4.6749725;9.132294 +19086;3;0.010772705;-0.05279541;0.14968872 +19086;12;0.20256573;0.0691553;0.20403948;0.95527625 +19087;0;0.009643555;4.684494;9.151382 +19088;1;-0.47645915;4.0787063;8.909166 +19088;2;-0.5181338;-0.60105944;-0.22368717; +19088;3;0.021774292;-0.054641724;0.14724731 +19090;0;7.6293945E-5;4.6749725;9.213379 +19090;12;0.20266369;0.06893953;0.2043635;0.9552018 +19090;3;0.032165527;-0.05647278;0.1435852 +19092;0;0.014419556;4.7082367;9.222916 +19092;1;-0.4705851;4.0807114;8.908561 +19092;3;0.041931152;-0.058303833;0.14173889 +19094;4;13.093567;1.05896;-63.89618 +19094;6;-0.41449866;-0.4720065;-0.0015634474 +19094;7;0.91560346;-0.3586956;0.1816802;0.0;0.40208;0.81523544;-0.41680086;0.0;0.0013924962 +19095;0;0.0048675537;4.6749725;9.21814 +19095;3;0.051101685;-0.06074524;0.13685608 +19096;12;0.20281109;0.06872806;0.20466748;0.9551207 +19097;0;0.03352356;4.65123;9.222916 +19097;1;-0.46465236;4.0834966;8.907596 +19097;3;0.060256958;-0.06440735;0.13197327 +19099;0;-0.009475708;4.670227;9.232452 +19100;12;0.20300168;0.068520576;0.20495592;0.95503324 +19100;3;0.06942749;-0.07052612;0.12953186 +19102;0;-0.0046844482;4.627472;9.19429 +19102;1;-0.4585887;4.0870237;8.906292 +19102;3;0.07797241;-0.07785034;0.12281799 +19104;4;13.542175;1.5090942;-65.24658 +19104;6;-0.41472527;-0.4662828;5.094953E-4 +19104;7;0.91513467;-0.35992306;0.18161497;0.0;0.4031481;0.8175226;-0.41125244;0.0;-4.5510443E-4 +19104;0;-0.019012451;4.627472;9.208603 +19104;3;0.08531189;-0.08395386;0.115478516 +19105;12;0.20323482;0.06830966;0.20521748;0.9549425 +19106;0;0.028747559;4.636963;9.261063 +19107;1;-0.4521704;4.091203;8.904701 +19107;2;-0.508147;-0.5526633;-0.3266468; +19107;3;0.09446716;-0.09188843;0.109375 +19109;0;0.10041809;4.6654816;9.318314 +19109;12;0.20351061;0.06807717;0.20544425;0.9548516 +19109;3;0.10241699;-0.0980072;0.103271484 +19111;0;0.1481781;4.65123;9.399368 +19111;1;-0.44525695;4.096025;8.902833 +19111;3;0.10668945;-0.10166931;0.09776306 +19114;4;13.392639;1.6586304;-64.34631 +19114;6;-0.4486389;-0.45946568;-0.015763381 +19114;7;0.9039583;-0.3887562;0.17812341;0.0;0.42738706;0.8075912;-0.40637004;0.0;0.014127969 +19115;0;0.18640137;4.6559753;9.4470825 +19115;3;0.111572266;-0.10227966;0.0934906 +19115;12;0.20382723;0.06781951;0.2056302;0.95476246 +19115;5;999.58655 +19117;0;0.17684937;4.636963;9.4804535 +19117;1;-0.43818977;4.1012015;8.9008 +19118;3;0.115859985;-0.10166931;0.08920288 +19119;0;0.17684937;4.622711;9.4852295 +19119;12;0.20416641;0.06755613;0.20578991;0.95467424 +19119;3;0.12011719;-0.10166931;0.08432007 +19121;0;0.17684937;4.6084595;9.470917 +19121;1;-0.43132415;4.106687;8.898606 +19122;3;0.122558594;-0.09983826;0.078826904 +19124;4;13.842773;-0.440979;-66.14685 +19124;6;-0.48765984;-0.45279413;-0.018670717 +19124;7;0.8871048;-0.4213422;0.18845636;0.0;0.46126258;0.7944068;-0.39516404;0.0;0.016788261 +19124;0;0.1720581;4.5657043;9.46138 +19124;3;0.12745667;-0.09861755;0.07209778 +19124;12;0.20452182;0.06730218;0.20592798;0.95458627 +19126;0;0.1625061;4.5847015;9.470917 +19126;1;-0.42480424;4.112398;8.896281 +19126;2;-0.63874364;-0.49703693;-0.5547447; +19127;3;0.13233948;-0.09617615;0.06599426 +19128;0;0.16729736;4.5799713;9.4804535 +19129;12;0.20488907;0.06706363;0.2060401;0.9545002 +19129;3;0.13967896;-0.094955444;0.059890747 +19134;0;0.1720581;4.594223;9.48999 +19134;3;0.14700317;-0.09251404;0.05317688 +19134;1;-0.41865847;4.118581;8.893713 +19134;4;14.442444;1.05896;-64.34631 +19134;6;-0.495598;-0.45079258;-0.018128498 +19134;7;0.88329583;-0.42805055;0.19121003;0.0;0.4685321;0.79180586;-0.39181784;0.0;0.016316604 +19134;0;0.20072937;4.61322;9.528137 +19134;3;0.154953;-0.09007263;0.04827881 +19135;12;0.20528;0.06684278;0.20612355;0.95441365 +19136;0;0.1720581;4.6322327;9.552002 +19136;1;-0.41295674;4.125336;8.890848 +19137;3;0.16227722;-0.08578491;0.044006348 +19138;0;0.18640137;4.61322;9.547226 +19138;12;0.20569795;0.06664715;0.20617878;0.9543254 +19138;3;0.1714325;-0.0809021;0.039733887 +19140;1;-0.40777946;4.1327376;8.887649 +19140;0;0.1816101;4.660721;9.585388 +19141;3;0.17938232;-0.075408936;0.034851074 +19144;4;13.842773;0.9094238;-64.497375 +19144;6;-0.48048186;-0.45250195;-0.018944291 +19144;7;0.89044136;-0.41568822;0.18525004;0.0;0.4547791;0.797524;-0.39639807;0.0;0.017036643 +19144;12;0.2061456;0.06648278;0.2062149;0.95423245 +19144;0;0.1529541;4.5989685;9.575851 +19144;3;0.18609619;-0.07234192;0.031173706 +19145;0;0.1577301;4.660721;9.547226 +19146;1;-0.4032229;4.140777;8.884114 +19146;2;-0.62998664;-0.46437263;-0.66327286; +19146;3;0.19404602;-0.06929016;0.029953003 +19151;12;0.20662597;0.06635362;0.20623265;0.9541337 +19151;1;-0.39899322;4.149492;8.880239 +19151;0;0.1625061;4.684494;9.54245 +19154;3;0.20014954;-0.066848755;0.027511597 +19154;0;0.16729736;4.7414856;9.575851 +19155;12;0.20714037;0.06624688;0.20623985;0.95402795 +19155;3;0.20747375;-0.066848755;0.02507019 +19156;1;-0.39496243;4.1588855;8.876023 +19157;4;13.842773;0.9094238;-64.497375 +19157;6;-0.47200435;-0.45969963;-0.017468978 +19157;7;0.89404666;-0.4074709;0.18613967;0.0;0.44770017;0.79819566;-0.40304852;0.0;0.015654653 +19158;12;0.20769037;0.066158175;0.20623957;0.95391464 +19159;0;0.19117737;4.8127594;9.552002 +19160;1;-0.39110482;4.1692014;8.871353 +19160;3;0.21298218;-0.061965942;0.02507019 +19160;5;999.58826 +19161;0;0.19593811;4.869766;9.518616 +19161;3;0.2215271;-0.06135559;0.025680542 +19161;0;0.19593811;4.94104;9.48999 +19161;3;0.23252869;-0.05769348;0.026290894 +19161;0;0.19593811;5.017044;9.48999 +19161;3;0.24107361;-0.05218506;0.029342651 +19162;4;13.392639;0.7598877;-65.54718 +19162;6;-0.4418498;-0.4862293;-0.020643886 +19162;7;0.9078944;-0.3780526;0.18111877;0.0;0.41880155;0.7991941;-0.43115443;0.0;0.018249989 +19163;12;0.20828836;0.066089444;0.20624088;0.9537887 +19163;0;0.22940063;5.1120605;9.4852295 +19163;3;0.24841309;-0.04547119;0.031784058 +19165;1;-0.38760668;4.1803794;8.866244 +19165;2;-0.6355436;-0.7298975;-0.66043377; +19165;0;0.21028137;5.2070923;9.48999 +19165;3;0.2545166;-0.035079956;0.034240723 +19167;12;0.20892689;0.06605617;0.20625429;0.95364845 +19167;0;0.1481781;5.230835;9.389847 +19167;3;0.26489258;-0.025314331;0.038513184 +19173;1;-0.38488254;4.19232;8.8607235 +19173;0;0.1386261;5.2926025;9.4375305 +19173;3;0.27345276;-0.0149383545;0.043395996 +19173;4;13.392639;0.7598877;-65.54718 +19173;6;-0.414512;-0.5110539;-0.014687754 +19173;7;0.9181072;-0.35128453;0.18351577;0.0;0.39612463;0.79836285;-0.45354348;0.0;0.012810632 +19173;0;0.1816101;5.378128;9.43277 +19173;3;0.27896118;0.0015716553;0.04888916 +19173;12;0.20959647;0.066071965;0.20628464;0.9534939 +19175;1;-0.38289836;4.205101;8.854752 +19175;0;0.21028137;5.487381;9.470917 +19175;3;0.2814026;0.025375366;0.055618286 +19177;0;0.1816101;5.5539093;9.504303 +19177;12;0.21030086;0.06614507;0.20634927;0.9533197 +19177;3;0.2826233;0.05104065;0.06538391 +19178;0;0.052627563;5.6156616;9.547226 +19179;1;-0.38262632;4.218231;8.8485155 +19179;3;0.27774048;0.07485962;0.07331848 +19181;4;13.542175;0.9094238;-66.14685 +19181;6;-0.3853764;-0.5316899;-0.005512285 +19181;7;0.9276935;-0.32401446;0.18547098;0.0;0.37331256;0.7987335;-0.47187144;0.0;0.0047512986 +19181;0;-0.052444458;5.658432;9.513855 +19181;3;0.270401;0.10296631;0.08126831 +19182;12;0.21099958;0.0663289;0.20646547;0.9531274 +19183;0;-0.13366699;5.6821747;9.504303 +19183;1;-0.3844142;4.231116;8.842284 +19184;2;-0.5307578;-1.2454042;-0.6405916; +19184;3;0.25634766;0.12861633;0.086761475 +19185;0;-0.22442627;5.7439423;9.456619 +19186;12;0.21165967;0.06662759;0.20664419;0.95292133 +19186;3;0.24353027;0.1487732;0.0922699 +19188;0;-0.30085754;5.7772064;9.404144 +19188;1;-0.38825923;4.243101;8.836371 +19188;3;0.22702026;0.167099;0.09654236 +19191;4;13.542175;0.9094238;-66.14685 +19191;6;-0.31046033;-0.55065835;0.03198111 +19191;7;0.9465948;-0.26033852;0.19021608;0.0;0.32127213;0.8114401;-0.4882102;0.0;-0.027249023 +19191;0;-0.38208008;5.80571;9.370773 +19191;3;0.20625305;0.17810059;0.103271484 +19192;12;0.21224587;0.06703184;0.20687391;0.9527128 +19192;5;999.58826 +19193;1;-0.39351594;4.2537947;8.830996 +19198;0;-0.47283936;5.881729;9.342148 +19198;3;0.18243408;0.18481445;0.10874939 +19198;0;-0.5827179;5.89122;9.375534 +19198;12;0.21274295;0.067504205;0.20715065;0.9525084 +19198;3;0.15800476;0.18603516;0.11608887 +19198;1;-0.39927533;4.262571;8.826505 +19199;0;-0.65437317;5.9007263;9.361221 +19199;3;0.13233948;0.18359375;0.12281799 +19200;4;14.292908;-1.1901855;-65.69672 +19200;6;-0.27415106;-0.56132925;0.069789015 +19200;7;0.9502628;-0.22918586;0.21089017;0.0;0.30580395;0.8149343;-0.49230692;0.0;-0.059031826 +19200;0;-0.73080444;5.905472;9.370773 +19200;3;0.10057068;0.17871094;0.1277008 +19201;12;0.21312751;0.06798567;0.20746772;0.95231915 +19202;0;-0.816803;5.8864594;9.38031 +19202;1;-0.4047981;4.269111;8.823091 +19203;2;0.06072414;-1.5717144;-0.56628895; +19203;3;0.067596436;0.17076111;0.13014221 +19204;0;-0.859787;5.7962036;9.399368 +19205;12;0.21338858;0.06843393;0.2078211;0.95215154 +19205;3;0.03765869;0.16038513;0.13380432 +19207;0;-0.93621826;5.758194;9.389847 +19207;1;-0.40963563;4.2728043;8.82108 +19207;3;0.0028381348;0.14572144;0.13624573 +19209;4;14.292908;-1.1901855;-65.69672 +19209;6;-0.22427438;-0.54789346;0.09937695 +19209;7;0.958652;-0.18984501;0.21200264;0.0;0.27168673;0.83224523;-0.48327428;0.0;-0.08469095 +19212;0;-0.98876953;5.7439423;9.385086 +19212;3;-0.03074646;0.13044739;0.13748169 +19212;0;-1.0652008;5.6869354;9.399368 +19212;12;0.21350528;0.06881478;0.20818762;0.95201784 +19212;1;-0.41336498;4.273632;8.820505 +19212;3;-0.06434631;0.11395264;0.13748169 +19214;0;-1.1129761;5.634674;9.43277 +19214;3;-0.097335815;0.09806824;0.1387024 +19216;12;0.21347737;0.06910344;0.20856152;0.95192134 +19217;0;-1.1273041;5.534912;9.466141 +19217;1;-0.41582614;4.271482;8.821431 +19217;3;-0.12849426;0.07913208;0.14173889 +19219;4;13.093567;1.3595581;-64.64691 +19219;6;-0.15544218;-0.5260355;0.118529804 +19219;7;0.971819;-0.13388641;0.19401623;0.0;0.21239042;0.85437775;-0.4742669;0.0;-0.10226526 +19219;0;-1.1320801;5.4921417;9.532913 +19220;3;-0.15782166;0.06324768;0.1435852 +19220;12;0.21330282;0.069284834;0.20893274;0.9518659 +19221;0;-1.1846313;5.387619;9.609222 +19222;1;-0.41676542;4.266507;8.823793 +19222;3;-0.1895752;0.046157837;0.14419556 +19222;2;0.5806403;-1.3565412;-0.6337795; +19224;0;-1.2085114;5.311615;9.647385 +19224;3;-0.21522522;0.03086853;0.14663696 +19225;12;0.21299177;0.06935418;0.20930654;0.9518484 +19229;0;-1.2037506;5.1928253;9.709381 +19229;3;-0.24028015;0.013763428;0.14724731 +19229;1;-0.41632953;4.258802;8.827536 +19229;4;13.093567;-0.29144287;-65.84625 +19229;6;-0.1558759;-0.48795336;0.12334868 +19229;7;0.9714154;-0.13712741;0.1937735;0.0;0.2110483;0.8725851;-0.44051546;0.0;-0.10867711 +19229;0;-1.2180786;5.1263123;9.790451 +19229;3;-0.26409912;9.460449E-4;0.14907837 +19230;12;0.21255006;0.069314316;0.2096741;0.95186913 +19230;5;999.58826 +19235;17;1;38dead6d7725;4964;3122;-66; +19236;17;1;38dead6d60ff;9321;418;-69; +19236;17;1;1c1bb5efa29a;2482;1632;-67; +19237;17;1;1c1bb5ecd182;4599;947;-65; +19237;0;-1.2228394;5.0455627;9.871536 +19237;3;-0.28549194;-0.009429932;0.14907837 +19237;1;-0.41453815;4.248764;8.832456 +19237;12;0.21199873;0.0691742;0.21004704;0.95192 +19237;0;-1.1655273;4.950531;9.947845 +19237;3;-0.30441284;-0.019195557;0.15213013 +19237;0;-1.1511993;4.884018;10.005081 +19237;1;-0.41170955;4.2366943;8.838384 +19237;3;-0.32092285;-0.030197144;0.15335083 +19238;4;12.942505;0.1586914;-65.24658 +19238;6;-0.1836359;-0.45153862;0.11455769 +19238;7;0.9676339;-0.16430424;0.19154312;0.0;0.23044807;0.8846482;-0.40532863;0.0;-0.10285105 +19238;0;-1.1225281;4.7794952;10.148163 +19239;3;-0.3355713;-0.041809082;0.15518188 +19239;12;0.21134989;0.06895545;0.21042292;0.95199716 +19241;0;-1.0938568;4.684494;10.272156 +19241;1;-0.40782565;4.222938;8.845144 +19241;2;0.7138742;-0.7678652;-1.0842733; +19241;3;-0.35084534;-0.054031372;0.15579224 +19243;0;-1.0604248;4.5799713;10.386612 +19243;12;0.2106219;0.06866089;0.21080314;0.9520957 +19244;3;-0.36306763;-0.066848755;0.15762329 +19245;0;-1.0652008;4.513443;10.510635 +19246;1;-0.40280336;4.207689;8.852638 +19246;3;-0.3746643;-0.079071045;0.158844 +19248;4;13.243103;-0.440979;-66.44745 +19248;6;-0.24327917;-0.4037566;0.101000205 +19248;7;0.95606494;-0.22151724;0.19201568;0.0;0.27810556;0.8925127;-0.3550753;0.0;-0.09272111 +19248;0;-1.0556488;4.413666;10.620316 +19248;3;-0.38261414;-0.09251404;0.16069031 +19249;12;0.2098286;0.06828937;0.21117747;0.9522146 +19250;1;-0.39665353;4.1912675;8.860703 +19250;0;-1.0795288;4.323395;10.701401 +19250;3;-0.38993835;-0.10533142;0.1594696 +19253;0;-1.0317688;4.2426453;10.811081 +19253;12;0.20898648;0.067845166;0.21155465;0.9523478 +19253;3;-0.39115906;-0.11999512;0.1600647 +19256;0;-0.9983368;4.1951294;10.849258 +19256;1;-0.38931084;4.1741314;8.869114 +19256;3;-0.389328;-0.13343811;0.15640259 +19257;4;13.093567;1.3595581;-66.29639 +19257;6;-0.2673635;-0.36755028;0.09176049 +19257;7;0.95171446;-0.24654442;0.1829081;0.0;0.29483435;0.9000542;-0.32089752;0.0;-0.08551173 +19258;0;-0.97442627;4.11911;10.887405 +19258;3;-0.3856659;-0.14505005;0.15457153 +19258;12;0.20812382;0.06732812;0.2119213;0.95249194 +19260;0;-0.9457855;4.000351;10.968475 +19260;1;-0.3808774;4.156927;8.877556 +19260;2;0.59537613;-0.13376331;-1.8452702; +19260;3;-0.37834167;-0.15542603;0.15213013 +19263;0;-0.888443;3.9575806;11.030487 +19263;3;-0.36917114;-0.16459656;0.15029907 +19263;12;0.20727095;0.06674801;0.2122655;0.9526421 +19265;0;-0.845459;3.843567;11.097244 +19265;3;-0.35572815;-0.17070007;0.14785767 +19265;1;-0.3715517;4.1400948;8.885813 +19267;4;13.542175;0.45928955;-65.24658 +19267;6;-0.3704249;-0.3325285;0.07603949 +19267;7;0.92050284;-0.34218055;0.18864514;0.0;0.38408148;0.8811092;-0.27591327;0.0;-0.071804814 +19268;0;-0.8215637;3.7817993;11.140167 +19268;3;-0.34169006;-0.17436218;0.1429596 +19268;12;0.20645054;0.06612253;0.21258628;0.9527923 +19268;5;999.58826 +19269;0;-0.7785797;3.7010345;11.144943 +19270;3;-0.32336426;-0.17619324;0.1399231 +19270;1;-0.36174905;4.1241374;8.893634 +19272;0;-0.7833557;3.6250305;11.159256 +19272;12;0.20568562;0.06548071;0.2128867;0.952935 +19273;3;-0.30136108;-0.17558289;0.13502502 +19275;1;-0.3518599;4.1094756;8.900816 +19275;0;-0.72125244;3.5585022;11.18309 +19275;3;-0.2775421;-0.17436218;0.12953186 +19277;4;12.942505;0.45928955;-66.14685 +19277;6;-0.3967188;-0.30747357;0.06440571 +19277;7;0.91289496;-0.3682727;0.17606285;0.0;0.40355915;0.87907755;-0.25369835;0.0;-0.061342735 +19277;0;-0.68782043;3.458725;11.168793 +19278;3;-0.25004578;-0.17253113;0.123413086 +19278;12;0.20499341;0.064844385;0.21316439;0.9530656 +19280;1;-0.3423414;4.0968575;8.9070015 +19280;0;-0.64482117;3.3874664;11.149704 +19280;2;0.37984464;0.44348907;-2.2342262; +19280;3;-0.21829224;-0.17008972;0.11853027 +19283;0;-0.5922699;3.3209534;11.121094 +19284;12;0.20441021;0.06424614;0.21340835;0.95317674 +19285;3;-0.18530273;-0.16703796;0.114868164 +19285;0;-0.5397186;3.244934;11.073395 +19286;1;-0.33300465;4.0866246;8.912055 +19286;3;-0.14863586;-0.16275024;0.10997009 +19287;4;14.892578;1.2084961;-64.497375 +19287;6;-0.5426535;-0.28473815;0.04870158 +19287;7;0.8482641;-0.49561697;0.18657951;0.0;0.5275084;0.821861;-0.21512634;0.0;-0.046722148 +19287;0;-0.5206146;3.1831818;11.030487 +19288;3;-0.108947754;-0.15542603;0.10449219 +19288;12;0.2039545;0.063682884;0.21362652;0.9532633 +19289;1;-0.32426602;4.0794296;8.915672 +19289;0;-0.48718262;3.0929108;10.978027 +19289;3;-0.06800842;-0.1468811;0.10205078 +19293;0;-0.45373535;3.0406494;10.877853 +19293;12;0.20365633;0.063183054;0.21381627;0.9533177 +19293;3;-0.023422241;-0.13771057;0.09654236 +19294;0;-0.43940735;2.978897;10.844482 +19294;1;-0.31635162;4.0756793;8.917671 +19294;3;0.02116394;-0.12609863;0.0934906 +19296;4;12.342834;1.3595581;-64.64691 +19296;6;-0.4826836;-0.2678708;0.040496826 +19296;7;0.88005257;-0.44760442;0.15861236;0.0;0.47326875;0.8541636;-0.21545592;0.0;-0.0390419 +19296;0;-0.4202881;2.9408875;10.739548 +19297;3;0.067596436;-0.11450195;0.09164429 +19298;12;0.20353484;0.0627657;0.21398401;0.95333356 +19298;1;-0.3094808;4.075704;8.917901 +19298;0;-0.39640808;2.8743744;10.653702 +19299;2;0.12287605;1.005858;-2.0055094; +19300;3;0.11340332;-0.102890015;0.08798218 +19301;0;-0.36297607;2.8458557;10.515396 +19301;12;0.20360482;0.06244549;0.21413417;0.95330596 +19302;3;0.15922546;-0.08885193;0.086761475 +19306;1;-0.30370522;4.0796366;8.916302 +19306;0;-0.3438568;2.831604;10.420013 +19306;3;0.2068634;-0.075408936;0.08494568 +19306;4;12.342834;1.6586304;-64.64691 +19306;6;-0.5008098;-0.26520145;0.03298768 +19306;7;0.8725662;-0.46335036;0.1547083;0.0;0.48745784;0.84652716;-0.213955;0.0;-0.03182865 +19306;0;-0.3199768;2.798355;10.238785 +19306;3;0.25268555;-0.06074524;0.083099365 +19306;12;0.20387349;0.062227283;0.2142629;0.9532339 +19307;5;999.58826 +19308;0;-0.3199768;2.8031006;10.167236 +19308;1;-0.29915467;4.0875783;8.912818 +19308;3;0.29606628;-0.047302246;0.08126831 +19310;0;-0.2722168;2.831604;9.971695 +19311;12;0.20434432;0.062123276;0.21439195;0.9531109 +19311;3;0.34065247;-0.034484863;0.079437256 +19313;1;-0.29578775;4.099375;8.907511 +19314;0;-0.2722168;2.7698517;9.799988 +19315;3;0.3809662;-0.02104187;0.0776062 +19316;4;14.143372;0.7598877;-65.84625 +19316;6;-0.58133537;-0.2753526;0.027770117 +19316;7;0.83126223;-0.528454;0.17245151;0.0;0.555238;0.8042477;-0.21188818;0.0;-0.026720567 +19316;0;-0.25309753;2.774582;9.675995 +19316;3;0.42007446;-0.00881958;0.07455444 +19317;12;0.20500518;0.062127773;0.21451291;0.9529414 +19318;0;-0.2817688;2.8125916;9.504303 +19318;1;-0.29360104;4.11484;8.90045 +19318;3;0.45487976;0.0033874512;0.07209778 +19318;2;-0.0390836;1.3249769;-1.1465731; +19320;0;-0.26742554;2.831604;9.342148 +19320;12;0.20585279;0.062239878;0.21462455;0.9527261 +19320;3;0.48908997;0.016830444;0.06965637 +19322;0;-0.27697754;2.855362;9.170456 +19322;1;-0.29261798;4.1332445;8.89195 +19323;3;0.52085876;0.030273438;0.066604614 +19326;4;12.042236;-0.29144287;-66.596985 +19326;6;-0.47261128;-0.30172142;0.030194066 +19326;7;0.8858929;-0.43464926;0.16209155;0.0;0.46299326;0.85016084;-0.2507267;0.0;-0.028825713 +19326;12;0.20684622;0.062444665;0.2147149;0.9524773 +19326;0;-0.21487427;2.8838654;8.989227 +19326;3;0.54774475;0.043701172;0.06538391 +19331;0;-0.22442627;2.8838654;8.860458 +19332;1;-0.2927981;4.1545534;8.882009 +19332;12;0.20798057;0.06275002;0.2148078;0.9521892 +19332;3;0.57154846;0.057144165;0.0617218 +19332;0;-0.24354553;2.931366;8.703064 +19332;3;0.594162;0.073028564;0.062942505 +19333;0;-0.24832153;2.978897;8.579071 +19333;3;0.6137085;0.09074402;0.058670044 +19333;1;-0.29428262;4.1780715;8.87092 +19335;4;13.842773;1.2084961;-65.24658 +19335;6;-0.48530433;-0.33407384;0.02893696 +19335;7;0.87973726;-0.44068807;0.17848344;0.0;0.4746738;0.8356311;-0.2764154;0.0;-0.027333349 +19335;0;-0.24832153;3.0549011;8.402588 +19336;3;0.63264465;0.105407715;0.0617218 +19336;12;0.20922232;0.06315046;0.21489784;0.9518703 +19337;0;-0.26264954;3.0644073;8.2595215 +19337;1;-0.29722068;4.2035084;8.858797 +19337;2;-0.097537756;1.2891955;0.058615685; +19337;3;0.646698;0.120666504;0.059890747 +19339;0;-0.2960968;3.1166687;8.159363 +19339;12;0.21054791;0.063652836;0.21499194;0.9515232 +19340;3;0.660141;0.1335144;0.059280396 +19341;0;-0.32476807;3.16893;8.049683 +19341;1;-0.30147558;4.2303743;8.845856 +19342;3;0.6711273;0.14633179;0.055618286 +19344;4;12.792969;0.009155273;-65.54718 +19344;6;-0.39721307;-0.37476173;0.04032358 +19344;7;0.9156845;-0.36000052;0.17866561;0.0;0.400143;0.85814124;-0.3216817;0.0;-0.03751475 +19344;0;-0.3152008;3.1736755;7.9256744 +19344;3;0.67663574;0.15731812;0.055618286 +19345;12;0.21193619;0.06424149;0.21508808;0.95115364 +19345;5;999.5933 +19346;0;-0.32476807;3.202179;7.806427 +19346;1;-0.30689564;4.25839;8.832216 +19347;3;0.68151855;0.16648865;0.05683899 +19348;0;-0.3056488;3.2734528;7.687195 +19349;12;0.21337584;0.06490632;0.2151892;0.9507637 +19349;3;0.6845703;0.17504883;0.058670044 +19351;0;-0.3438568;3.325714;7.601364 +19351;1;-0.3130309;4.286806;8.818243 +19351;3;0.68029785;0.18237305;0.062942505 +19353;4;13.243103;-0.440979;-65.24658 +19353;6;-0.377357;-0.41204822;0.04520538 +19353;7;0.92202353;-0.33762515;0.18942505;0.0;0.38491297;0.85183305;-0.35527813;0.0;-0.041407697 +19353;0;-0.37252808;3.358963;7.4439697 +19354;3;0.67663574;0.18849182;0.06538391 +19354;12;0.21482849;0.06561995;0.21530084;0.9503622 +19356;0;-0.39163208;3.425476;7.3867493 +19356;1;-0.31973064;4.315218;8.804133 +19356;2;-0.033614844;1.0818205;1.0337639; +19357;3;0.66685486;0.19337463;0.06965637 +19358;0;-0.40119934;3.4729767;7.3295135 +19358;12;0.2162739;0.066366725;0.21543348;0.94995236 +19358;3;0.6564636;0.19581604;0.07331848 +19360;0;-0.38208008;3.5205078;7.2055054 +19361;1;-0.3266566;4.343087;8.790165 +19361;3;0.64242554;0.19947815;0.0776062 +19363;4;13.243103;-0.74157715;-65.69672 +19363;6;-0.33048114;-0.45392114;0.05297652 +19363;7;0.93702483;-0.29163772;0.19217688;0.0;0.34600538;0.85010076;-0.39699987;0.0;-0.04758956 +19363;0;-0.3534088;3.5680084;7.210266 +19364;3;0.6259308;0.20375061;0.08187866 +19364;12;0.21768785;0.06712072;0.21558562;0.9495419 +19365;0;-0.37252808;3.6202698;7.1530457 +19366;1;-0.3336283;4.3699245;8.776591 +19366;3;0.6063843;0.20680237;0.086761475 +19368;12;0.21904483;0.06787408;0.21576786;0.9491347 +19368;0;-0.34864807;3.6677704;7.0767365 +19368;3;0.58439636;0.21109009;0.091049194 +19370;0;-0.3534088;3.7437897;7.048126 +19370;1;-0.3406673;4.395307;8.763637 +19370;3;0.56056213;0.21536255;0.09776306 +19373;4;13.392639;-0.59051514;-64.34631 +19373;6;-0.32725564;-0.48775566;0.050100274 +19373;7;0.9381957;-0.28396076;0.19787614;0.0;0.34326604;0.8365038;-0.42711794;0.0;-0.044239417 +19373;0;-0.34864807;3.796051;6.9956665 +19373;3;0.53308105;0.2184143;0.10386658 +19374;12;0.22032179;0.06862051;0.2159804;0.94873714 +19376;0;-0.3199768;3.8293152;6.9431915 +19376;1;-0.34772936;4.4188175;8.751529 +19376;2;-0.035396636;0.7882266;1.6182232; +19377;3;0.50375366;0.22085571;0.10997009 +19378;0;-0.3438568;3.8768158;6.9193573 +19378;12;0.22149386;0.06935338;0.21623175;0.9483536 +19378;3;0.47442627;0.22451782;0.11669922 +19380;0;-0.3438568;3.938568;6.885956 +19380;1;-0.35475343;4.440048;8.740494 +19380;3;0.44143677;0.22573853;0.12219238 +19382;4;13.093567;-1.0406494;-65.097046 +19382;6;-0.30097726;-0.51901853;0.04989451 +19382;7;0.94652474;-0.25741264;0.19449824;0.0;0.3197115;0.82927364;-0.45835552;0.0;-0.043305755 +19383;0;-0.34864807;3.9480896;6.9050446 +19383;3;0.40907288;0.22634888;0.12585449 +19383;12;0.22254002;0.07006322;0.2165161;0.94799155 +19384;5;999.5933 +19384;0;-0.38208008;4.028839;6.881195 +19385;1;-0.36169335;4.4586916;8.730714 +19385;3;0.37242126;0.22512817;0.13258362 +19387;0;-0.38208008;4.057358;6.890732 +19388;12;0.22344583;0.07074725;0.21684329;0.9476528 +19388;3;0.33638;0.22268677;0.13748169 +19390;0;-0.3534088;4.090622;6.9002686 +19390;3;0.29484558;0.21780396;0.1429596 +19390;1;-0.3682798;4.474464;8.722365 +19392;4;14.593506;-1.1901855;-63.29651 +19392;6;-0.34485456;-0.5345495;0.051171962 +19392;7;0.9310834;-0.29089987;0.22013845;0.0;0.36214146;0.8098361;-0.4615399;0.0;-0.04401417 +19392;0;-0.37728882;4.095352;6.928894 +19393;3;0.25268555;0.21231079;0.14907837 +19393;12;0.22419505;0.07138191;0.21720651;0.9473451 +19394;0;-0.38685608;4.1476135;6.9956665 +19395;3;0.20869446;0.20680237;0.15274048 +19395;1;-0.3742529;4.4868712;8.7157345 +19397;2;-0.05665207;0.48429966;1.7896919; +19398;0;-0.36297607;4.1713715;6.967041 +19398;3;0.16288757;0.1988678;0.158844 +19399;12;0.2247684;0.071948834;0.21760342;0.9470752 +19400;0;-0.38685608;4.190384;7.0338135 +19400;3;0.11340332;0.19030762;0.16374207 +19400;1;-0.3794685;4.495655;8.710981 +19401;4;13.243103;-1.1901855;-66.89758 +19401;6;-0.27770692;-0.5366237;0.05494412 +19401;7;0.95253855;-0.23561637;0.19275723;0.0;0.30073714;0.8265116;-0.47585267;0.0;-0.047197398 +19402;0;-0.38208008;4.2046356;7.0671997 +19403;3;0.06513977;0.17932129;0.16618347 +19403;12;0.2251504;0.07243286;0.21801458;0.94685286 +19405;0;-0.39640808;4.209381;7.1101227 +19405;1;-0.38373652;4.500386;8.708351 +19405;3;0.014450073;0.16770935;0.17167664 +19407;0;-0.39640808;4.233139;7.1578064 +19407;3;-0.036849976;0.15731812;0.17533875 +19407;12;0.22532097;0.07282435;0.21846987;0.94667745 +19410;0;-0.41073608;4.1951294;7.2341156 +19410;3;-0.08694458;0.14572144;0.18023682 +19411;1;-0.3868982;4.500874;8.707959 +19413;4;13.243103;-2.5405884;-64.497375 +19413;6;-0.30445465;-0.52481765;0.056716755 +19413;7;0.94396216;-0.2594281;0.20404068;0.0;0.32638767;0.82561535;-0.46025032;0.0;-0.049057238 +19413;0;-0.41552734;4.190384;7.2532043 +19413;3;-0.13581848;0.1328888;0.18695068 +19413;12;0.22527026;0.073107295;0.21895002;0.9465566 +19417;2;-0.03736964;0.31514978;1.5530128; +19417;1;-0.3889012;4.497119;8.70981 +19417;0;-0.43463135;4.214142;7.3342896 +19417;3;-0.18713379;0.12373352;0.18939209 +19418;0;-0.45373535;4.190384;7.4439697 +19419;12;0.2250012;0.0732802;0.2194578;0.9464897 +19420;3;-0.23294067;0.11517334;0.19244385 +19420;1;-0.3899599;4.4891067;8.713896 +19420;0;-0.45851135;4.166626;7.5345917 +19420;3;-0.27693176;0.10784912;0.19551086 +19420;4;12.942505;-1.1901855;-66.14685 +19421;6;-0.27752438;-0.50436085;0.060779225 +19421;7;0.9519187;-0.2398611;0.19057131;0.0;0.30169988;0.8419845;-0.44725737;0.0;-0.05317845 +19421;0;-0.45851135;4.123871;7.649048 +19422;3;-0.32092285;0.1035614;0.19978333 +19422;12;0.22451158;0.07334362;0.21996212;0.94648397 +19422;5;999.5933 +19424;1;-0.39035428;4.477084;8.72006 +19424;0;-0.5253906;4.0811005;7.777817 +19424;3;-0.36245728;0.09867859;0.20527649 +19427;0;-0.5110626;4.024109;7.858902 +19427;12;0.22380815;0.07333218;0.22052003;0.94652176 +19428;3;-0.39971924;0.09501648;0.2089386 +19428;1;-0.39026245;4.4614654;8.7280655 +19428;0;-0.5827179;3.9670868;8.001968 +19428;3;-0.43515015;0.09257507;0.21261597 +19432;4;11.743164;-1.940918;-66.596985 +19432;6;-0.24013606;-0.45920137;0.0726935 +19432;7;0.9610841;-0.21319671;0.17568311;0.0;0.26847467;0.8706849;-0.4121033;0.0;-0.065105565 +19432;0;-0.6257019;3.933838;8.159363 +19432;3;-0.46995544;0.09257507;0.21810913 +19432;12;0.2229137;0.0732542;0.22110464;0.9466024 +19434;17;1;38dead6d7725;8356;1235;-65; +19435;17;1;38dead6d60ff;6562;1042;-70; +19436;17;1;1c1bb5efa29a;1933;2270;-65; +19436;17;1;1c1bb5ecd182;4247;1405;-60; +19436;0;-0.6639252;3.9148254;8.273819 +19436;2;0.09908658;0.41165304;0.88826084; +19436;1;-0.38996223;4.442625;8.737684 +19436;3;-0.50294495;0.09257507;0.22055054 +19437;0;-0.70692444;3.8673248;8.416901 +19437;3;-0.5328827;0.09501648;0.2236023 +19437;12;0.22184895;0.0731263;0.22171728;0.9467191 +19438;0;-0.71647644;3.8340607;8.54567 +19438;3;-0.5597534;0.0993042;0.22543335 +19438;1;-0.38967213;4.4208307;8.748744 +19440;4;13.093567;-1.940918;-65.54718 +19440;6;-0.29041317;-0.42042863;0.083645254 +19440;7;0.9450113;-0.2614112;0.19651413;0.0;0.31801918;0.8746863;-0.36576974;0.0;-0.076271914 +19440;0;-0.73558044;3.7485352;8.65538 +19440;3;-0.58602905;0.1023407;0.23153687 +19441;12;0.22062469;0.07295879;0.2223447;0.9468709 +19442;1;-0.38958988;4.3964877;8.761006 +19442;0;-0.73558044;3.70578;8.741211 +19442;3;-0.6086273;0.10418701;0.23397827 +19447;12;0.21926232;0.07277541;0.22301222;0.9470446 +19447;0;-0.7499237;3.6962738;8.860458 +19447;3;-0.63002014;0.1035614;0.23704529 +19447;1;-0.38951573;4.3698463;8.774328 +19448;0;-0.74513245;3.6107635;8.994003 +19448;3;-0.65200806;0.1005249;0.2407074 +19450;4;13.243103;-1.4907837;-64.94751 +19450;6;-0.327477;-0.3805863;0.082658924 +19450;7;0.933759;-0.29863977;0.19725272;0.0;0.34959698;0.8791065;-0.3239658;0.0;-0.076657064 +19451;0;-0.73558044;3.5347595;9.103683 +19451;3;-0.6721649;0.09562683;0.2443695 +19451;12;0.21777257;0.07256474;0.2237101;0.9472398 +19452;0;-0.7881317;3.5062408;9.280151 +19452;1;-0.38909286;4.341304;8.788504 +19452;2;0.305441;0.67464495;-0.048833847; +19452;3;-0.6929321;0.089523315;0.24497986 +19457;0;-0.7403717;3.449234;9.389847 +19457;3;-0.71003723;0.08279419;0.24804688 +19457;12;0.21618801;0.072313406;0.22442369;0.94745326 +19458;0;-0.7833557;3.3922272;9.423233 +19458;1;-0.38811085;4.310896;8.803503 +19458;3;-0.7240906;0.073638916;0.24742126 +19459;4;14.143372;-1.940918;-66.29639 +19459;6;-0.3908297;-0.34444684;0.08293954 +19459;7;0.9107579;-0.35857928;0.20479485;0.0;0.40551132;0.8702849;-0.2795797;0.0;-0.0779784 +19460;0;-0.7738037;3.3827057;9.509079 +19460;3;-0.7375183;0.06324768;0.24620056 +19460;12;0.2145144;0.07200985;0.2251432;0.94768596 +19461;5;999.5933 +19462;1;-0.38642162;4.279131;8.819061 +19462;0;-0.7642517;3.3447113;9.528137 +19462;3;-0.7448578;0.05104065;0.2443695 +19465;12;0.21277869;0.0716486;0.22586226;0.9479336 +19465;0;-0.7738037;3.29245;9.647385 +19465;3;-0.74790955;0.037597656;0.2407074 +19467;0;-0.7021332;3.1879272;9.714157 +19467;1;-0.3837945;4.2464805;8.834943 +19467;3;-0.7485199;0.021713257;0.23887634 +19469;4;13.842773;-0.74157715;-64.19678 +19469;6;-0.4394639;-0.31632835;0.072153896 +19469;7;0.89308393;-0.4043451;0.19724682;0.0;0.44464263;0.8600785;-0.25011635;0.0;-0.06851443 +19469;0;-0.6639252;3.1879272;9.728455 +19470;3;-0.7460785;0.005844116;0.23338318 +19470;12;0.21101229;0.07121835;0.22656287;0.9481936 +19473;2;0.3067785;0.9357829;-0.75847626; +19474;0;-0.64004517;3.1831818;9.823853 +19474;1;-0.37992993;4.213666;8.850807 +19474;3;-0.7369232;-0.010040283;0.22787476 +19474;0;-0.6161499;3.1499176;9.885849 +19474;12;0.20925789;0.070717126;0.22723374;0.9484593 +19474;3;-0.72592163;-0.026535034;0.224823 +19478;0;-0.6018219;3.1309204;9.933533 +19478;3;-0.7100525;-0.04058838;0.21992493 +19478;1;-0.3748807;4.1813903;8.866315 +19478;4;11.8927;-0.74157715;-66.14685 +19478;6;-0.38680044;-0.3048061;0.06051092 +19478;7;0.9175796;-0.35983893;0.169008;0.0;0.39334467;0.8834314;-0.25461537;0.0;-0.05768646 +19479;0;-0.5349426;3.1214142;9.981247 +19479;3;-0.6892853;-0.05647278;0.21504211 +19479;12;0.20756184;0.07012818;0.22775497;0.94875073 +19480;0;-0.5206146;3.1404114;10.014618 +19481;1;-0.368653;4.1503882;8.881131 +19481;3;-0.6654663;-0.06929016;0.21260071 +19483;0;-0.5015106;3.1261597;10.071854 +19483;3;-0.6373596;-0.08395386;0.20770264 +19483;12;0.20594575;0.069512986;0.22834444;0.94900644 +19485;0;-0.46806335;3.1166687;10.090927 +19485;1;-0.36130494;4.121199;8.895015 +19485;3;-0.6031494;-0.094955444;0.20037842 +19488;4;13.842773;-1.7913818;-65.69672 +19488;6;-0.54408085;-0.29926106;0.046351347 +19488;7;0.8476136;-0.4946255;0.19208547;0.0;0.5287636;0.8175758;-0.22798878;0.0;-0.044275388 +19488;0;-0.4298401;3.1071625;10.067078 +19488;3;-0.56832886;-0.10839844;0.19487 +19489;12;0.20444497;0.06885631;0.22889896;0.9492452 +19491;0;-0.37728882;3.111908;10.071854 +19491;3;-0.5298462;-0.12060547;0.19059753 +19491;2;0.11015123;0.9977379;-1.1220608; +19491;1;-0.35311285;4.0949397;8.907462 +19498;0;-0.3534088;3.1499176;10.08139 +19498;3;-0.4870758;-0.1309967;0.18388367 +19498;0;-0.3343048;3.1641693;10.100464 +19498;3;-0.44126892;-0.13894653;0.17778015 +19498;4;13.093567;0.009155273;-65.54718 +19498;6;-0.50580513;-0.3034298;0.03308589 +19498;7;0.86951685;-0.46237808;0.17362829;0.0;0.4928932;0.83482206;-0.24521068;0.0;-0.031568676 +19498;1;-0.34404543;4.0719976;8.918328 +19498;0;-0.32476807;3.1879272;10.138611 +19498;3;-0.39544678;-0.14320374;0.17227173 +19498;12;0.20311773;0.06818479;0.2293987;0.94945794 +19498;12;0.20198202;0.06750273;0.2298399;0.94964224 +19500;5;999.6039 +19500;0;-0.25309753;3.2639465;10.090927 +19500;3;-0.3484192;-0.14505005;0.16677856 +19501;1;-0.3345161;4.052949;8.927363 +19503;0;-0.23399353;3.3209534;10.076614 +19503;12;0.20106654;0.06684109;0.230242;0.9497859 +19503;3;-0.30015564;-0.14382935;0.1612854 +19505;1;-0.32498926;4.038038;8.934468 +19505;0;-0.20533752;3.3494568;10.071854 +19505;3;-0.2531128;-0.13832092;0.15516663 +19507;4;13.542175;-0.14038086;-65.24658 +19507;6;-0.5364106;-0.32098868;0.02038444 +19507;7;0.8560834;-0.48495135;0.17872676;0.0;0.51647544;0.8156461;-0.2607186;0.0;-0.019341942 +19507;0;-0.20054626;3.415985;10.028931 +19507;3;-0.2060852;-0.13282776;0.15028381 +19508;12;0.20037234;0.0662288;0.23060225;0.9498881 +19509;0;-0.19099426;3.449234;9.966934 +19510;1;-0.31604868;4.0273;8.939635 +19510;2;-0.09710103;0.7709117;-1.1456423; +19510;3;-0.15965271;-0.12243652;0.14172363 +19511;0;-0.17666626;3.5014954;9.9144745 +19512;12;0.1998952;0.065695986;0.2309256;0.94994706 +19512;3;-0.113845825;-0.11265564;0.13684082 +19514;0;-0.16233826;3.615509;9.86676 +19515;1;-0.30812064;4.020696;8.942884 +19515;3;-0.07229614;-0.10105896;0.1307373 +19516;4;12.643433;0.1586914;-65.24658 +19516;6;-0.4719617;-0.35119528;0.016451562 +19516;7;0.88798463;-0.42688447;0.17103471;0.0;0.4596135;0.836313;-0.29889086;0.0;-0.0154466955 +19517;0;-0.20054626;3.6582794;9.828613 +19517;3;-0.03504944;-0.087005615;0.12339783 +19518;12;0.19962977;0.06526267;0.23119903;0.94996625 +19518;0;-0.19099426;3.7105408;9.75708 +19519;1;-0.30148107;4.0178113;8.9444065 +19519;3;-2.2888184E-4;-0.07296753;0.11790466 +19521;0;-0.20054626;3.8007965;9.666458 +19521;12;0.19954719;0.06494138;0.23145479;0.94994324 +19522;3;0.031539917;-0.059524536;0.1124115 +19523;0;-0.22921753;3.8768158;9.599686 +19524;3;0.05596924;-0.046081543;0.10507202 +19524;1;-0.29629624;4.018117;8.944443 +19526;4;13.093567;1.3595581;-63.89618 +19526;6;-0.4288624;-0.38372043;0.02387307 +19526;7;0.9054641;-0.3855961;0.17734261;0.0;0.42384526;0.8433033;-0.33044612;0.0;-0.022134876 +19526;0;-0.21966553;3.9670868;9.4852295 +19526;3;0.0761261;-0.03263855;0.098968506 +19527;12;0.19961818;0.06473321;0.2316849;0.94988656 +19528;0;-0.23876953;4.0383606;9.427994 +19529;1;-0.29254252;4.0208187;8.943353 +19529;2;-0.13345355;0.28230095;-0.766181; +19529;3;0.09017944;-0.02104187;0.09347534 +19531;0;-0.25309753;4.100113;9.294464 +19531;12;0.19979927;0.06462554;0.23188914;0.949806 +19531;3;0.10177612;-0.011260986;0.087371826 +19533;0;-0.27697754;4.1523743;9.199066 +19533;1;-0.29006094;4.0250163;8.941545 +19533;3;0.10850525;-0.003326416;0.08003235 +19536;4;13.243103;-0.14038086;-65.24658 +19536;6;-0.39741835;-0.42384008;0.030100217 +19536;7;0.91685516;-0.35279256;0.18685322;0.0;0.3982765;0.8404758;-0.36739123;0.0;-0.027432699 +19537;0;-0.28652954;4.2188873;9.08461 +19537;3;0.1103363;0.0027923584;0.07208252 +19538;12;0.20004563;0.06459777;0.23206788;0.94971234 +19538;5;999.6039 +19538;0;-0.26264954;4.2854004;8.994003 +19539;3;0.1091156;0.006439209;0.0647583 +19539;1;-0.28855518;4.0300097;8.939343 +19541;0;-0.2960968;4.342407;8.850922 +19541;12;0.20032439;0.064625055;0.23222327;0.94961375 +19541;3;0.10543823;0.006439209;0.058044434 +19543;0;-0.26742554;4.404175;8.769836 +19543;1;-0.2876355;4.035142;8.9370575 +19543;3;0.09628296;0.0052337646;0.050094604 +19545;4;13.392639;0.009155273;-65.097046 +19545;6;-0.37018785;-0.46521634;0.030484341 +19545;7;0.9268793;-0.3233411;0.19064459;0.0;0.37436986;0.8331831;-0.4070051;0.0;-0.027240384 +19545;0;-0.24832153;4.4184265;8.717377 +19545;3;0.08589172;0.0015716553;0.042160034 +19546;12;0.20060314;0.06467502;0.23234858;0.9495208 +19548;0;-0.23876953;4.465927;8.650604 +19548;1;-0.28683126;4.0397043;8.935023 +19548;2;-0.063782215;-0.22685623;-0.026061058; +19548;3;0.07185364;-0.006378174;0.033599854 +19550;0;-0.26742554;4.503952;8.526611 +19550;12;0.20085312;0.06471856;0.23243977;0.9494427 +19551;3;0.058410645;-0.014312744;0.025054932 +19552;0;-0.24832153;4.546707;8.46936 +19553;1;-0.28578928;4.0433292;8.933416 +19553;3;0.04496765;-0.025314331;0.016494751 +19555;4;13.243103;1.2084961;-64.94751 +19555;6;-0.34094456;-0.49250588;0.02931159 +19555;7;0.9374007;-0.29463693;0.18565802;0.0;0.34729373;0.83043104;-0.4356275;0.0;-0.025824232 +19556;0;-0.23876953;4.5419617;8.426437 +19556;3;0.030319214;-0.03630066;0.008560181 +19556;12;0.20105752;0.06472421;0.23248136;0.94938886 +19557;0;-0.25309753;4.537201;8.340591 +19558;1;-0.2841856;4.045835;8.932332 +19558;3;0.01260376;-0.047912598;0.0012359619 +19560;0;-0.22921753;4.5657043;8.311981 +19560;12;0.20121168;0.064679116;0.23248741;0.9493577 +19560;3;-0.0020599365;-0.060134888;-0.004272461 +19563;0;-0.22921753;4.5419617;8.302444 +19565;1;-0.28182736;4.0470023;8.931879 +19565;3;-0.016098022;-0.07052612;-0.01159668 +19566;4;12.193298;-0.440979;-64.19678 +19566;6;-0.32847375;-0.5004253;0.027601428 +19566;7;0.9419036;-0.28304124;0.18084592;0.0;0.3350094;0.83047026;-0.44507062;0.0;-0.024213828 +19566;0;-0.22442627;4.5799713;8.297668 +19568;3;-0.030761719;-0.07723999;-0.016479492 +19568;12;0.20130484;0.06456874;0.23245533;0.94935346 +19568;0;-0.23399353;4.560959;8.235672 +19568;2;-0.081493914;-0.47033882;0.5530348; +19568;3;-0.044204712;-0.083343506;-0.021377563 +19569;1;-0.27888203;4.046965;8.931988 +19570;0;-0.20533752;4.5847015;8.2165985 +19570;12;0.2013447;0.06440463;0.23238961;0.9493722 +19572;3;-0.053970337;-0.08822632;-0.026870728 +19572;0;-0.17666626;4.627472;8.230911 +19572;1;-0.27557313;4.0458884;8.932578 +19572;3;-0.06375122;-0.09310913;-0.029312134 +19576;12;0.20133562;0.0642012;0.23229615;0.9494107 +19577;4;13.842773;0.45928955;-66.14685 +19577;6;-0.3604782;-0.5120681;0.021460459 +19577;7;0.9318041;-0.30747917;0.1928668;0.0;0.3624791;0.8157052;-0.4508146;0.0;-0.018706353 +19577;0;-0.171875;4.603714;8.178452 +19577;3;-0.07107544;-0.094955444;-0.033569336 +19577;5;999.6039 +19578;1;-0.2720103;4.04403;8.933529 +19578;0;-0.143219;4.57045;8.1689 +19578;3;-0.07902527;-0.09434509;-0.034805298 +19579;0;-0.16233826;4.5752106;8.140289 +19579;12;0.20128766;0.06397169;0.23218863;0.94946265 +19579;3;-0.08329773;-0.091293335;-0.036636353 +19583;1;-0.26859424;4.0416055;8.93473 +19584;0;-0.16233826;4.5989685;8.135513 +19585;3;-0.08879089;-0.087005615;-0.037246704 +19585;12;0.20120843;0.06374105;0.23207368;0.9495231 +19585;4;13.542175;1.2084961;-64.497375 +19585;6;-0.3563745;-0.5144252;0.019951627 +19585;7;0.9335567;-0.30372545;0.19032305;0.0;0.3580089;0.8158756;-0.45406693;0.0;-0.01736825 +19585;0;-0.171875;4.560959;8.111679 +19585;3;-0.093688965;-0.082733154;-0.037857056 +19588;1;-0.26557124;4.0387516;8.9361105 +19588;2;-0.13822764;-0.52413654;0.75618076; +19588;0;-0.171875;4.603714;8.14505 +19588;3;-0.09674072;-0.074798584;-0.037246704 +19590;12;0.20110236;0.06352467;0.23195973;0.94958794 +19591;0;-0.17666626;4.6084595;8.149826 +19591;3;-0.09857178;-0.06562805;-0.034805298 +19591;1;-0.26314107;4.035632;8.937592 +19592;0;-0.157547;4.57045;8.125992 +19592;3;-0.10101318;-0.055252075;-0.034194946 +19594;4;12.342834;1.6586304;-65.54718 +19594;6;-0.317509;-0.51226985;0.019385604 +19594;7;0.94687116;-0.27212507;0.17141421;0.0;0.3211688;0.8280664;-0.4595177;0.0;-0.016896097 +19594;0;-0.157547;4.61322;8.173676 +19594;3;-0.10345459;-0.04486084;-0.03112793 +19594;12;0.20097567;0.06332885;0.23182337;0.9496612 +19597;0;-0.19099426;4.5799713;8.202286 +19597;1;-0.2615195;4.0323;8.939143 +19597;3;-0.10467529;-0.03263855;-0.029907227 +19598;0;-0.20054626;4.603714;8.183212 +19598;12;0.20082359;0.06318441;0.23173858;0.94972354 +19599;3;-0.109558105;-0.024093628;-0.02746582 +19601;1;-0.2607954;4.028787;8.940747 +19601;0;-0.21009827;4.6179657;8.183212 +19601;3;-0.11077881;-0.014312744;-0.02319336 +19603;4;13.693237;-1.3412476;-65.54718 +19604;6;-0.36735198;-0.51363134;0.025668662 +19604;7;0.9284451;-0.3128034;0.20035897;0.0;0.37079638;0.81285655;-0.44919282;0.0;-0.022354078 +19604;0;-0.23399353;4.603714;8.187988 +19604;3;-0.11445618;-0.0069885254;-0.021972656 +19604;12;0.2006502;0.06308702;0.2316736;0.9497826 +19605;1;-0.26078084;4.0250287;8.942441 +19605;0;-0.2722168;4.594223;8.202286 +19606;2;-0.10423854;-0.5484619;0.7535; +19606;3;-0.11689758;-0.0014953613;-0.01953125 +19608;0;-0.3152008;4.6084595;8.221359 +19609;3;-0.121780396;0.0015716553;-0.017089844 +19609;12;0.20045292;0.06302859;0.2316308;0.9498386 +19610;0;-0.3152008;4.622711;8.235672 +19610;1;-0.2612283;4.0209885;8.944244 +19611;3;-0.1254425;0.0046081543;-0.01586914 +19612;4;12.042236;1.05896;-65.54718 +19613;6;-0.27951083;-0.5111677;0.038253956 +19613;7;0.9553258;-0.24062012;0.17162374;0.0;0.2936667;0.83832526;-0.45931545;0.0;-0.033355962 +19613;0;-0.35820007;4.61322;8.269058 +19613;3;-0.12973022;0.0052337646;-0.01159668 +19614;12;0.20023677;0.0629839;0.2315673;0.9499026 +19615;0;-0.36297607;4.6797333;8.292908 +19615;1;-0.2618577;4.0166063;8.946196 +19615;3;-0.13705444;0.0040130615;-0.012207031 +19617;5;999.6039 +19618;0;-0.37252808;4.6322327;8.321533 +19618;12;0.19999759;0.0629533;0.23155329;0.9499584 +19618;3;-0.14195251;0.002166748;-0.012207031 +19623;0;-0.37728882;4.6322327;8.369217 +19623;1;-0.26239583;4.0116644;8.948397 +19623;3;-0.14927673;-0.0027160645;-0.012817383 +19623;4;12.643433;0.1586914;-65.24658 +19623;6;-0.29449865;-0.50508463;0.04505004 +19623;7;0.94965166;-0.25401637;0.18340497;0.0;0.31081897;0.83745706;-0.4495077;0.0;-0.039411467 +19623;0;-0.40596008;4.646469;8.44075 +19623;12;0.19972837;0.0629116;0.23154359;0.95002025 +19623;3;-0.1572113;-0.0051574707;-0.015258789 +19625;0;-0.41073608;4.61322;8.488449 +19625;1;-0.26270854;4.0060587;8.950898 +19626;3;-0.16699219;-0.007598877;-0.017715454 +19626;2;0.059074044;-0.6016493;0.6091795; +19627;12;0.19942738;0.06284711;0.23152836;0.95009136 +19629;17;1;38dead6d7725;6355;1825;-75; +19630;17;1;38dead6d60ff;12526;488;-65; +19632;17;1;1c1bb5efa29a;4555;930;-65; +19632;17;1;1c1bb5ecd182;5376;509;-59; +19632;1;-0.2628396;3.9996173;8.953774 +19632;0;-0.40596008;4.6179657;8.497986 +19632;3;-0.17492676;-0.011871338;-0.01953125 +19632;0;-0.38685608;4.646469;8.54567 +19633;3;-0.18164062;-0.017974854;-0.02381897 +19633;12;0.19908564;0.06275865;0.23149812;0.95017624 +19633;4;13.243103;-0.14038086;-66.89758 +19633;6;-0.30814618;-0.49758106;0.04523837 +19633;7;0.945376;-0.26651528;0.18770671;0.0;0.3235506;0.8373488;-0.44063812;0.0;-0.03973919 +19633;0;-0.40119934;4.61322;8.593384 +19633;3;-0.1902008;-0.025314331;-0.026245117 +19634;0;-0.41552734;4.5657043;8.612442 +19634;1;-0.26259547;3.9924831;8.956965 +19634;3;-0.19937134;-0.030807495;-0.030532837 +19636;0;-0.40596008;4.560959;8.664902 +19637;12;0.1987118;0.0626391;0.23145469;0.95027304 +19637;3;-0.2060852;-0.038757324;-0.033569336 +19638;0;-0.41073608;4.560959;8.731674 +19639;1;-0.26191726;3.9845388;8.960522 +19639;3;-0.21401978;-0.047302246;-0.03541565 +19641;4;12.342834;0.7598877;-65.54718 +19641;6;-0.2879382;-0.48091114;0.047005136 +19641;7;0.9515999;-0.2517656;0.17627192;0.0;0.30450338;0.8500748;-0.4297098;0.0;-0.041658178 +19641;0;-0.41073608;4.53244;8.793686 +19642;3;-0.22013855;-0.05340576;-0.03968811 +19642;12;0.19830173;0.062482353;0.23139165;0.95038426 +19643;0;-0.4202881;4.4991913;8.807983 +19644;1;-0.26068085;3.9758694;8.964408 +19644;2;0.104008794;-0.57711506;0.29748535; +19644;3;-0.22441101;-0.059524536;-0.044570923 +19646;0;-0.41073608;4.503952;8.84137 +19646;12;0.1978628;0.062284127;0.23131096;0.9505084 +19647;3;-0.22624207;-0.0662384;-0.04763794 +19652;1;-0.25907913;3.9667726;8.968484 +19653;12;0.19740699;0.062055875;0.23120347;0.9506444 +19653;0;-0.43940735;4.465927;8.898605 +19653;3;-0.22868347;-0.07296753;-0.053131104 +19653;4;13.842773;1.8096924;-64.497375 +19653;6;-0.3328572;-0.46465307;0.049339276 +19653;7;0.93674123;-0.29210228;0.19285253;0.0;0.34723464;0.844909;-0.4068868;0.0;-0.04409029 +19654;1;-0.25704873;3.9574604;8.972655 +19654;0;-0.41073608;4.480179;8.941528 +19654;3;-0.22807312;-0.08029175;-0.058013916 +19655;5;999.6005 +19655;0;-0.4202881;4.432678;8.970154 +19655;3;-0.22807312;-0.083343506;-0.06472778 +19656;0;-0.41073608;4.4089203;9.022598 +19657;12;0.19694573;0.06179783;0.23107123;0.95078886 +19657;3;-0.22319031;-0.08822632;-0.07084656 +19658;1;-0.25486535;3.9481664;8.97681 +19658;0;-0.43940735;4.4089203;9.041687 +19658;3;-0.2183075;-0.09251404;-0.07572937 +19660;4;13.093567;1.6586304;-65.54718 +19660;6;-0.3143631;-0.4532313;0.048559736 +19660;7;0.94330037;-0.27799195;0.18139729;0.0;0.32905936;0.85497826;-0.40091413;0.0;-0.04363984 +19661;0;-0.41552734;4.3946686;9.075058 +19661;12;0.19649158;0.061526448;0.23090634;0.9509405 +19661;3;-0.21096802;-0.09188843;-0.08244324 +19663;0;-0.39163208;4.3519135;9.127518 +19663;1;-0.25258592;3.9392643;8.980785 +19663;2;0.122742414;-0.47109723;-0.019335747; +19663;3;-0.2036438;-0.09188843;-0.08488464 +19665;0;-0.41073608;4.299652;9.122772 +19665;12;0.19605908;0.061248746;0.23071164;0.95109504 +19665;3;-0.19386292;-0.090667725;-0.09039307 +19667;0;-0.39163208;4.290146;9.146606 +19667;1;-0.25050277;3.9309392;8.98449 +19668;3;-0.18348694;-0.09007263;-0.09588623 +19670;4;11.593628;0.45928955;-66.14685 +19670;6;-0.29633683;-0.43822423;0.04279106 +19670;7;0.9502363;-0.26442483;0.1647129;0.0;0.30911225;0.8660379;-0.39297315;0.0;-0.038735766 +19670;0;-0.37252808;4.280655;9.19429 +19670;3;-0.1743164;-0.08822632;-0.10015869 +19671;12;0.19566049;0.060976915;0.2304613;0.95125526 +19672;13;61.165985 +19673;1;-0.24865444;3.923427;8.987825 +19673;0;-0.35820007;4.275894;9.151382 +19673;3;-0.16209412;-0.087005615;-0.10322571 +19675;0;-0.3390808;4.214142;9.184769 +19675;12;0.1953008;0.0607304;0.23022032;0.9514032 +19676;3;-0.14805603;-0.083343506;-0.10749817 +19677;0;-0.36297607;4.233139;9.213379 +19677;1;-0.24709362;3.9168649;8.99073 +19678;3;-0.13461304;-0.0809021;-0.11116028 +19679;4;12.792969;2.708435;-64.34631 +19679;6;-0.3344293;-0.43039528;0.039376266 +19679;7;0.93847454;-0.29829586;0.17402644;0.0;0.34349048;0.85845137;-0.380888;0.0;-0.03577594 +19680;0;-0.3534088;4.199875;9.179993 +19680;3;-0.11933899;-0.079071045;-0.11299133 +19680;12;0.19499007;0.06050974;0.22996096;0.9515438 +19682;0;-0.3295288;4.2283936;9.184769 +19682;3;-0.10467529;-0.075408936;-0.117874146 +19682;1;-0.245868;3.91151;8.993094 +19682;2;0.07725763;-0.32133937;-0.1890564; +19684;0;-0.3438568;4.176132;9.203827 +19684;12;0.19473936;0.060318097;0.22968483;0.95167387 +19685;3;-0.08818054;-0.07234192;-0.12277222 +19686;0;-0.3390808;4.1951294;9.19429 +19687;1;-0.24505758;3.9074264;8.994891 +19687;3;-0.07107544;-0.07052612;-0.12765503 +19689;4;13.243103;0.1586914;-65.24658 +19689;6;-0.37642357;-0.42780378;0.036862794 +19689;7;0.92373294;-0.33446863;0.18667665;0.0;0.38156646;0.8461741;-0.37201655;0.0;-0.03353309 +19689;0;-0.3438568;4.166626;9.175232 +19690;3;-0.053375244;-0.06745911;-0.12948608 +19690;12;0.19455306;0.060160875;0.2293864;0.9517939 +19691;0;-0.3295288;4.166626;9.184769 +19691;1;-0.24460465;3.904798;8.996045 +19692;3;-0.038085938;-0.06562805;-0.1343689 +19692;5;999.6005 +19694;0;-0.32476807;4.1286316;9.156143 +19694;12;0.19443959;0.060036607;0.22906859;0.9519015 +19694;3;-0.0234375;-0.062576294;-0.14169312 +19696;0;-0.34864807;4.1571198;9.13707 +19696;1;-0.24454027;3.9035082;8.996607 +19697;3;-0.008163452;-0.06074524;-0.14598083 +19698;4;12.942505;0.1586914;-65.24658 +19698;6;-0.36502206;-0.42670757;0.038139034 +19698;7;0.9278033;-0.3249616;0.18325144;0.0;0.37145156;0.8503568;-0.37271568;0.0;-0.034710813 +19699;0;-0.3534088;4.1476135;9.13707 +19699;3;0.005264282;-0.06074524;-0.15086365 +19699;12;0.19439466;0.05994712;0.22872652;0.9519986 +19701;0;-0.3343048;4.1618805;9.089371 +19701;1;-0.24482591;3.903498;8.996604 +19701;2;0.053521693;-0.23965311;-0.17273426; +19701;3;0.01687622;-0.06135559;-0.15454102 +19703;0;-0.34864807;4.176132;9.075058 +19704;12;0.19441588;0.0598858;0.22835577;0.95208716 +19704;3;0.029708862;-0.06074524;-0.15757751 +19706;0;-0.38208008;4.166626;9.075058 +19706;1;-0.24527076;3.904584;8.99612 +19706;3;0.04069519;-0.06074524;-0.16247559 +19708;4;13.542175;1.2084961;-62.997437 +19708;6;-0.37576112;-0.43008423;0.04207737 +19708;7;0.92296875;-0.33355993;0.19200622;0.0;0.38297096;0.84551316;-0.372076;0.0;-0.038234122 +19708;0;-0.38208008;4.1381226;9.046463 +19709;3;0.051696777;-0.061965942;-0.1673584 +19709;12;0.19449146;0.059843678;0.22796452;0.9521681 +19711;0;-0.39163208;4.133362;9.041687 +19711;1;-0.24589998;3.906618;8.995219 +19711;3;0.057800293;-0.063186646;-0.17042542 +19715;0;-0.37252808;4.1523743;8.984451 +19715;3;0.06758118;-0.063797;-0.17346191 +19715;12;0.19461866;0.05981793;0.22755067;0.95224273 +19719;1;-0.24655068;3.909408;8.99399 +19719;0;-0.36775208;4.1476135;8.951065 +19719;3;0.07307434;-0.06806946;-0.17590332 +19719;4;12.942505;1.8096924;-64.497375 +19719;6;-0.34143695;-0.43359122;0.041061636 +19719;7;0.9357054;-0.30385616;0.17923963;0.0;0.3508101;0.85507905;-0.3818011;0.0;-0.037251435 +19719;0;-0.37728882;4.199875;8.951065 +19719;3;0.07795715;-0.07234192;-0.17897034 +19719;12;0.19478709;0.05979984;0.22711736;0.9523129 +19721;1;-0.24703789;3.9128199;8.992493 +19721;0;-0.39163208;4.2046356;8.893829 +19722;2;0.08870745;-0.23350048;-0.01914215; +19722;3;0.08407593;-0.074798584;-0.1820221 +19724;0;-0.38685608;4.2188873;8.831833 +19724;12;0.19499177;0.05977832;0.22666603;0.9523799 +19724;3;0.08956909;-0.08029175;-0.18629456 +19725;0;-0.39640808;4.209381;8.84137 +19725;1;-0.24735205;3.9167657;8.990766 +19725;3;0.09384155;-0.08639526;-0.18997192 +19731;4;13.842773;0.45928955;-64.94751 +19731;6;-0.36532453;-0.44395635;0.044805586 +19731;7;0.9261975;-0.32262018;0.19512628;0.0;0.3748626;0.8434646;-0.3847668;0.0;-0.040448572 +19731;0;-0.36297607;4.233139;8.798447 +19731;3;0.09811401;-0.09373474;-0.19241333 +19731;12;0.19522691;0.059748963;0.2261935;0.9524458 +19731;0;-0.3390808;4.2426453;8.784149 +19731;1;-0.24720852;3.9211442;8.988861 +19731;3;0.10055542;-0.09983826;-0.19485474 +19731;5;999.6005 +19733;0;-0.3104248;4.266403;8.741211 +19734;12;0.19549282;0.05969665;0.2256991;0.95251185 +19734;3;0.102996826;-0.10595703;-0.19729614 +19735;0;-0.32476807;4.275894;8.726913 +19736;1;-0.24656038;3.9258544;8.986822 +19737;3;0.10484314;-0.11206055;-0.19973755 +19738;4;11.442566;1.6586304;-65.54718 +19738;6;-0.28701916;-0.45531514;0.037197378 +19739;7;0.95379895;-0.25425357;0.16007087;0.0;0.29858327;0.86138195;-0.4109366;0.0;-0.033400092 +19739;0;-0.3152008;4.2854004;8.698288 +19739;3;0.10362244;-0.11633301;-0.20095825 +19740;12;0.19578256;0.059620358;0.22518331;0.9525792 +19741;0;-0.2960968;4.299652;8.722153 +19741;3;0.10543823;-0.123062134;-0.2027893 +19741;1;-0.24550222;3.9306722;8.984745 +19741;2;0.055322826;-0.30598617;0.20792675; +19742;0;-0.25787354;4.3329163;8.6839905 +19743;3;0.106674194;-0.12854004;-0.2015686 +19743;12;0.1960844;0.059519827;0.2246558;0.952648 +19745;0;-0.23876953;4.356659;8.688751 +19745;3;0.10606384;-0.13282776;-0.20339966 +19745;1;-0.24390651;3.9356325;8.982617 +19750;4;13.392639;1.3595581;-66.29639 +19750;6;-0.35631448;-0.46462667;0.02747339 +19750;7;0.93254143;-0.31184348;0.18198912;0.0;0.36022672;0.83783627;-0.41020346;0.0;-0.024557814 +19750;0;-0.24354553;4.3186646;8.703064 +19750;3;0.10421753;-0.13526917;-0.20584106 +19751;12;0.19639818;0.059392057;0.22411627;0.95271844 +19751;1;-0.24199757;3.9405468;8.980515 +19751;0;-0.23399353;4.375656;8.674438 +19751;3;0.10240173;-0.13894653;-0.20645142 +19753;0;-0.22442627;4.3851776;8.626755 +19753;12;0.19671741;0.059246853;0.22356975;0.9527899 +19754;3;0.10177612;-0.14138794;-0.20645142 +19755;0;-0.23399353;4.3329163;8.6362915 +19755;1;-0.23985721;3.9453683;8.978455 +19755;3;0.098739624;-0.14320374;-0.20767212 +19757;4;12.643433;0.9094238;-66.14685 +19757;6;-0.34056747;-0.46486783;0.027087588 +19757;7;0.93816376;-0.29857588;0.1752174;0.0;0.3453441;0.842541;-0.41335464;0.0;-0.024210112 +19757;0;-0.26742554;4.380417;8.6839905 +19758;3;0.09567261;-0.14627075;-0.20829773 +19758;12;0.19703019;0.05908799;0.22301629;0.9528649 +19759;0;-0.3199768;4.3851776;8.65538 +19760;1;-0.2376469;3.9499767;8.976487 +19760;3;0.094451904;-0.14932251;-0.20951843 +19760;2;-0.025737554;-0.39274883;0.29928207; +19763;0;-0.3390808;4.4184265;8.631531 +19764;12;0.19733557;0.058922958;0.22245646;0.95294285 +19764;3;0.0932312;-0.15298462;-0.2137909 +19764;1;-0.23525275;3.9544947;8.97456 +19765;0;-0.26742554;4.437439;8.664902 +19765;3;0.09140015;-0.15481567;-0.21440125 +19767;4;13.693237;1.9592285;-65.097046 +19767;6;-0.35417357;-0.4731006;0.030853283 +19768;7;0.9326122;-0.30872107;0.18688443;0.0;0.3598339;0.8349106;-0.41646588;0.0;-0.027459994 +19768;0;-0.18144226;4.480179;8.741211 +19768;3;0.08956909;-0.15298462;-0.2137909 +19768;12;0.19763905;0.058736112;0.22188555;0.95302457 +19772;1;-0.23270735;3.9588785;8.972694 +19772;0;-0.3295288;4.513443;8.846146 +19772;3;0.087127686;-0.14505005;-0.21195984 +19772;5;999.6005 +19772;0;-0.3199768;4.5514526;8.850922 +19772;3;0.08956909;-0.1309967;-0.21257019 +19772;12;0.19793554;0.05854782;0.22130455;0.9531097 +19773;1;-0.23092209;3.9631398;8.970859 +19773;0;-0.32476807;4.513443;8.889069 +19773;3;0.08589172;-0.12487793;-0.2137909 +19776;4;12.792969;1.9592285;-66.596985 +19776;6;-0.31223124;-0.46956083;0.036519427 +19776;7;0.94594103;-0.27393547;0.17365187;0.0;0.3227003;0.84865063;-0.41911405;0.0;-0.032559585 +19776;0;-0.34864807;4.4611816;8.936752 +19776;12;0.19821225;0.05839467;0.22073916;0.9531927 +19777;3;0.08100891;-0.123062134;-0.21257019 +19779;0;-0.37728882;4.437439;8.865219 +19779;3;0.07673645;-0.12060547;-0.21440125 +19779;2;0.04084423;-0.4954176;0.15853596; +19779;1;-0.2298209;3.967075;8.969148 +19781;0;-0.39640808;4.437439;8.850922 +19781;3;0.07246399;-0.118774414;-0.2137909 +19781;12;0.19846767;0.058274597;0.2201782;0.9532766 +19783;1;-0.2289458;3.9706526;8.9675865 +19783;0;-0.3534088;4.465927;8.855682 +19783;3;0.07002258;-0.118774414;-0.21440125 +19785;4;13.093567;0.7598877;-65.54718 +19785;6;-0.33180708;-0.46676245;0.03988641 +19785;7;0.938858;-0.29090634;0.18417183;0.0;0.34245825;0.84431976;-0.41212443;0.0;-0.03561031 +19785;0;-0.3199768;4.4611816;8.922455 +19785;3;0.06819153;-0.11816406;-0.2137909 +19786;12;0.1987017;0.058156464;0.21961746;0.9533644 +19787;0;-0.3152008;4.4991913;9.003525 +19788;1;-0.22804542;3.9739614;8.966145 +19788;3;0.06452942;-0.11328125;-0.21195984 +19792;12;0.19892043;0.05803841;0.2190596;0.9534543 +19793;0;-0.37728882;4.53244;9.094147 +19793;1;-0.22748783;3.9769948;8.964813 +19793;3;0.062072754;-0.10839844;-0.21133423 +19794;0;-0.3534088;4.537201;9.14183 +19794;3;0.057800293;-0.10166931;-0.21011353 +19795;4;12.193298;1.5090942;-64.94751 +19795;6;-0.30816728;-0.46039563;0.038639188 +19795;7;0.94697404;-0.27173087;0.17147186;0.0;0.31944108;0.85367304;-0.41133913;0.0;-0.03460734 +19795;0;-0.38685608;4.5419617;9.156143 +19795;12;0.19912015;0.057934493;0.21851146;0.95354474 +19796;3;0.05230713;-0.09373474;-0.20829773 +19797;0;-0.43463135;4.5086975;9.13707 +19798;1;-0.22751082;3.9796457;8.963635 +19798;2;0.09969157;-0.5055883;-0.06338692; +19799;3;0.048034668;-0.08822632;-0.20767212 +19803;12;0.19929181;0.057860404;0.21797507;0.9536361 +19803;0;-0.47763062;4.5086975;9.11322 +19803;3;0.04496765;-0.08395386;-0.20645142 +19804;0;-0.5158386;4.5514526;9.122772 +19804;1;-0.22810945;3.9819477;8.962599 +19804;3;0.042526245;-0.0821228;-0.20767212 +19804;4;11.442566;0.30975342;-65.84625 +19805;6;-0.25245607;-0.46213883;0.05648392 +19805;7;0.9604704;-0.22358093;0.16585591;0.0;0.27375743;0.8667278;-0.4169408;0.0;-0.050531927 +19805;12;0.19943905;0.057810992;0.21743914;0.95373076 +19806;0;-0.5636139;4.513443;9.103683 +19806;3;0.041915894;-0.08578491;-0.20767212 +19807;0;-0.5683899;4.494446;9.151382 +19807;1;-0.2289053;3.984026;8.961654 +19807;3;0.04008484;-0.08822632;-0.21011353 +19807;5;999.6005 +19809;0;-0.5827179;4.513443;9.184769 +19809;12;0.19957079;0.05776789;0.21691294;0.9538256 +19809;3;0.038253784;-0.08885193;-0.21195984 +19811;0;-0.55882263;4.522949;9.199066 +19811;1;-0.22957145;3.985948;8.960782 +19811;3;0.041305542;-0.087631226;-0.21073914 +19813;4;13.542175;2.558899;-63.746643 +19813;6;-0.30468193;-0.4562365;0.060673196 +19814;7;0.94417304;-0.2693059;0.18976733;0.0;0.32492194;0.85637033;-0.40131748;0.0;-0.054433946 +19815;0;-0.5445099;4.556198;9.237228 +19816;3;0.042526245;-0.087631226;-0.20951843 +19816;12;0.19969831;0.057712626;0.21637756;0.9539238 +19816;0;-0.5779419;4.546707;9.280151 +19817;1;-0.23024273;3.9879835;8.95986 +19817;2;0.27935678;-0.5263345;-0.22042465; +19817;3;0.041305542;-0.08822632;-0.20706177 +19818;0;-0.59706116;4.5799713;9.327835 +19819;12;0.19983006;0.057662062;0.21584389;0.95402014 +19819;3;0.041305542;-0.08944702;-0.20767212 +19821;0;-0.6018219;4.5657043;9.318314 +19821;3;0.04069519;-0.09310913;-0.20889282 +19821;1;-0.23085624;3.9899828;8.958953 +19823;4;12.942505;1.5090942;-66.14685 +19824;6;-0.2745657;-0.4547705;0.06449527 +19824;7;0.9528661;-0.24357189;0.18088391;0.0;0.29781514;0.86471194;-0.40444952;0.0;-0.057899933 +19824;0;-0.6687012;4.556198;9.304001 +19824;3;0.038864136;-0.09739685;-0.20829773 +19824;12;0.19996038;0.057609454;0.21531303;0.95411605 +19826;0;-0.65437317;4.5514526;9.256302 +19826;3;0.04008484;-0.10411072;-0.20767212 +19827;1;-0.23130412;3.9919126;8.958082 +19832;17;1;38dead6d7725;8671;1341;-70; +19833;17;1;38dead6d60ff;9900;690;-69; +19833;17;1;1c1bb5efa29a;2686;1073;-58; +19834;17;1;1c1bb5ecd182;3716;1297;-61; +19834;0;-0.65437317;4.5419617;9.337372 +19834;3;0.042526245;-0.11021423;-0.20951843 +19834;0;-0.67349243;4.57045;9.361221 +19834;12;0.2000893;0.057543557;0.21477848;0.95421344 +19834;1;-0.2312415;3.9938712;8.9572115 +19834;3;0.0443573;-0.115112305;-0.20951843 +19834;4;12.942505;1.5090942;-66.14685 +19834;6;-0.2602787;-0.4531722;0.07182119 +19834;7;0.9557417;-0.23137368;0.18172488;0.0;0.2870459;0.86878073;-0.40351525;0.0;-0.064516254 +19834;0;-0.65437317;4.5989685;9.418457 +19834;3;0.04864502;-0.12060547;-0.20951843 +19834;12;0.20022716;0.057451297;0.21423793;0.9543116 +19835;0;-0.62094116;4.6179657;9.399368 +19835;1;-0.2307004;3.9960735;8.956243 +19835;2;0.3719669;-0.5662503;-0.38987446; +19836;3;0.053527832;-0.123062134;-0.21011353 +19837;0;-0.6161499;4.594223;9.43277 +19838;12;0.20038317;0.057334814;0.21368997;0.9544087 +19838;3;0.061462402;-0.12672424;-0.20829773 +19840;0;-0.65914917;4.6322327;9.4852295 +19840;1;-0.2298521;3.9987235;8.955081 +19840;3;0.06941223;-0.12854004;-0.21073914 +19842;4;11.442566;1.9592285;-65.54718 +19842;6;-0.21985096;-0.45334545;0.06938063 +19842;7;0.96696043;-0.19605483;0.16294205;0.0;0.24719132;0.87734836;-0.4112864;0.0;-0.062322255 +19842;0;-0.68304443;4.622711;9.4852295 +19843;3;0.07673645;-0.1309967;-0.21257019 +19843;12;0.20056717;0.057207566;0.21312283;0.9545045 +19845;0;-0.71647644;4.646469;9.4375305 +19845;1;-0.22891551;4.0020747;8.9536085 +19845;3;0.08529663;-0.13404846;-0.21318054 +19845;5;999.6047 +19847;0;-0.73558044;4.646469;9.427994 +19848;12;0.20079075;0.0570844;0.21255541;0.9545914 +19848;3;0.09567261;-0.13832092;-0.21318054 +19850;0;-0.71170044;4.6322327;9.451843 +19850;1;-0.22778133;4.006162;8.951809 +19850;3;0.10543823;-0.14505005;-0.21195984 +19852;4;11.442566;1.9592285;-65.54718 +19852;6;-0.20739585;-0.4545703;0.0751557 +19852;7;0.96901965;-0.18500184;0.16363192;0.0;0.23759255;0.87919647;-0.4129933;0.0;-0.067460075 +19852;0;-0.73080444;4.603714;9.423233 +19853;3;0.11462402;-0.15115356;-0.21133423 +19853;12;0.2010538;0.056956496;0.21198255;0.95467097 +19854;0;-0.73080444;4.670227;9.427994 +19855;2;0.43507147;-0.6105037;-0.5020819; +19855;1;-0.2261255;4.0110893;8.949645 +19855;3;0.1262207;-0.15727234;-0.20767212 +19857;0;-0.7403717;4.6797333;9.4375305 +19857;12;0.20137052;0.056812108;0.2114044;0.9547411 +19858;3;0.13783264;-0.16215515;-0.20584106 +19859;0;-0.7260437;4.712982;9.4470825 +19859;1;-0.22388719;4.01701;8.947045 +19860;3;0.15065002;-0.16825867;-0.20339966 +19861;4;12.342834;1.6586304;-64.34631 +19862;6;-0.23742954;-0.46157783;0.07670297 +19862;7;0.9610611;-0.21059106;0.1789213;0.0;0.26768315;0.8702325;-0.4135711;0.0;-0.06860875 +19864;0;-0.73558044;4.7414856;9.418457 +19865;12;0.20174664;0.056649707;0.2108262;0.95479923 +19865;3;0.16104126;-0.17253113;-0.1991272 +19865;1;-0.22110951;4.024024;8.943962 +19866;0;-0.7499237;4.7700043;9.418457 +19866;3;0.17326355;-0.17558289;-0.19851685 +19867;0;-0.6639252;4.793747;9.356461 +19867;12;0.20218718;0.056472372;0.2102546;0.95484257 +19868;3;0.18791199;-0.17926025;-0.1979065 +19872;1;-0.21786639;4.032171;8.9403715 +19872;0;-0.63049316;4.8079987;9.361221 +19872;3;0.20074463;-0.18292236;-0.19485474 +19873;4;12.342834;1.6586304;-64.34631 +19873;6;-0.25124323;-0.47355565;0.06725003 +19873;7;0.95879555;-0.22124958;0.17821197;0.0;0.2777307;0.8620115;-0.42403042;0.0;-0.059804223 +19873;0;-0.6257019;4.8982697;9.323074 +19873;3;0.21113586;-0.18658447;-0.19119263 +19873;12;0.20269379;0.05628629;0.20968391;0.9548716 +19874;1;-0.21415389;4.041559;8.936221 +19874;2;0.42912215;-0.7471566;-0.4510193; +19874;0;-0.55882263;4.969528;9.299225 +19874;3;0.2233429;-0.18841553;-0.18934631 +19877;12;0.20327216;0.056088768;0.2091191;0.9548842 +19880;0;-0.47763062;5.017044;9.313538 +19880;3;0.23495483;-0.18963623;-0.18751526 +19880;0;-0.45373535;5.1263123;9.308762 +19881;3;0.24533081;-0.19207764;-0.1832428 +19881;1;-0.21002203;4.0520754;8.931556 +19884;12;0.20391658;0.055887327;0.20855813;0.95488125 +19885;1;-0.20556009;4.063648;8.926399 +19885;4;12.193298;-0.14038086;-66.89758 +19885;6;-0.26897678;-0.5028774;0.04870428 +19885;7;0.9566648;-0.23284575;0.17485814;0.0;0.28805006;0.8446942;-0.45113066;0.0;-0.042657793 +19885;0;-0.41552734;5.2260895;9.304001 +19885;3;0.25328064;-0.19146729;-0.17958069 +19885;0;-0.37252808;5.3353577;9.337372 +19886;3;0.2599945;-0.18841553;-0.17590332 +19886;5;999.6047 +19886;0;-0.3534088;5.4398804;9.351685 +19886;3;0.26609802;-0.18353271;-0.17102051 +19889;12;0.20461929;0.055684313;0.2080116;0.954862 +19890;1;-0.20114437;4.0759635;8.920884 +19890;0;-0.3343048;5.4921417;9.351685 +19890;3;0.26733398;-0.17558289;-0.16552734 +19891;4;12.193298;-0.14038086;-66.89758 +19891;6;-0.28098232;-0.530742;0.03573287 +19891;7;0.95515573;-0.23915195;0.17459631;0.0;0.29449657;0.8286102;-0.476106;0.0;-0.030810602 +19891;0;-0.3199768;5.5634003;9.351685 +19891;3;0.26609802;-0.1639862;-0.16001892 +19891;12;0.20535803;0.055496838;0.20748423;0.95482904 +19893;1;-0.19721249;4.0885625;8.915204 +19893;0;-0.3390808;5.634674;9.323074 +19893;3;0.2624359;-0.15298462;-0.15454102 +19894;2;0.15094131;-1.2603068;-0.4183979; +19896;0;-0.26742554;5.7296906;9.346909 +19896;12;0.20610616;0.055343326;0.20698854;0.95478433 +19897;3;0.25694275;-0.14320374;-0.1490326 +19898;0;-0.138443;5.8769684;9.38031 +19898;1;-0.19384943;4.1010303;8.909551 +19898;3;0.24839783;-0.12794495;-0.14047241 +19901;4;12.792969;2.708435;-63.89618 +19901;6;-0.31539786;-0.5596438;0.014757822 +19901;7;0.9481393;-0.26287273;0.17868897;0.0;0.3176089;0.80564237;-0.50006485;0.0;-0.0125059765 +19902;0;-0.08111572;5.9387207;9.48999 +19902;3;0.23434448;-0.10595703;-0.13009644 +19902;12;0.20683862;0.055220235;0.2065302;0.9547323 +19903;0;-0.052444458;5.986252;9.637848 +19903;1;-0.19133706;4.1127443;8.904203 +19903;3;0.21479797;-0.083343506;-0.12155151 +19907;0;-0.11933899;6.0099945;9.671219 +19907;3;0.18852234;-0.058914185;-0.113601685 +19907;12;0.20751292;0.055149358;0.20612927;0.95467675 +19908;1;-0.1905227;4.122724;8.899604 +19909;0;-0.15278625;5.981491;9.690308 +19909;3;0.15982056;-0.0332489;-0.106277466 +19911;12;0.20807242;0.05516032;0.2057955;0.95462644 +19912;4;12.942505;1.5090942;-65.24658 +19912;6;-0.32243672;-0.55296236;0.01576561 +19912;7;0.9457245;-0.26965496;0.18135981;0.0;0.32469246;0.8071184;-0.4930868;0.0;-0.013415541 +19912;0;-0.22442627;5.986252;9.675995 +19913;3;0.12866211;-0.011871338;-0.09954834 +19913;1;-0.19162372;4.1303015;8.896067 +19913;0;-0.25309753;6.0005035;9.642624 +19913;2;-0.06566313;-1.8061075;-0.6727514; +19913;3;0.095062256;0.0046081543;-0.09588623 +19915;0;-0.30085754;5.9767303;9.709381 +19915;12;0.2084794;0.05525219;0.2055241;0.95459074 +19916;3;0.06390381;0.018051147;-0.094055176 +19917;0;-0.3152008;5.9102325;9.771393 +19917;1;-0.19407174;4.134965;8.8938465 +19917;3;0.030929565;0.032104492;-0.09283447 +19922;4;12.942505;1.8096924;-65.24658 +19922;6;-0.2961412;-0.5437482;0.03224633 +19923;7;0.9511049;-0.24974234;0.18173707;0.0;0.30763343;0.81852347;-0.48516086;0.0;-0.027590837 +19923;0;-0.3343048;5.857971;9.89061 +19923;3;-0.006942749;0.04248047;-0.09161377 +19923;12;0.20870903;0.055384517;0.20529814;0.9545815 +19923;0;-0.3534088;5.8104553;10.005081 +19923;1;-0.1976424;4.136562;8.893026 +19923;3;-0.046035767;0.053482056;-0.08917236 +19928;5;999.6047 +19928;12;0.20875995;0.055543505;0.20509884;0.95460397 +19928;1;-0.20208447;4.1345763;8.893849 +19929;0;-0.41073608;5.7201843;10.10524 +19929;3;-0.085128784;0.062026978;-0.08795166 +19929;0;-0.45373535;5.577652;10.186325 +19929;3;-0.12788391;0.0687561;-0.08673096 +19929;4;11.743164;0.7598877;-64.34631 +19929;6;-0.27222928;-0.5005527;0.04451415 +19929;7;0.9564777;-0.23589252;0.17177089;0.0;0.2891823;0.8450093;-0.44981444;0.0;-0.03904015 +19930;0;-0.47763062;5.4398804;10.21492 +19930;3;-0.1706543;0.07241821;-0.08673096 +19930;12;0.2086065;0.0557092;0.20492937;0.95466423 +19932;1;-0.20711733;4.1287236;8.896451 +19932;2;0.15579191;-1.5710301;-1.1251202; +19932;0;-0.5349426;5.3068542;10.2816925 +19932;3;-0.21279907;0.07180786;-0.089782715 +19933;0;-0.5301666;5.1690826;10.400925 +19934;12;0.2082381;0.055861942;0.20478159;0.9547675 +19934;3;-0.2531128;0.06814575;-0.089782715 +19937;0;-0.5922699;5.017044;10.472473 +19937;1;-0.21223706;4.118952;8.90086 +19937;3;-0.2922058;0.061416626;-0.09283447 +19938;4;12.342834;0.7598877;-64.64691 +19938;6;-0.29215804;-0.44614172;0.05649474 +19938;7;0.94907945;-0.2598277;0.17815067;0.0;0.31089133;0.8638908;-0.39628145;0.0;-0.050937846 +19940;12;0.2076591;0.05597284;0.20463614;0.9549182 +19940;0;-0.6113739;4.869766;10.544006 +19940;3;-0.32641602;0.05104065;-0.09710693 +19941;1;-0.21694386;4.105564;8.906929 +19942;0;-0.6495819;4.693985;10.610779 +19947;3;-0.36003113;0.041870117;-0.09954834 +19948;0;-0.6018219;4.5989685;10.658463 +19949;12;0.20689395;0.056014966;0.20448409;0.9551145 +19949;1;-0.22083604;4.0892043;8.914356 +19949;12;0.20597968;0.055975243;0.20431602;0.95535034 +19949;3;-0.3838501;0.029052734;-0.1038208 +19950;0;-0.57315063;4.437439;10.706177 +19950;3;-0.40400696;0.016220093;-0.10932922 +19950;4;11.442566;1.05896;-65.097046 +19950;6;-0.29584423;-0.39241603;0.053483523 +19950;7;0.9492283;-0.26938632;0.16247034;0.0;0.31068596;0.88384634;-0.34969947;0.0;-0.049394563 +19950;0;-0.5636139;4.290146;10.758636 +19950;3;-0.42111206;0.0027923584;-0.11482239 +19950;1;-0.2237473;4.0707817;8.922711 +19951;2;0.32036543;-0.5850892;-1.7024212; +19951;0;-0.5015106;4.176132;10.839706 +19951;3;-0.432724;-0.011260986;-0.12277222 +19952;0;-0.48239136;4.0478516;10.939865 +19953;3;-0.44065857;-0.022872925;-0.13009644 +19953;12;0.20496944;0.055853296;0.2041182;0.9556169 +19955;0;-0.47763062;3.952835;11.020935 +19955;1;-0.22572331;4.051021;8.931651 +19955;3;-0.44493103;-0.038146973;-0.138031 +19957;4;12.193298;0.45928955;-66.44745 +19957;6;-0.38436955;-0.34407613;0.043311384 +19957;7;0.9206889;-0.35299656;0.16650915;0.0;0.38816297;0.8726992;-0.29618517;0.0;-0.040760048 +19958;0;-0.49671936;3.8388062;11.025711 +19958;3;-0.44432068;-0.05340576;-0.14353943 +19959;12;0.20390256;0.055662025;0.2038762;0.95590794 +19960;0;-0.48239136;3.7580414;11.049545 +19960;1;-0.22674644;4.0306907;8.940818 +19960;3;-0.43943787;-0.07052612;-0.1502533 +19960;5;999.6047 +19962;0;-0.49671936;3.6297607;11.054321 +19962;12;0.20281953;0.055406526;0.20359033;0.95621413 +19963;3;-0.42782593;-0.08517456;-0.15513611 +19965;1;-0.22663191;4.0105977;8.949852 +19965;0;-0.5158386;3.5205078;11.040024 +19965;3;-0.40888977;-0.099227905;-0.15879822 +19967;4;11.29303;0.9094238;-66.14685 +19967;6;-0.37069574;-0.3083765;0.046690457 +19967;7;0.9259279;-0.3451751;0.1533349;0.0;0.3750729;0.8881072;-0.26567978;0.0;-0.04447179 +19967;0;-0.46328735;3.4207153;10.968475 +19967;3;-0.3850708;-0.11328125;-0.16552734 +19968;12;0.20176573;0.055086795;0.20326017;0.95652574 +19970;0;-0.44895935;3.3209534;10.935089 +19970;1;-0.22541338;3.9918962;8.95824 +19970;3;-0.35391235;-0.12672424;-0.17102051 +19970;2;0.22434843;0.3088789;-2.0483284; +19972;0;-0.42507935;3.2639465;10.958939 +19972;12;0.20080143;0.05472003;0.2028903;0.9568281 +19972;3;-0.3197174;-0.13954163;-0.17408752 +19974;0;-0.41073608;3.1831818;10.954163 +19974;1;-0.22318202;3.9756227;8.965529 +19975;3;-0.27876282;-0.14993286;-0.17895508 +19976;4;10.8428955;1.2084961;-64.497375 +19976;6;-0.4123164;-0.28261435;0.03747833 +19977;7;0.9113644;-0.38483545;0.14600216;0.0;0.41002458;0.8798492;-0.24030209;0.0;-0.035983127 +19977;0;-0.38208008;3.111908;10.930313 +19977;3;-0.23661804;-0.15603638;-0.18139648 +19978;12;0.19998066;0.054321025;0.20247011;0.9571117 +19979;0;-0.38685608;3.08815;10.892166 +19979;1;-0.22019401;3.9626343;8.971352 +19979;3;-0.19018555;-0.15786743;-0.1850586 +19981;0;-0.37728882;3.0691528;10.868317 +19982;12;0.19934763;0.053918906;0.20201886;0.9573618 +19982;3;-0.13948059;-0.15481567;-0.18566895 +19984;0;-0.36297607;3.0596466;10.801544 +19984;1;-0.2171169;3.9535794;8.975421 +19984;3;-0.08999634;-0.1481018;-0.18566895 +19986;4;11.743164;1.3595581;-63.89618 +19986;6;-0.4714928;-0.2758813;0.03359145 +19986;7;0.88623327;-0.43704072;0.15357727;0.0;0.4621107;0.8572026;-0.22728251;0.0;-0.032315128 +19986;0;-0.34864807;3.045395;10.720459 +19986;3;-0.037475586;-0.13587952;-0.18444824 +19987;12;0.1989276;0.053553384;0.20153916;0.9575708 +19988;0;-0.37252808;3.0073853;10.601242 +19989;1;-0.21466161;3.9489374;8.977524 +19989;2;0.13575727;0.85183907;-1.8670788; +19989;3;0.016281128;-0.12243652;-0.18444824 +19991;0;-0.35820007;3.0073853;10.553543 +19991;12;0.1987351;0.053272907;0.20105676;0.9577279 +19991;3;0.07003784;-0.106552124;-0.18444824 +19993;0;-0.35820007;3.0263977;10.405701 +19993;1;-0.2133805;3.948941;8.977552 +19994;3;0.1207428;-0.08578491;-0.18139648 +19996;4;11.29303;1.5090942;-65.69672 +19996;6;-0.4261322;-0.28287366;0.03440986 +19996;7;0.9060631;-0.39692423;0.1466314;0.0;0.42185095;0.8743827;-0.23978423;0.0;-0.033035796 +19997;0;-0.37252808;3.0358887;10.334152 +19998;3;0.16716003;-0.063186646;-0.17895508 +19998;12;0.19877952;0.05310745;0.20057122;0.9578296 +19998;0;-0.37728882;3.021637;10.21492 +19999;3;0.21298218;-0.038757324;-0.17651367 +19999;1;-0.21377005;3.9533565;8.975599 +19999;5;999.6102 +20000;0;-0.38685608;3.045395;10.095703 +20001;12;0.19903949;0.053083133;0.20010489;0.95787454 +20002;3;0.25146484;-0.014312744;-0.17163086 +20003;0;-0.41552734;3.0738983;9.938309 +20003;1;-0.21615344;3.96168;8.971871 +20004;3;0.28445435;0.009506226;-0.16673279 +20005;4;11.8927;1.5090942;-66.44745 +20005;6;-0.4058909;-0.2997186;0.04178633 +20005;7;0.9130791;-0.3772354;0.15485458;0.0;0.4058245;0.87779266;-0.25453165;0.0;-0.039911862 +20006;0;-0.45373535;3.0834198;9.80954 +20006;3;0.31132507;0.033325195;-0.16000366 +20006;12;0.19948614;0.05321358;0.19966304;0.9578666 +20008;0;-0.45373535;3.135666;9.680771 +20008;1;-0.22047882;3.972967;8.966774 +20008;3;0.3345337;0.050430298;-0.15267944 +20008;2;0.1441586;0.9286146;-1.1673069; +20010;0;-0.48718262;3.1404114;9.537689 +20010;12;0.20006917;0.05348473;0.1992593;0.957814 +20011;3;0.35287476;0.06324768;-0.14535522 +20013;0;-0.57315063;3.1879272;9.38031 +20013;1;-0.22617142;3.9863787;8.960678 +20013;3;0.3663025;0.069366455;-0.13742065 +20015;4;11.442566;1.9592285;-65.097046 +20015;6;-0.31390053;-0.32703957;0.06102559 +20015;7;0.9433165;-0.29240528;0.15701286;0.0;0.3268306;0.9007238;-0.28614396;0.0;-0.05775522 +20016;0;-0.5874939;3.2211914;9.304001 +20017;3;0.37242126;0.07119751;-0.13008118 +20017;12;0.20074944;0.053860903;0.19889398;0.9577265 +20018;1;-0.23230134;4.001145;8.953937 +20018;0;-0.62094116;3.235443;9.14183 +20018;3;0.37608337;0.06814575;-0.121536255 +20021;0;-0.6495819;3.235443;9.003525 +20021;3;0.37547302;0.05897522;-0.11419678 +20021;12;0.20149483;0.054281816;0.19856685;0.95761406 +20023;1;-0.23792362;4.0162635;8.947018 +20028;0;-0.69737244;3.3304443;8.84137 +20028;3;0.36935425;0.046157837;-0.109313965 +20028;4;12.342834;1.6586304;-64.64691 +20028;6;-0.28607473;-0.35922858;0.0787131 +20028;7;0.94858795;-0.2641761;0.17433305;0.0;0.3078347;0.8981215;-0.31403145;0.0;-0.07361264 +20028;0;-0.70692444;3.3399658;8.693527 +20028;3;0.36203003;0.030273438;-0.10380554 +20028;12;0.20226638;0.054688267;0.19827226;0.9574893 +20028;0;-0.6925812;3.358963;8.579071 +20028;1;-0.24230523;4.0311418;8.940207 +20028;3;0.3516388;0.011947632;-0.10014343 +20028;2;0.35345972;0.7859473;-0.12584019; +20030;12;0.20303585;0.055026695;0.19799237;0.95736486 +20032;17;1;38dead6d7725;8080;1069;-78; +20033;17;1;38dead6d60ff;9754;2401;-70; +20033;17;1;1c1bb5efa29a;2814;734;-63; +20034;17;1;1c1bb5ecd182;5709;1780;-64; +20034;1;-0.2449396;4.04531;8.933733 +20034;0;-0.65437317;3.3779755;8.455063 +20034;3;0.34187317;-0.00881958;-0.101989746 +20034;0;-0.62094116;3.3732147;8.435989 +20034;3;0.32965088;-0.028366089;-0.10380554 +20035;4;11.442566;1.6586304;-65.84625 +20035;6;-0.24620007;-0.37945524;0.0734737 +20035;7;0.96060187;-0.22638373;0.16122806;0.0;0.26943415;0.90085715;-0.34038472;0.0;-0.06818588 +20035;0;-0.59706116;3.3494568;8.373978 +20035;3;0.31376648;-0.046081543;-0.105041504 +20035;12;0.20378248;0.055264376;0.19770588;0.9572517 +20037;0;-0.5445099;3.3922272;8.33107 +20037;1;-0.2458936;4.058416;8.92776 +20038;3;0.3009491;-0.059524536;-0.109313965 +20038;5;999.6102 +20040;0;-0.5015106;3.3969727;8.269058 +20040;3;0.28811646;-0.07296753;-0.11114502 +20040;12;0.2044946;0.05539875;0.19740166;0.957155 +20041;0;-0.47763062;3.4064636;8.2118225 +20041;1;-0.24561258;4.0704265;8.922298 +20042;3;0.27589417;-0.082733154;-0.11602783 +20046;4;12.193298;2.2598267;-65.24658 +20046;6;-0.2981652;-0.39262298;0.058098324 +20046;7;0.94773775;-0.27141374;0.16771302;0.0;0.3145076;0.8831431;-0.34805626;0.0;-0.05364735 +20047;0;-0.4202881;3.4064636;8.14505 +20047;12;0.20516157;0.05545222;0.19707435;0.9570766 +20047;3;0.26489258;-0.09188843;-0.11968994 +20047;1;-0.24447441;4.0814476;8.917294 +20048;0;-0.39640808;3.4064636;8.08783 +20048;2;0.25194612;0.7046213;0.6222639; +20048;3;0.2557373;-0.10105896;-0.12397766 +20051;12;0.20578268;0.05544513;0.1967233;0.9570159 +20051;0;-0.36775208;3.335205;8.059219 +20051;3;0.24719238;-0.10777283;-0.12763977 +20053;0;-0.3104248;3.335205;8.011505 +20053;1;-0.24265862;4.091651;8.912666 +20053;3;0.2398529;-0.1138916;-0.13130188 +20056;4;11.743164;1.6586304;-66.29639 +20056;6;-0.3256368;-0.3942142;0.038728002 +20056;7;0.94197935;-0.2953745;0.15946421;0.0;0.33376187;0.8747768;-0.35123882;0.0;-0.035748575 +20056;0;-0.2960968;3.3114624;8.021057 +20056;3;0.2361908;-0.118774414;-0.13557434 +20056;12;0.20637013;0.05538651;0.19634345;0.95697075 +20057;1;-0.24038264;4.101148;8.908362 +20058;0;-0.21966553;3.2829437;8.016281 +20061;3;0.23435974;-0.12121582;-0.14167786 +20061;0;-0.171875;3.2639465;7.992447 +20061;12;0.20692496;0.05529032;0.19594967;0.95693725 +20061;3;0.23191833;-0.123062134;-0.14411926 +20062;1;-0.23790053;4.1103873;8.904169 +20062;0;-0.143219;3.268692;7.98291 +20062;3;0.23252869;-0.12121582;-0.14535522 +20065;4;11.593628;1.5090942;-65.69672 +20065;6;-0.37619692;-0.38857946;0.017938776 +20065;7;0.9274221;-0.3399967;0.15585406;0.0;0.37364775;0.86073023;-0.34573215;0.0;-0.016600516 +20065;12;0.20746993;0.05517745;0.19553313;0.95691097 +20066;0;-0.100234985;3.2544403;8.001968 +20066;3;0.2349701;-0.119384766;-0.14962769 +20066;1;-0.23547582;4.1195874;8.899981 +20066;0;-0.057235718;3.2211914;8.001968 +20066;3;0.2374115;-0.115112305;-0.15206909 +20067;2;-0.057323337;0.8481498;0.8823261; +20072;12;0.20801142;0.055063386;0.19510853;0.95688665 +20072;0;7.6293945E-5;3.202179;8.021057 +20072;3;0.24230957;-0.10961914;-0.15574646 +20072;1;-0.23335166;4.1289735;8.895686 +20072;0;0.066970825;3.2069397;8.016281 +20072;3;0.24778748;-0.10044861;-0.15696716 +20073;4;11.8927;1.2084961;-65.24658 +20073;6;-0.45661464;-0.3805403;-0.008354156 +20073;7;0.8988871;-0.40937108;0.15626062;0.0;0.43811172;0.83334327;-0.33704185;0.0;0.007756444 +20073;0;0.10997009;3.178421;8.021057 +20074;3;0.2532959;-0.08944702;-0.15878296 +20077;12;0.20856199;0.054963868;0.19467252;0.9568614 +20077;1;-0.23188987;4.1387615;8.891175 +20077;0;0.1720581;3.16893;7.992447 +20077;3;0.26123047;-0.07662964;-0.16184998 +20077;5;999.6102 +20078;0;0.23893738;3.1926727;8.001968 +20078;12;0.20912904;0.054902498;0.19423845;0.9568293 +20078;3;0.2691803;-0.063186646;-0.16490173 +20080;0;0.26283264;3.1831818;7.997223 +20080;1;-0.2314408;4.149173;8.8863325 +20080;3;0.27711487;-0.049743652;-0.16612244 +20082;4;11.593628;1.8096924;-66.14685 +20082;6;-0.48710617;-0.3786266;-0.032853663 +20082;7;0.8888975;-0.43491864;0.14389917;0.0;0.45708823;0.821102;-0.3418505;0.0;0.030521251 +20082;0;0.28193665;3.2116852;7.997223 +20083;12;0.20971864;0.054903083;0.19380347;0.9567884 +20083;3;0.28445435;-0.034484863;-0.16734314 +20085;0;0.3058319;3.2401886;8.044907 +20085;1;-0.23218495;4.1602607;8.881127 +20085;3;0.29055786;-0.017974854;-0.16978455 +20085;2;-0.44335276;0.97612286;0.8622112; +20087;12;0.2103332;0.05497338;0.19337335;0.9567365 +20088;0;0.3297119;3.2734528;8.044907 +20088;3;0.29544067;3.5095215E-4;-0.17041016 +20089;0;0.35836792;3.335205;8.078278 +20089;1;-0.23434547;4.1719246;8.875598 +20090;3;0.3009491;0.021102905;-0.17163086 +20091;4;11.8927;1.8096924;-65.24658 +20091;6;-0.5113608;-0.39119735;-0.044332854 +20091;7;0.879492;-0.45239455;0.14776006;0.0;0.4741469;0.8061966;-0.35388115;0.0;0.040970225 +20092;0;0.34403992;3.325714;8.078278 +20092;3;0.30278015;0.04248047;-0.17163086 +20094;0;0.38226318;3.4064636;8.059219 +20094;3;0.3021698;0.06324768;-0.17407227 +20095;1;-0.23823988;4.1840124;8.869802 +20095;12;0.2109637;0.055124998;0.19294874;0.9566747 +20096;0;0.34403992;3.4207153;8.09259 +20097;12;0.21160041;0.055375017;0.19254227;0.9566015 +20097;3;0.2997284;0.08279419;-0.17466736 +20098;0;0.28671265;3.4397278;7.978134 +20099;1;-0.24401565;4.19613;8.863919 +20099;3;0.29299927;0.09806824;-0.17773438 +20101;4;11.8927;0.1586914;-65.24658 +20101;6;-0.50434166;-0.40682894;-0.035921846 +20101;7;0.8817953;-0.44379002;0.15964822;0.0;0.47047776;0.80403537;-0.36356303;0.0;0.032982823 +20101;0;0.30104065;3.4634857;8.001968 +20101;3;0.28567505;0.10723877;-0.17956543 +20102;12;0.21221878;0.055726014;0.19214925;0.9565232 +20103;0;0.37271118;3.5109863;8.078278 +20103;1;-0.2511018;4.2077913;8.8581915 +20104;2;-0.62397915;0.82549477;0.7987547; +20104;3;0.27345276;0.117630005;-0.18078613 +20106;0;0.4013672;3.5442505;8.106903 +20106;12;0.21279894;0.056134865;0.19176453;0.9564476 +20106;3;0.26185608;0.12922668;-0.17895508 +20108;0;0.38226318;3.606018;8.14505 +20108;1;-0.2590125;4.2185674;8.852837 +20108;3;0.24412537;0.13899231;-0.17773438 +20110;4;12.042236;0.7598877;-63.89618 +20110;6;-0.51933646;-0.41638058;-0.04689755 +20110;7;0.87660456;-0.45389935;0.15981185;0.0;0.4792976;0.793973;-0.37400615;0.0;0.042874847 +20111;0;0.36314392;3.6915283;8.178452 +20111;3;0.2227478;0.14816284;-0.17895508 +20111;12;0.21332477;0.05658366;0.19138883;0.95637923 +20113;0;0.32492065;3.70578;8.159363 +20114;1;-0.2678186;4.227999;8.848074 +20114;3;0.19831848;0.15609741;-0.18017578 +20114;5;999.6102 +20116;0;0.2962799;3.7010345;8.135513 +20117;12;0.21376553;0.057067126;0.19103168;0.9563235 +20117;3;0.17327881;0.16160583;-0.18078613 +20118;0;0.3058319;3.729538;8.164139 +20118;3;0.14944458;0.16404724;-0.18322754 +20118;1;-0.2773708;4.2354164;8.844231 +20120;4;12.042236;0.7598877;-64.34631 +20120;6;-0.48801696;-0.42824557;-0.037442893 +20120;7;0.88993424;-0.4265338;0.16151166;0.0;0.4548158;0.8035018;-0.3840929;0.0;0.03405368 +20120;0;0.28193665;3.7390442;8.183212 +20120;3;0.12501526;0.16282654;-0.18566895 +20121;12;0.21409035;0.057565674;0.19068372;0.9562904 +20122;0;0.27236938;3.7817993;8.202286 +20123;1;-0.28729355;4.2408195;8.841324 +20123;2;-0.65047485;0.56841516;0.6735687; +20123;3;0.099349976;0.16343689;-0.1862793 +20125;0;0.25328064;3.8340607;8.283371 +20125;12;0.21430449;0.05806022;0.19033289;0.95628244 +20125;3;0.07369995;0.16160583;-0.18995667 +20127;0;0.27236938;3.8340607;8.326294 +20127;1;-0.29719988;4.2440467;8.839449 +20128;3;0.048049927;0.16221619;-0.19239807 +20130;4;12.342834;0.7598877;-65.54718 +20130;6;-0.4785505;-0.43132865;-0.0327003 +20130;7;0.8934832;-0.41831693;0.16339745;0.0;0.4481135;0.8063632;-0.38596982;0.0;0.02970002 +20130;0;0.26760864;3.8530579;8.431213 +20130;3;0.020553589;0.16160583;-0.19177246 +20131;12;0.21439922;0.058526367;0.18998109;0.95630276 +20132;0;0.24372864;3.8340607;8.445526 +20133;3;-0.005706787;0.16221619;-0.19299316 +20133;1;-0.3071639;4.2449827;8.838658 +20138;12;0.21436995;0.058971874;0.18962821;0.956352 +20138;1;-0.31719458;4.243599;8.838968 +20148;12;0.21421705;0.059391167;0.189279;0.9564295 +20148;0;0.20072937;3.8197937;8.459839 +20148;3;-0.032577515;0.15977478;-0.19421387 +20148;0;0.19117737;3.8483124;8.540909 +20148;3;-0.057022095;0.15731812;-0.19544983 +20148;4;12.942505;1.2084961;-66.14685 +20148;6;-0.4734829;-0.42323747;-0.02237999 +20148;7;0.8939536;-0.41575417;0.16731805;0.0;0.44769472;0.8114568;-0.3756425;0.0;0.020403568 +20148;0;0.24848938;3.8673248;8.602905 +20148;3;-0.081451416;0.15731812;-0.19299316 +20148;0;0.23893738;3.862564;8.6792145 +20148;3;-0.104660034;0.15855408;-0.19055176 +20148;1;-0.32700285;4.2400513;8.840313 +20148;2;-0.6026574;0.4112072;0.36037827; +20148;12;0.21394728;0.05977777;0.18893386;0.956534 +20148;1;-0.33687145;4.2344007;8.842651 +20148;0;0.21984863;3.8815765;8.81752 +20148;3;-0.12727356;0.16099548;-0.18688965 +20148;0;0.1577301;3.8293152;8.922455 +20148;3;-0.15109253;0.16282654;-0.1862793 +20149;4;12.042236;0.009155273;-67.04712 +20149;6;-0.465032;-0.40534696;-0.01767604 +20149;7;0.89679337;-0.4121115;0.16101548;0.0;0.4421516;0.82137823;-0.36033323;0.0;0.016242828 +20149;0;0.114746094;3.7913055;8.955841 +20149;3;-0.17552185;0.16526794;-0.1850586 +20150;12;0.21356042;0.06014948;0.18860526;0.956662 +20151;0;0.10041809;3.729538;9.027374 +20151;1;-0.34695685;4.2265773;8.846004 +20152;3;-0.20057678;0.167099;-0.18322754 +20153;5;999.5934 +20154;0;0.014419556;3.7105408;9.056 +20154;12;0.21305461;0.060511727;0.18829454;0.95681304 +20154;3;-0.22195435;0.16404724;-0.18322754 +20156;0;-0.042907715;3.6345215;9.132294 +20157;1;-0.3572083;4.216573;8.8503685 +20157;3;-0.24272156;0.15731812;-0.18139648 +20158;4;11.593628;0.45928955;-66.89758 +20158;6;-0.4210891;-0.37876487;0.004698425 +20158;7;0.911924;-0.37978294;0.15543279;0.0;0.41033572;0.8479579;-0.33554712;0.0;-0.0043653944 +20159;0;-0.052444458;3.6202698;9.184769 +20159;3;-0.26287842;0.14694214;-0.17956543 +20159;12;0.21242929;0.06085932;0.18799582;0.9569889 +20161;0;-0.10499573;3.5774994;9.270599 +20161;1;-0.3669036;4.2046666;8.855635 +20161;2;-0.454879;0.49939775;-0.1997118; +20161;3;-0.28671265;0.1341095;-0.17895508 +20165;12;0.21170607;0.06115749;0.18770188;0.9571878 +20165;0;-0.10978699;3.5014954;9.361221 +20165;3;-0.30685425;0.11885071;-0.17651367 +20166;1;-0.3754933;4.190672;8.861906 +20166;0;-0.13366699;3.4539795;9.513855 +20166;3;-0.32946777;0.101119995;-0.17344666 +20169;4;11.29303;0.9094238;-65.24658 +20169;6;-0.42100716;-0.348219;0.014048794 +20169;7;0.9106287;-0.3841517;0.15225932;0.0;0.41301462;0.8579007;-0.30565578;0.0;-0.01320518 +20169;0;-0.143219;3.4302368;9.590164 +20169;3;-0.3551178;0.088912964;-0.1691742 +20169;12;0.21088377;0.06137317;0.18739992;0.9574146 +20173;1;-0.3826575;4.1746025;8.869181 +20173;0;-0.19099426;3.3922272;9.680771 +20173;3;-0.37771606;0.073028564;-0.16184998 +20173;12;0.2099644;0.061498478;0.1871098;0.95766526 +20173;0;-0.26264954;3.358963;9.723679 +20174;3;-0.39849854;0.05836487;-0.15330505 +20176;0;-0.3295288;3.278183;9.828613 +20177;1;-0.38845086;4.1564555;8.877448 +20177;3;-0.41926575;0.03881836;-0.14901733 +20178;4;12.643433;0.9094238;-64.94751 +20178;6;-0.4523578;-0.3217632;0.033514943 +20178;7;0.89428216;-0.41465577;0.16828512;0.0;0.4463729;0.8532602;-0.26962608;0.0;-0.031788982 +20179;0;-0.32476807;3.2306824;9.828613 +20179;3;-0.4382019;0.020492554;-0.14289856 +20180;12;0.20894524;0.06153322;0.18684186;0.9579383 +20181;0;-0.34864807;3.1641693;9.900162 +20181;1;-0.3925148;4.136438;8.886615 +20181;3;-0.45347595;3.5095215E-4;-0.13496399 +20183;2;-0.19961452;0.8042979;-0.8024368; +20183;12;0.20784414;0.061460067;0.18658835;0.9582319 +20183;0;-0.32476807;3.1641693;9.995529 +20183;3;-0.46629333;-0.01737976;-0.13008118 +20185;1;-0.3946532;4.1150117;8.896462 +20185;0;-0.3295288;3.1261597;10.043243 +20186;3;-0.47546387;-0.034484863;-0.12213135 +20188;4;13.243103;1.5090942;-66.14685 +20188;6;-0.48093444;-0.30161119;0.03279923 +20188;7;0.88157964;-0.44172528;0.16642131;0.0;0.47099552;0.8465428;-0.24804948;0.0;-0.03131303 +20188;0;-0.3343048;3.1214142;10.138611 +20188;3;-0.48461914;-0.050354004;-0.11602783 +20189;12;0.20668699;0.061276972;0.18635027;0.9585402 +20190;0;-0.34864807;3.0738983;10.176773 +20190;1;-0.39508036;4.092657;8.906749 +20191;3;-0.4882965;-0.0650177;-0.10687256 +20192;5;999.5934 +20193;0;-0.37252808;3.0406494;10.200623 +20193;12;0.20549595;0.061001282;0.18612961;0.9588567 +20193;3;-0.48706055;-0.07785034;-0.09831238 +20195;1;-0.3939672;4.069767;8.917281 +20196;0;-0.37728882;2.9931488;10.253082 +20196;3;-0.48217773;-0.094955444;-0.089157104 +20200;4;13.392639;0.30975342;-65.54718 +20200;6;-0.5288053;-0.28385183;0.036781006 +20200;7;0.85763085;-0.48431396;0.17294295;0.0;0.51305276;0.82886004;-0.2230873;0.0;-0.03530121 +20200;0;-0.36775208;2.9693756;10.248322 +20200;3;-0.4736328;-0.10961914;-0.08181763 +20200;12;0.2042913;0.060645163;0.18593198;0.95917493 +20200;1;-0.39116973;4.0473895;8.927583 +20200;0;-0.3390808;2.955124;10.310318 +20200;2;-0.07958451;1.0144677;-1.2552242; +20201;3;-0.46202087;-0.12184143;-0.072052 +20202;0;-0.2960968;2.9598846;10.2912445 +20203;12;0.20313211;0.06021274;0.18575883;0.9594819 +20203;3;-0.44491577;-0.13465881;-0.06349182 +20204;1;-0.38684592;4.026099;8.937393 +20204;0;-0.3104248;2.9836273;10.3198395 +20204;3;-0.42536926;-0.14320374;-0.054336548 +20207;4;12.193298;1.8096924;-65.69672 +20207;6;-0.47067496;-0.28132084;0.030071324 +20207;7;0.88707405;-0.4356611;0.15264;0.0;0.46072245;0.8562264;-0.23368977;0.0;-0.02888485 +20208;0;-0.24354553;2.9646301;10.353241 +20208;3;-0.40093994;-0.14932251;-0.04333496 +20209;12;0.20204537;0.05972045;0.18560816;0.9597712 +20210;0;-0.19577026;2.978897;10.310318 +20210;3;-0.3746643;-0.15176392;-0.03173828 +20210;1;-0.38127413;4.0065684;8.946404 +20212;0;-0.18144226;3.0026398;10.2864685 +20212;12;0.20106563;0.05919145;0.18548954;0.96003264 +20213;3;-0.34474182;-0.15054321;-0.021957397 +20214;0;-0.16711426;3.0549011;10.229233 +20214;1;-0.37501338;3.9894657;8.9543085 +20215;3;-0.31236267;-0.14749146;-0.012802124 +20222;4;11.593628;1.8096924;-66.14685 +20222;6;-0.4696453;-0.29017588;0.016335476 +20222;7;0.8894946;-0.43364963;0.14403856;0.0;0.45667726;0.8544488;-0.24771547;0.0;-0.015651852 +20222;0;-0.143219;3.0596466;10.1577 +20222;12;0.20022114;0.058664132;0.1854115;0.9602566 +20222;3;-0.27998352;-0.14260864;-0.004257202 +20222;1;-0.36861902;3.9752204;8.960907 +20222;0;-0.12890625;3.08815;10.110016 +20222;2;-0.19845092;0.9896474;-1.309578; +20222;3;-0.24272156;-0.13282776;0.0024719238 +20222;0;-0.10978699;3.135666;10.019394 +20222;12;0.19952941;0.058169827;0.18536966;0.9604387 +20222;3;-0.20484924;-0.12243652;0.0128479 +20225;0;-0.11456299;3.202179;9.947845 +20225;1;-0.36263785;3.9642758;8.965998 +20225;3;-0.16697693;-0.10899353;0.019577026 +20226;4;12.643433;2.2598267;-64.94751 +20226;6;-0.49386823;-0.3114032;0.011515853 +20226;7;0.8787749;-0.4512365;0.15537184;0.0;0.47711068;0.8381575;-0.26430556;0.0;-0.0109617505 +20226;0;-0.13366699;3.268692;9.842926 +20227;3;-0.13031006;-0.094955444;0.028121948 +20228;12;0.1990099;0.057742838;0.18536183;0.9605738 +20228;1;-0.35745528;3.956791;8.969512 +20231;0;-0.08590698;3.2971954;9.75708 +20231;3;-0.093673706;-0.07846069;0.03729248 +20232;5;999.5934 +20232;0;-0.11456299;3.358963;9.652161 +20232;12;0.19866417;0.057401646;0.1853939;0.96065956 +20233;3;-0.060684204;-0.062576294;0.045837402 +20235;1;-0.35329485;3.9526072;8.97152 +20235;0;-0.10499573;3.4207153;9.561539 +20235;3;-0.033813477;-0.046691895;0.050735474 +20236;4;11.442566;3.0090332;-65.097046 +20236;6;-0.40822875;-0.34355015;0.010980609 +20236;7;0.9163019;-0.37378648;0.14378701;0.0;0.40035504;0.86419225;-0.3047752;0.0;-0.010338747 +20237;0;-0.12890625;3.4824982;9.456619 +20237;3;-0.0063323975;-0.03263855;0.058059692 +20238;12;0.19848308;0.05716002;0.1854712;0.96069646 +20239;17;1;38dead6d7725;8928;900;-74; +20241;17;1;38dead6d60ff;6879;3055;-72; +20241;17;1;1c1bb5efa29a;1213;1255;-62; +20241;17;1;1c1bb5ecd182;4221;795;-61; +20242;0;-0.157547;3.5585022;9.365997 +20242;3;0.012619019;-0.019821167;0.06355286 +20242;2;-0.27025452;0.6386118;-0.74216366; +20242;1;-0.35026878;3.951134;8.972288 +20242;0;-0.21009827;3.606018;9.251541 +20242;3;0.028503418;-0.00881958;0.071502686 +20242;12;0.19843324;0.057016;0.18558356;0.96069366 +20242;0;-0.21009827;3.682022;9.108459 +20243;1;-0.34818113;3.9516733;8.972133 +20243;3;0.041931152;-0.0014953613;0.07821655 +20245;4;11.143494;1.9592285;-65.54718 +20245;6;-0.34893414;-0.38406554;0.02306219 +20245;7;0.93653363;-0.3169889;0.14974257;0.0;0.34992525;0.87127686;-0.34413522;0.0;-0.02138019 +20245;0;-0.21966553;3.7580414;9.027374 +20245;3;0.04988098;0.0046081543;0.08432007 +20246;12;0.19848168;0.056946497;0.18572684;0.9606601 +20247;0;-0.26264954;3.8103027;8.922455 +20247;1;-0.34656516;3.953584;8.971353 +20248;3;0.05293274;0.0070648193;0.08982849 +20249;0;-0.26264954;3.8673248;8.831833 +20250;12;0.19859447;0.056925397;0.1859096;0.96060264 +20250;3;0.054153442;0.005844116;0.0947113 +20252;0;-0.3056488;3.933838;8.741211 +20252;1;-0.3450178;3.9560702;8.970317 +20252;3;0.051101685;0.0040130615;0.09654236 +20259;4;11.143494;1.6586304;-64.34631 +20259;6;-0.30685824;-0.42265323;0.034952175 +20259;7;0.9483753;-0.27548456;0.15713856;0.0;0.3155449;0.8694017;-0.38022643;0.0;-0.03187003 +20259;0;-0.2817688;4.0336;8.674438 +20259;12;0.19873723;0.056918945;0.18611805;0.9605331 +20259;3;0.04437256;-2.746582E-4;0.09776306 +20259;0;-0.3104248;4.085861;8.583832 +20259;1;-0.3432022;3.9585826;8.969278 +20259;2;-0.124145836;0.13962078;0.06258583; +20259;3;0.03643799;-0.0039367676;0.09837341 +20259;0;-0.3152008;4.1713715;8.517059 +20260;12;0.19888254;0.056901425;0.18633562;0.960462 +20261;3;0.028503418;-0.009429932;0.09837341 +20262;0;-0.3343048;4.2426453;8.497986 +20262;1;-0.34102786;3.9606884;8.968431 +20262;3;0.018112183;-0.015533447;0.09715271 +20264;4;12.342834;2.708435;-66.29639 +20264;6;-0.29326728;-0.4627409;0.039319023 +20264;7;0.95149195;-0.2586795;0.16657756;0.0;0.3056565;0.856627;-0.41564932;0.0;-0.035174865 +20264;0;-0.37728882;4.275894;8.407364 +20265;3;0.007736206;-0.021652222;0.09593201 +20265;12;0.19900765;0.056861646;0.18655257;0.9603963 +20266;0;-0.42507935;4.323395;8.335815 +20267;1;-0.33850715;3.962125;8.967892 +20267;3;-0.0032653809;-0.030807495;0.0934906 +20268;5;999.5934 +20269;0;-0.41552734;4.375656;8.249985 +20269;12;0.19910173;0.05679445;0.18676132;0.9603401 +20269;3;-0.013641357;-0.038757324;0.08982849 +20271;0;-0.42507935;4.3851776;8.202286 +20271;1;-0.33542123;3.962816;8.967703 +20272;3;-0.024642944;-0.04852295;0.08187866 +20274;4;12.193298;2.558899;-65.24658 +20274;6;-0.25878078;-0.49040788;0.05177818 +20274;7;0.95916927;-0.22574167;0.17039646;0.0;0.27912337;0.8527678;-0.44144875;0.0;-0.045655236 +20274;0;-0.44418335;4.4279175;8.197525 +20275;3;-0.03135681;-0.05647278;0.07699585 +20275;12;0.1991595;0.056685545;0.18695353;0.96029717 +20277;0;-0.41552734;4.465927;8.178452 +20277;1;-0.33182535;3.9627485;8.967866 +20277;2;0.023715675;-0.34421253;0.63127613; +20277;3;-0.041137695;-0.06135559;0.06906128 +20278;0;-0.44418335;4.494446;8.240448 +20279;12;0.19918284;0.056533594;0.18711172;0.9602705 +20279;3;-0.048461914;-0.062576294;0.06355286 +20281;1;-0.32812414;3.9619598;8.96835 +20281;0;-0.48718262;4.4991913;8.245209 +20281;3;-0.052734375;-0.062576294;0.05683899 +20283;4;13.093567;1.6586304;-66.596985 +20283;6;-0.26546133;-0.49878302;0.059018135 +20283;7;0.95588905;-0.23039061;0.1821984;0.0;0.28912473;0.8474046;-0.44532272;0.0;-0.051797602 +20283;0;-0.46328735;4.513443;8.14505 +20284;3;-0.056411743;-0.062576294;0.051956177 +20284;12;0.19917144;0.056362405;0.18723617;0.9602586 +20286;0;-0.48718262;4.537201;8.125992 +20286;1;-0.3246479;3.9608345;8.968975 +20286;3;-0.060684204;-0.060134888;0.047058105 +20288;0;-0.5301666;4.5657043;8.121216 +20289;12;0.19914094;0.056195065;0.18733396;0.9602557 +20289;3;-0.060684204;-0.058303833;0.039733887 +20291;0;-0.5636139;4.546707;8.173676 +20291;1;-0.32163122;3.9594572;8.969691 +20291;3;-0.061904907;-0.05708313;0.03300476 +20293;4;12.342834;3.0090332;-65.097046 +20293;6;-0.22297958;-0.50663143;0.06884579 +20293;7;0.96555114;-0.19335815;0.1741372;0.0;0.25316614;0.85273683;-0.45688832;0.0;-0.060150113 +20293;0;-0.5397186;4.537201;8.14505 +20293;3;-0.061904907;-0.051574707;0.0287323 +20294;12;0.19909106;0.056040738;0.18740824;0.96026057 +20295;0;-0.55882263;4.522949;8.149826 +20296;1;-0.31906995;3.957979;8.970435 +20296;2;0.15242904;-0.54484653;0.7899494; +20296;3;-0.06251526;-0.046691895;0.024459839 +20298;0;-0.59706116;4.5419617;8.173676 +20298;12;0.19903351;0.05590499;0.18745577;0.9602711 +20299;3;-0.061294556;-0.039367676;0.02079773 +20300;0;-0.59706116;4.5419617;8.178452 +20300;3;-0.06251526;-0.030807495;0.018356323 +20300;1;-0.3172199;3.956483;8.971161 +20302;4;11.29303;1.2084961;-65.24658 +20302;6;-0.19492762;-0.50581956;0.0728749 +20303;7;0.97162443;-0.1694405;0.16503263;0.0;0.2277917;0.85821074;-0.45998374;0.0;-0.06369292 +20303;0;-0.6161499;4.537201;8.235672 +20303;3;-0.06251526;-0.02104187;0.017745972 +20303;12;0.19896854;0.05580039;0.18748674;0.9602846 +20305;0;-0.64004517;4.546707;8.226135 +20305;1;-0.31622416;3.9549043;8.971892 +20305;3;-0.06251526;-0.00881958;0.0140686035 +20307;5;999.5867 +20307;0;-0.60661316;4.5086975;8.240448 +20308;12;0.19889116;0.05573783;0.18751805;0.9602982 +20308;3;-0.06251526;0.0015716553;0.011016846 +20310;0;-0.60661316;4.4897003;8.2642975 +20310;1;-0.31626964;3.9532743;8.972609 +20310;3;-0.064956665;0.014389038;0.010406494 +20314;4;12.193298;2.859497;-64.497375 +20314;6;-0.21799846;-0.4965312;0.07327026 +20315;7;0.9661705;-0.19015846;0.17422488;0.0;0.24974337;0.8584306;-0.44802338;0.0;-0.06436454 +20318;0;-0.6161499;4.4754486;8.2642975 +20318;3;-0.06434631;0.02720642;0.008575439 +20318;12;0.19880038;0.055728156;0.18754736;0.96031183 +20318;1;-0.31742606;3.9515176;8.973342 +20318;0;-0.60661316;4.503952;8.302444 +20318;3;-0.064956665;0.03881836;0.0073547363 +20318;2;0.25657573;-0.54457784;0.7265234; +20318;0;-0.6257019;4.44693;8.33107 +20318;12;0.19869125;0.055774815;0.18758163;0.960325 +20319;3;-0.06556702;0.050430298;0.006134033 +20320;0;-0.6257019;4.4184265;8.38829 +20320;1;-0.31967285;3.9496212;8.974096 +20320;3;-0.06617737;0.061416626;0.0055236816 +20325;4;11.442566;1.6586304;-65.84625 +20325;6;-0.19837236;-0.483665;0.07445442 +20325;7;0.9708554;-0.1744688;0.16431758;0.0;0.2304408;0.8679346;-0.4399845;0.0;-0.06585336 +20325;0;-0.6113739;4.4184265;8.397842 +20327;3;-0.06739807;0.07241821;0.00491333 +20327;12;0.198564;0.055875357;0.18761832;0.96033835 +20328;1;-0.3228859;3.9475765;8.974881 +20328;0;-0.62094116;4.366165;8.44075 +20328;3;-0.06983948;0.08279419;0.007965088 +20328;12;0.19841824;0.056026433;0.18766545;0.96035045 +20329;0;-0.6161499;4.389923;8.49321 +20329;3;-0.068618774;0.09196472;0.0067443848 +20330;0;-0.5874939;4.3994293;8.512299 +20330;3;-0.068618774;0.09989929;0.007965088 +20330;1;-0.326906;3.9453862;8.975699 +20333;4;10.8428955;1.8096924;-66.44745 +20333;6;-0.19072829;-0.476054;0.0689078 +20333;7;0.9735545;-0.16849534;0.15427569;0.0;0.22010574;0.87269294;-0.43584472;0.0;-0.061197497 +20333;0;-0.5540619;4.3614197;8.517059 +20333;3;-0.06739807;0.10784912;0.008575439 +20334;12;0.1982575;0.056218456;0.18772838;0.9603601 +20335;1;-0.33157524;3.9431555;8.976508 +20335;0;-0.55882263;4.3186646;8.54567 +20335;2;0.23261815;-0.42629647;0.51281357; +20335;3;-0.06800842;0.11395264;0.011016846 +20338;0;-0.5397186;4.3043976;8.593384 +20338;12;0.1980856;0.056446783;0.18780215;0.96036774 +20339;3;-0.06739807;0.121292114;0.012237549 +20339;1;-0.3366789;3.9409158;8.977302 +20339;0;-0.5397186;4.3376617;8.626755 +20339;3;-0.06434631;0.12617493;0.0140686035 +20342;4;11.593628;2.558899;-65.24658 +20342;6;-0.23138916;-0.46511355;0.062481906 +20342;7;0.9650267;-0.20496829;0.16343641;0.0;0.25614235;0.8699504;-0.421399;0.0;-0.05580816 +20342;0;-0.5253906;4.299652;8.65538 +20343;3;-0.060684204;0.1328888;0.017745972 +20343;12;0.19791023;0.056699697;0.18788606;0.96037257 +20345;0;-0.5110626;4.299652;8.698288 +20345;3;-0.058242798;0.13839722;0.020187378 +20346;1;-0.34223682;3.938813;8.978014 +20346;5;999.5867 +20347;12;0.19773667;0.056980144;0.18799028;0.96037143 +20347;0;-0.47283936;4.299652;8.731674 +20347;3;-0.05458069;0.14694214;0.022628784 +20351;1;-0.34814078;3.9369514;8.978603 +20353;17;1;38dead6d7725;8440;1922;-68; +20354;17;1;38dead6d60ff;9323;1672;-69; +20355;17;1;1c1bb5efa29a;3841;812;-59; +20355;17;1;1c1bb5ecd182;2405;1302;-61; +20355;12;0.19757093;0.057286263;0.18811236;0.9603633 +20356;0;-0.46328735;4.280655;8.755524 +20356;3;-0.05029297;0.15428162;0.026290894 +20357;4;12.042236;2.4093628;-65.54718 +20357;6;-0.26814193;-0.45418414;0.052864425 +20357;7;0.9567758;-0.23808037;0.1670262;0.0;0.286924;0.8665069;-0.40846086;0.0;-0.047482863 +20357;0;-0.46328735;4.266403;8.7603 +20357;3;-0.047851562;0.16038513;0.029342651 +20357;0;-0.45851135;4.2711487;8.78891 +20357;2;0.10694885;-0.34020305;0.267807; +20357;1;-0.3545353;3.9353793;8.979043 +20357;3;-0.0423584;0.16648865;0.033615112 +20357;12;0.19741608;0.057625096;0.18825541;0.9603469 +20357;0;-0.44895935;4.290146;8.798447 +20357;3;-0.036849976;0.17138672;0.037902832 +20359;0;-0.48239136;4.252136;8.803207 +20359;3;-0.033187866;0.17626953;0.042175293 +20360;1;-0.36127564;3.9342177;8.979283 +20361;4;12.342834;2.4093628;-67.49725 +20361;6;-0.26550478;-0.44938573;0.054742478 +20361;7;0.9572778;-0.23634413;0.16661541;0.0;0.28493938;0.8691532;-0.4042056;0.0;-0.0492827 +20361;0;-0.43940735;4.223633;8.793686 +20361;3;-0.028915405;0.18115234;0.04522705 +20362;12;0.19727635;0.057990137;0.18841839;0.9603217 +20363;0;-0.47283936;4.2046356;8.827072 +20363;3;-0.024032593;0.18664551;0.050109863 +20363;1;-0.36826482;3.9333704;8.979371 +20366;0;-0.44418335;4.2473907;8.884293 +20366;12;0.19715062;0.058377013;0.18860584;0.9602873 +20367;3;-0.01852417;0.19152832;0.055618286 +20372;0;-0.42507935;4.2378845;8.922455 +20372;1;-0.375482;3.9329429;8.979259 +20372;3;-0.016708374;0.19581604;0.0617218 +20372;4;12.193298;2.859497;-64.19678 +20372;6;-0.29233643;-0.44298342;0.04760553 +20372;7;0.95060986;-0.26037326;0.16895758;0.0;0.30739614;0.86514515;-0.39627182;0.0;-0.04299425 +20372;0;-0.4298401;4.199875;8.884293 +20372;3;-0.014862061;0.1976471;0.06538391 +20372;12;0.19704269;0.05878476;0.18881851;0.96024275 +20373;0;-0.41073608;4.190384;8.912918 +20375;2;0.026527941;-0.27955818;0.11606598; +20375;3;-0.014266968;0.1988678;0.070877075 +20375;0;-0.4298401;4.2188873;8.903381 +20375;12;0.19694458;0.059206344;0.18905881;0.9601897 +20375;1;-0.38279822;3.9327233;8.979046 +20375;3;-0.012435913;0.1988678;0.07394409 +20377;0;-0.37728882;4.209381;8.955841 +20377;1;-0.3900041;3.9326324;8.978775 +20378;3;-0.008148193;0.19825745;0.07821655 +20379;4;12.792969;3.3096313;-66.29639 +20379;6;-0.30824658;-0.4390321;0.042102788 +20379;7;0.94659466;-0.27461606;0.16895154;0.0;0.3201673;0.8625005;-0.3919004;0.0;-0.03809865 +20380;0;-0.38685608;4.209381;8.984451 +20380;3;-0.0075531006;0.19581604;0.08126831 +20380;12;0.19685167;0.059625775;0.18931857;0.96013165 +20381;0;-0.36775208;4.176132;8.974915 +20382;1;-0.39694533;3.9327452;8.978422 +20382;3;-0.0063323975;0.19398499;0.08494568 +20383;5;999.5867 +20384;0;-0.40119934;4.1618805;9.017838 +20385;12;0.19676998;0.060039494;0.18959591;0.96006787 +20385;3;-0.0051116943;0.19215393;0.08554077 +20386;0;-0.37728882;4.1713715;9.036911 +20387;1;-0.4036168;3.9329052;8.978054 +20387;3;-0.005706787;0.18908691;0.08798218 +20390;4;13.093567;2.4093628;-66.29639 +20390;6;-0.3296175;-0.4321212;0.041725524 +20390;7;0.93968815;-0.29392818;0.17490682;0.0;0.33992842;0.85919404;-0.38240573;0.0;-0.037879094 +20391;0;-0.3390808;4.142868;9.051224 +20391;3;-0.0032653809;0.18359375;0.091049194 +20395;12;0.19669414;0.06043971;0.18988423;0.96000135 +20396;0;-0.3534088;4.1523743;9.0607605 +20396;1;-0.40984982;3.9330945;8.977689 +20397;2;-0.06550181;-0.22924376;-0.030017853; +20397;3;-0.0026550293;0.17993164;0.09286499 +20397;0;-0.3295288;4.100113;9.08461 +20397;12;0.1966224;0.06082085;0.19017936;0.95993346 +20397;3;-0.0026550293;0.17626953;0.0934906 +20397;0;-0.3343048;4.123871;9.079834 +20398;1;-0.415631;3.9333186;8.977325 +20398;3;-0.0014343262;0.17198181;0.09654236 +20398;4;12.342834;3.0090332;-64.64691 +20398;6;-0.32417732;-0.4260689;0.03680176 +20398;7;0.9424275;-0.29005176;0.16643412;0.0;0.33272788;0.8631673;-0.37978205;0.0;-0.033504028 +20399;0;-0.3056488;4.0811005;9.08461 +20399;3;0.0016174316;0.1658783;0.09776306 +20399;12;0.19655804;0.0611793;0.19047591;0.95986515 +20401;0;-0.2960968;4.0668488;9.108459 +20401;1;-0.420893;3.9336207;8.976948 +20401;3;0.0034484863;0.15855408;0.09837341 +20403;0;-0.2817688;4.095352;9.11322 +20403;12;0.19650288;0.061513804;0.19078067;0.9597945 +20404;3;0.0058898926;0.15184021;0.10142517 +20405;0;-0.30085754;4.0621033;9.170456 +20406;1;-0.4255216;3.934113;8.976514 +20406;3;0.008331299;0.14694214;0.10205078 +20408;4;12.942505;2.2598267;-65.24658 +20408;6;-0.360522;-0.41678113;0.0327955 +20408;7;0.9305271;-0.32256508;0.17341001;0.0;0.36499357;0.85561275;-0.36702386;0.0;-0.029982723 +20408;0;-0.23876953;4.043091;9.175232 +20408;3;0.01322937;0.14143372;0.10449219 +20409;12;0.19646154;0.061817124;0.19108692;0.9597226 +20410;0;-0.24354553;3.9908295;9.160919 +20410;1;-0.42950866;3.9347906;8.976027 +20411;2;-0.17314777;-0.11784291;-0.15571022; +20411;3;0.018112183;0.1365509;0.10508728 +20413;0;-0.19577026;3.9718475;9.170456 +20413;3;0.022384644;0.12861633;0.10752869 +20413;12;0.19643663;0.062089954;0.19139373;0.9596489 +20415;0;-0.19099426;3.9860992;9.16568 +20416;1;-0.43286932;3.93584;8.975405 +20416;3;0.02909851;0.12432861;0.109375 +20418;4;12.643433;1.5090942;-65.24658 +20418;6;-0.3892997;-0.41014165;0.020834966 +20418;7;0.92182136;-0.3480631;0.17057945;0.0;0.3871437;0.848445;-0.36091635;0.0;-0.01910562 +20418;0;-0.157547;3.9480896;9.179993 +20418;3;0.03338623;0.1194458;0.11364746 +20419;12;0.19643886;0.062335115;0.1916994;0.95957154 +20420;0;-0.12890625;3.9670868;9.199066 +20420;1;-0.43559864;3.9373388;8.974616 +20420;3;0.038879395;0.1164093;0.11608887 +20422;5;999.5867 +20422;0;-0.11933899;3.9670868;9.151382 +20422;12;0.19647248;0.06255513;0.192013;0.9594877 +20423;3;0.04927063;0.11151123;0.11975098 +20424;0;-0.08111572;3.9765778;9.151382 +20425;1;-0.437804;3.939437;8.973588 +20425;3;0.059036255;0.10845947;0.12281799 +20427;4;12.342834;1.6586304;-64.34631 +20427;6;-0.40835878;-0.40990305;0.008863535 +20427;7;0.91633505;-0.36420733;0.16638228;0.0;0.40032983;0.8417449;-0.36221752;0.0;-0.008129168 +20427;0;-0.06201172;3.9765778;9.13707 +20428;3;0.071258545;0.10601807;0.1252594 +20428;12;0.19654214;0.062756464;0.1923364;0.95939547 +20429;0;-0.08111572;3.9860992;9.098923 +20430;1;-0.43956125;3.9424791;8.972165 +20430;2;-0.34809968;-0.012058735;-0.19428921; +20430;3;0.07980347;0.104782104;0.12831116 +20432;0;-0.052444458;3.9908295;9.094147 +20432;12;0.19666605;0.06294909;0.1926675;0.9592909 +20433;3;0.09385681;0.10418701;0.13197327 +20434;0;-0.038131714;4.0050964;9.089371 +20435;1;-0.44104454;3.9464948;8.970327 +20435;3;0.1060791;0.10296631;0.13624573 +20437;4;13.392639;1.3595581;-66.29639 +20437;6;-0.43804318;-0.41503567;0.0041951737 +20437;7;0.90485793;-0.3881572;0.17483178;0.0;0.42569637;0.8287012;-0.363369;0.0;-0.0038390004 +20438;0;7.6293945E-5;4.009842;9.0607605 +20438;3;0.11645508;0.1035614;0.14051819 +20438;12;0.1968441;0.063139334;0.19300757;0.95917356 +20439;0;0.03352356;4.052597;9.017838 +20439;1;-0.442229;3.9516358;8.968005 +20440;3;0.12989807;0.1035614;0.14480591 +20441;0;0.062194824;4.0811005;9.03215 +20442;12;0.19708553;0.06333084;0.19336429;0.9590395 +20442;3;0.14089966;0.10662842;0.15029907 +20447;1;-0.44324636;3.9579422;8.965174 +20447;0;0.066970825;4.142868;8.955841 +20447;3;0.1512909;0.11212158;0.15640259 +20447;4;12.193298;2.558899;-65.24658 +20447;6;-0.40382388;-0.4332623;-0.0074777543 +20447;7;0.9207731;-0.35663047;0.15808767;0.0;0.39003968;0.83459824;-0.38899213;0.0;0.0067867534 +20447;0;0.066970825;4.1618805;8.927231 +20447;3;0.16349792;0.11517334;0.16252136 +20447;12;0.19739021;0.063533545;0.19373938;0.95888776 +20449;0;0.09562683;4.1571198;8.889069 +20449;1;-0.44437316;3.9653065;8.961863 +20449;2;-0.51049876;-0.09222412;-0.056162834; +20449;3;0.1726532;0.12251282;0.16740417 +20451;0;0.114746094;4.166626;8.855682 +20451;12;0.19774573;0.06375818;0.194143;0.95871794 +20452;3;0.17999268;0.12739563;0.17289734 +20454;0;0.114746094;4.256897;8.836609 +20454;1;-0.44572592;3.9735866;8.958127 +20454;3;0.18670654;0.13105774;0.17901611 +20457;4;13.392639;2.708435;-65.097046 +20457;6;-0.43530998;-0.4488955;-0.012984579 +20457;7;0.90903914;-0.3799132;0.17121303;0.0;0.41654664;0.8169059;-0.39894056;0.0;0.011697828 +20457;0;0.114746094;4.252136;8.774612 +20458;3;0.19282532;0.1341095;0.18084717 +20459;12;0.19814824;0.06401287;0.19457166;0.9585309 +20459;1;-0.4471853;3.9826288;8.954039 +20460;0;0.16729736;4.2949066;8.726913 +20461;3;0.19587708;0.1353302;0.18572998 +20462;5;999.5867 +20462;0;0.19117737;4.3851776;8.73645 +20464;12;0.19858952;0.064286;0.19502981;0.9583282 +20464;3;0.19709778;0.13595581;0.19000244 +20464;0;0.1434021;4.3946686;8.70784 +20464;3;0.19831848;0.1377716;0.1906128 +20467;1;-0.44854808;3.9919999;8.949796 +20469;12;0.19904406;0.064565584;0.19549996;0.9581193 +20471;17;1;38dead6d7725;8289;908;-72; +20471;17;1;38dead6d60ff;10554;2167;-74; +20472;17;1;1c1bb5efa29a;3486;1555;-63; +20472;17;1;1c1bb5ecd182;3379;1316;-65; +20472;4;12.942505;2.2598267;-64.497375 +20473;6;-0.4245846;-0.46732965;-0.016466672 +20473;7;0.9141422;-0.36777154;0.17055252;0.0;0.40512705;0.8135049;-0.417231;0.0;0.014700359 +20473;0;0.119506836;4.404175;8.6792145 +20473;3;0.19465637;0.13717651;0.19366455 +20473;0;0.119506836;4.4611816;8.650604 +20473;2;-0.62382203;-0.30886936;0.19003868; +20473;3;0.19099426;0.1335144;0.19673157 +20473;1;-0.44997463;4.001501;8.94548 +20473;0;0.10997009;4.522949;8.621979 +20473;12;0.19950733;0.06485178;0.19598328;0.9579048 +20473;3;0.18548584;0.13227844;0.20039368 +20473;0;0.07652283;4.5514526;8.602905 +20473;1;-0.45110562;4.0107937;8.941261 +20474;3;0.17633057;0.12617493;0.20466614 +20477;4;12.942505;2.558899;-64.94751 +20477;6;-0.3933622;-0.4866081;-0.008894763 +20477;7;0.9251833;-0.33880457;0.17101844;0.0;0.37943912;0.81641495;-0.4353076;0.0;0.007862193 +20477;0;0.04307556;4.546707;8.593384 +20477;3;0.16838074;0.1194458;0.20954895 +20477;12;0.19995816;0.06512421;0.19647549;0.9576915 +20480;1;-0.4517118;4.0194755;8.937331 +20480;0;0.023986816;4.627472;8.593384 +20480;3;0.15861511;0.11273193;0.21383667 +20480;0;0.028747559;4.6084595;8.607666 +20480;12;0.20038113;0.06536571;0.19698827;0.95748127 +20481;3;0.14700317;0.10601807;0.21810913 +20484;1;-0.45159116;4.027373;8.933781 +20484;0;7.6293945E-5;4.5989685;8.631531 +20484;3;0.13356018;0.0993042;0.2236023 +20485;4;12.792969;1.9592285;-66.29639 +20485;6;-0.37083167;-0.48955002;-8.8389825E-6 +20485;7;0.9320278;-0.31982592;0.1703983;0.0;0.3623868;0.8225547;-0.43826884;0.0;7.800795E-6 +20485;0;0.0048675537;4.594223;8.602905 +20488;3;0.118896484;0.09013367;0.2284851 +20489;12;0.20076628;0.065565355;0.19752099;0.9572772 +20489;0;0.03352356;4.6084595;8.631531 +20490;1;-0.4506312;4.034096;8.930796 +20490;3;0.103637695;0.080963135;0.23338318 +20490;0;0.08129883;4.65123;8.660141 +20491;2;-0.5301192;-0.53322315;0.31125546; +20491;12;0.20109814;0.06570906;0.19807132;0.957084 +20491;3;0.087753296;0.07241821;0.23519897 +20492;0;0.071746826;4.646469;8.6839905 +20492;3;0.071258545;0.065078735;0.23765564 +20493;1;-0.44865617;4.0395417;8.928433 +20495;4;12.792969;1.3595581;-64.64691 +20495;6;-0.39857832;-0.49128762;-0.008261777 +20495;7;0.9230949;-0.3422054;0.17547436;0.0;0.38450322;0.8126109;-0.43797356;0.0;0.007284542 +20495;0;0.119506836;4.65123;8.731674 +20496;3;0.055374146;0.05897522;0.2407074 +20497;12;0.20136927;0.06578948;0.1986335;0.9569049 +20498;0;0.10041809;4.684494;8.70784 +20498;1;-0.44591165;4.0435967;8.926735 +20498;3;0.04071045;0.053482056;0.24497986 +20501;5;999.5874 +20501;0;0.066970825;4.6654816;8.712601 +20503;12;0.20157453;0.06582052;0.19920823;0.95674 +20503;3;0.026046753;0.049209595;0.24926758 +20503;0;0.03352356;4.627472;8.688751 +20503;1;-0.44263792;4.0463653;8.925643 +20503;3;0.009552002;0.040039062;0.25048828 +20504;4;12.342834;1.9592285;-63.146973 +20504;6;-0.38133925;-0.48936903;-0.0038582522 +20504;7;0.92883515;-0.32848284;0.17136031;0.0;0.37047768;0.81922776;-0.4377353;0.0;0.0034053992 +20504;0;0.014419556;4.5752106;8.717377 +20505;3;-0.0026550293;0.03149414;0.25170898 +20505;12;0.20171228;0.06581216;0.19979987;0.9565882 +20507;0;-0.01423645;4.5989685;8.73645 +20507;3;-0.013641357;0.022323608;0.2529297 +20507;1;-0.43869272;4.0477753;8.925199 +20507;2;-0.53851026;-0.57626724;0.2121172; +20509;0;-0.023803711;4.537201;8.822296 +20510;12;0.20178433;0.06575398;0.20039715;0.9564521 +20510;3;-0.023422241;0.013763428;0.2541504 +20512;1;-0.43398005;4.0481153;8.925275 +20512;0;-0.023803711;4.53244;8.86998 +20512;3;-0.033187866;0.0052337646;0.25598145 +20513;4;12.342834;1.9592285;-63.146973 +20513;6;-0.3798327;-0.4723967;0.00268362 +20513;7;0.9282706;-0.33015904;0.17119795;0.0;0.37189788;0.82701284;-0.42159435;0.0;-0.0023897078 +20514;0;-0.028564453;4.5514526;8.931976 +20514;3;-0.039916992;-2.746582E-4;0.25720215 +20515;12;0.20180988;0.06564172;0.20098859;0.9563303 +20516;0;0.014419556;4.5752106;8.931976 +20516;1;-0.4285267;4.0476704;8.92574 +20517;3;-0.04724121;-0.0057678223;0.2590332 +20520;0;0.028747559;4.4849396;8.965378 +20520;12;0.20180014;0.06548166;0.20158915;0.95621693 +20520;3;-0.049072266;-0.013092041;0.26086426 +20520;0;0.04786682;4.4849396;8.989227 +20521;1;-0.42244682;4.046618;8.926507 +20521;3;-0.052124023;-0.020431519;0.2602539 +20523;4;13.093567;1.3595581;-66.29639 +20523;6;-0.41184238;-0.46278062;-0.0053248587 +20523;7;0.9173235;-0.3581928;0.17382626;0.0;0.39811426;0.81999457;-0.41123477;0.0;0.004764739 +20523;0;0.062194824;4.4897003;8.979691 +20524;3;-0.056411743;-0.028366089;0.2626953 +20524;12;0.20176697;0.06528452;0.20219387;0.9561097 +20527;0;0.028747559;4.4516907;9.041687 +20527;1;-0.4156983;4.045268;8.927436 +20527;2;-0.4706072;-0.4555397;-0.021868706; +20527;3;-0.057632446;-0.035705566;0.26452637 +20528;0;-0.01423645;4.4279175;9.046463 +20528;3;-0.056411743;-0.04486084;0.26759338 +20528;12;0.20172201;0.06505196;0.20279506;0.9560077 +20530;0;-0.033355713;4.4089203;9.094147 +20530;1;-0.4082864;4.0437107;8.928484 +20530;3;-0.05517578;-0.055862427;0.26940918 +20532;4;13.093567;1.3595581;-66.29639 +20532;6;-0.4027134;-0.4514181;0.0036678056 +20532;7;0.9193677;-0.35265762;0.17434351;0.0;0.3933855;0.82784384;-0.3999029;0.0;-0.0033003916 +20533;0;-0.023803711;4.375656;9.065521 +20533;3;-0.053359985;-0.06562805;0.2724762 +20534;12;0.20167507;0.06478062;0.20339496;0.95590854 +20535;0;0.0048675537;4.3851776;9.094147 +20535;1;-0.39989856;4.042226;8.929536 +20535;3;-0.05029297;-0.07846069;0.27186584 +20537;5;999.5874 +20539;12;0.20164338;0.06446082;0.20399985;0.95580804 +20540;0;-0.01423645;4.3519135;9.094147 +20540;3;-0.044799805;-0.09007263;0.27186584 +20540;1;-0.39049408;4.040972;8.930519 +20540;0;0.0048675537;4.370926;9.160919 +20540;3;-0.039916992;-0.0980072;0.2724762 +20542;4;12.942505;1.5090942;-65.69672 +20542;6;-0.41257286;-0.44518265;-5.3133897E-4 +20542;7;0.91618377;-0.36188608;0.17217897;0.0;0.4007579;0.8268025;-0.3947031;0.0;4.795504E-4 +20542;0;0.014419556;4.3519135;9.175232 +20543;3;-0.035629272;-0.106552124;0.27186584 +20543;12;0.20163627;0.06408911;0.20459439;0.9557073 +20545;1;-0.3802225;4.040064;8.931374 +20545;0;0.04307556;4.3376617;9.227692 +20545;2;-0.42057383;-0.32394552;-0.19588184; +20546;3;-0.030136108;-0.11265564;0.26940918 +20547;0;0.08129883;4.323395;9.261063 +20548;3;-0.024642944;-0.118774414;0.26759338 +20548;12;0.20165716;0.063674785;0.20518382;0.9556044 +20549;0;0.08607483;4.3043976;9.261063 +20549;1;-0.3694503;4.039521;8.93207 +20550;3;-0.01914978;-0.12365723;0.26574707 +20552;4;12.942505;1.5090942;-65.69672 +20552;6;-0.437095;-0.4350639;-0.009294004 +20552;7;0.90760416;-0.3838751;0.16998364;0.0;0.41974217;0.8215863;-0.38576177;0.0;0.008428082 +20552;0;0.10041809;4.2616425;9.270599 +20552;3;-0.01121521;-0.12794495;0.26330566 +20553;12;0.20170492;0.06323613;0.20574953;0.9555017 +20554;0;0.1338501;4.2854004;9.332611 +20554;1;-0.35829502;4.0394177;8.932571 +20555;3;-0.004486084;-0.13160706;0.25720215 +20557;0;0.1577301;4.275894;9.337372 +20557;12;0.20178327;0.062780075;0.20630373;0.95539576 +20558;3;0.004058838;-0.13404846;0.2541504 +20559;0;0.18640137;4.223633;9.361221 +20559;1;-0.34695372;4.0398755;8.932813 +20559;3;0.010772705;-0.13710022;0.24926758 +20561;4;13.392639;0.30975342;-64.64691 +20561;6;-0.50182503;-0.42376378;-0.019909447 +20561;7;0.88047016;-0.43847853;0.18030249;0.0;0.47375423;0.7991595;-0.3700014;0.0;0.018147213 +20562;0;0.22460938;4.2046356;9.389847 +20562;3;0.019943237;-0.13648987;0.2443695 +20562;12;0.20189363;0.062315416;0.20683278;0.95528847 +20564;0;0.17684937;4.185623;9.413681 +20564;1;-0.33559138;4.0408835;8.932791 +20564;2;-0.52287906;-0.2048707;-0.40298653; +20564;3;0.025436401;-0.13465881;0.23826599 +20566;0;0.21028137;4.176132;9.4470825 +20567;12;0.20203643;0.061854437;0.20733702;0.9551789 +20567;3;0.034606934;-0.13465881;0.23338318 +20569;1;-0.32453215;4.0424495;8.932491 +20569;0;0.21505737;4.1713715;9.413681 +20569;3;0.043762207;-0.13282776;0.22909546 +20571;4;13.392639;0.30975342;-64.64691 +20571;6;-0.513863;-0.41701952;-0.02284122 +20571;7;0.8751722;-0.44941977;0.17915249;0.0;0.48336083;0.79622036;-0.36386204;0.0;0.020881917 +20572;0;0.22940063;4.1476135;9.466141 +20572;3;0.054153442;-0.13282776;0.22238159 +20573;12;0.20220868;0.0614093;0.20781428;0.95506746 +20574;0;0.27236938;4.133362;9.43277 +20574;1;-0.31370965;4.0447493;8.931836 +20575;3;0.06147766;-0.1322174;0.21688843 +20576;0;0.26760864;4.1381226;9.427994 +20577;12;0.20242092;0.060980167;0.2082679;0.9549511 +20577;3;0.07369995;-0.12854004;0.2101593 +20578;5;999.5874 +20579;0;0.3106079;4.1381226;9.404144 +20579;1;-0.30318895;4.047825;8.930806 +20579;3;0.08409119;-0.12731934;0.20405579 +20581;4;13.093567;0.30975342;-65.84625 +20581;6;-0.5207915;-0.41433257;-0.033016827 +20581;7;0.8735653;-0.45546532;0.1715664;0.0;0.48576802;0.79402864;-0.3654422;0.0;0.030217627 +20582;0;0.32492065;4.176132;9.399368 +20582;3;0.09324646;-0.12428284;0.19673157 +20583;12;0.20267501;0.06056985;0.20869246;0.95483065 +20584;0;0.3106079;4.1523743;9.394608 +20584;1;-0.29309225;4.051806;8.9293375 +20584;2;-0.60603833;-0.08963728;-0.50127316; +20584;3;0.103637695;-0.119384766;0.1906128 +20586;0;0.31536865;4.2046356;9.389847 +20586;12;0.20297404;0.060188156;0.20908582;0.9547053 +20587;3;0.115859985;-0.11143494;0.18695068 +20588;0;0.35359192;4.190384;9.337372 +20588;1;-0.28359783;4.056741;8.927403 +20589;3;0.12501526;-0.102890015;0.18267822 +20591;4;13.093567;1.05896;-63.89618 +20591;6;-0.52295285;-0.4215676;-0.03785038 +20591;7;0.8734613;-0.4557138;0.17143656;0.0;0.4856679;0.79049826;-0.3731478;0.0;0.034528278 +20592;0;0.37271118;4.2378845;9.327835 +20592;3;0.13600159;-0.094955444;0.18084717 +20592;12;0.20332035;0.059842307;0.20945601;0.95457214 +20593;0;0.38226318;4.290146;9.308762 +20593;1;-0.27495107;4.062601;8.925009 +20593;3;0.14639282;-0.087005615;0.17962646 +20596;0;0.37747192;4.375656;9.270599 +20596;12;0.20371029;0.05955146;0.20981391;0.95442855 +20596;3;0.15800476;-0.07785034;0.1771698 +20597;0;0.4204712;4.4421844;9.265839 +20598;1;-0.26705402;4.0695496;8.922083 +20598;3;0.16532898;-0.06929016;0.1771698 +20600;4;12.792969;1.6586304;-64.64691 +20600;6;-0.49445793;-0.4466438;-0.045347534 +20600;7;0.8886133;-0.4280016;0.16486645;0.0;0.45683122;0.7938775;-0.40132737;0.0;0.04088501 +20600;0;0.43959045;4.52771;9.261063 +20601;3;0.17694092;-0.05647278;0.1759491 +20601;12;0.20415053;0.059310332;0.21016921;0.9542713 +20602;0;0.49214172;4.6417236;9.251541 +20603;3;0.18487549;-0.04119873;0.17655945 +20603;2;-0.70115304;-0.27381468;-0.39015007; +20603;1;-0.2599491;4.077482;8.91867 +20605;0;0.5160217;4.727234;9.208603 +20605;12;0.20463647;0.059122927;0.21052748;0.9540999 +20606;3;0.19099426;-0.02470398;0.17840576 +20608;0;0.51123047;4.8317566;9.160919 +20608;3;0.19770813;-0.009429932;0.17962646 +20608;1;-0.25404584;4.086359;8.914777 +20609;4;12.193298;0.45928955;-66.44745 +20609;6;-0.4732829;-0.48470992;-0.055747762 +20609;7;0.9005279;-0.40330604;0.16246179;0.0;0.43199426;0.78754896;-0.43948576;0.0;0.049300645 +20611;0;0.5160217;4.9125214;9.146606 +20612;3;0.19892883;0.0052337646;0.18206787 +20612;12;0.2051582;0.059013475;0.21089461;0.9539135 +20612;0;0.47302246;4.98378;9.11322 +20613;1;-0.24942078;4.0958676;8.9105425 +20613;3;0.19587708;0.017440796;0.18389893 +20617;0;0.47302246;5.040802;9.11322 +20619;12;0.2056957;0.058984045;0.21128696;0.95371276 +20619;3;0.19099426;0.028427124;0.18878174 +20620;5;999.5874 +20620;1;-0.2458067;4.1052866;8.906307 +20620;0;0.43959045;5.107315;9.13707 +20620;3;0.17816162;0.03881836;0.1918335 +20620;4;12.193298;0.45928955;-64.497375 +20620;6;-0.45134753;-0.509209;-0.04807359 +20620;7;0.90903854;-0.38084072;0.16914272;0.0;0.41459426;0.78569525;-0.45912367;0.0;0.041958347 +20621;0;0.3297119;5.140564;9.199066 +20621;3;0.16349792;0.05104065;0.19610596 +20621;12;0.20621248;0.059013553;0.21170332;0.953507 +20623;0;0.23893738;5.1928253;9.246765 +20623;2;-0.72906816;-0.8673935;-0.2697401; +20623;1;-0.24319197;4.1138167;8.902442 +20623;3;0.14212036;0.0675354;0.19856262 +20625;0;0.1529541;5.254593;9.280151 +20625;12;0.20666914;0.059091233;0.21215108;0.9533038 +20625;3;0.11645508;0.0846405;0.20222473 +20627;1;-0.24198034;4.120589;8.899343 +20628;0;0.114746094;5.2926025;9.294464 +20628;3;0.08836365;0.10296631;0.20588684 +20629;4;13.542175;0.1586914;-64.497375 +20629;6;-0.42161715;-0.51761;-0.012345011 +20629;7;0.9148585;-0.35562828;0.19121304;0.0;0.40363204;0.79290414;-0.45649126;0.0;0.010727595 +20630;0;0.071746826;5.321106;9.280151 +20630;3;0.0572052;0.12188721;0.21199036 +20630;12;0.20701514;0.05922223;0.21262968;0.95311385 +20632;1;-0.24228822;4.125011;8.897285 +20632;0;-0.033355713;5.3353577;9.280151 +20633;3;0.022994995;0.1377716;0.21627808 +20634;0;-0.16233826;5.344864;9.275375 +20635;12;0.20721385;0.05941542;0.21315171;0.95294213 +20635;3;-0.012435913;0.1524353;0.22421265 +20637;1;-0.24408105;4.126585;8.896506 +20637;0;-0.3056488;5.3496094;9.275375 +20637;3;-0.048461914;0.16221619;0.22972107 +20639;4;13.243103;1.5090942;-64.497375 +20639;6;-0.31833702;-0.5229166;0.032940794 +20640;7;0.944094;-0.27116188;0.18750414;0.0;0.32843935;0.82283765;-0.4637519;0.0;-0.028533634 +20640;0;-0.46328735;5.3163605;9.337372 +20640;3;-0.08755493;0.1683197;0.23519897 +20641;12;0.20723788;0.05966023;0.21372141;0.9527939 +20642;0;-0.6113739;5.2926025;9.4423065 +20642;1;-0.24686697;4.124942;8.897192 +20642;2;-0.14108485;-1.1794834;-0.41662216; +20643;3;-0.12786865;0.17260742;0.2407074 +20644;0;-0.7260437;5.254593;9.48999 +20645;3;-0.16819763;0.17504883;0.24559021 +20645;12;0.20707439;0.05992239;0.21433604;0.952675 +20646;1;-0.25010642;4.1197686;8.899498 +20646;0;-0.840683;5.2450867;9.585388 +20647;3;-0.21339417;0.17626953;0.24864197 +20651;12;0.20671605;0.060168013;0.21498619;0.9525909 +20651;4;12.942505;1.2084961;-63.29651 +20651;6;-0.2276575;-0.49907616;0.08748079 +20651;7;0.9610347;-0.19816683;0.19272332;0.0;0.26557028;0.8553701;-0.44476342;0.0;-0.07671239 +20651;0;-0.92666626;5.188095;9.613998 +20652;3;-0.25616455;0.17198181;0.2529297 +20655;1;-0.25345087;4.1107955;8.903552 +20656;12;0.20615171;0.060377754;0.21566573;0.9525462 +20656;0;-1.0269775;5.15007;9.609222 +20657;3;-0.30075073;0.1646576;0.2529297 +20657;0;-1.1702881;5.0550537;9.613998 +20657;3;-0.34291077;0.15306091;0.2529297 +20657;5;999.5824 +20657;0;-1.2706299;4.974289;9.675995 +20657;1;-0.25641954;4.0979505;8.909387 +20657;3;-0.38261414;0.1347351;0.2529297 +20661;1;-0.2581639;4.0815105;8.916879 +20661;12;0.20538345;0.06051628;0.21635288;0.95254767 +20661;2;0.7825533;-0.9887552;-0.7242832; +20661;4;12.942505;1.5090942;-66.44745 +20661;6;-0.12980409;-0.47138503;0.13057064 +20661;7;0.9754933;-0.1153232;0.18738559;0.0;0.18696715;0.88344496;-0.42961416;0.0;-0.11600036 +20661;0;-1.3422699;4.8887787;9.718933 +20661;3;-0.4210968;0.1164093;0.2529297 +20661;0;-1.3948212;4.869766;9.78093 +20661;3;-0.45591736;0.09013367;0.24926758 +20663;12;0.2044408;0.060542796;0.21703377;0.95259374 +20664;0;-1.4760437;4.7890015;9.823853 +20664;3;-0.48768616;0.06324768;0.24559021 +20665;0;-1.4999237;4.693985;9.938309 +20665;1;-0.25808838;4.061881;8.92584 +20665;3;-0.51394653;0.03515625;0.2407074 +20671;4;12.342834;0.009155273;-65.84625 +20671;6;-0.08372324;-0.43692;0.14979295 +20671;7;0.98005766;-0.075769626;0.1837006;0.0;0.14561608;0.90288556;-0.40446705;0.0;-0.13521431 +20671;0;-1.4330444;4.53244;10.000305 +20671;3;-0.53837585;0.0046081543;0.23031616 +20671;12;0.20334855;0.060420953;0.21768364;0.9526871 +20671;0;-1.2849579;4.347168;10.067078 +20671;1;-0.25568643;4.039543;8.936041 +20671;3;-0.5591583;-0.028366089;0.2077179 +20672;17;1;38dead6d7725;6689;956;-72; +20672;17;1;38dead6d60ff;7991;2502;-70; +20673;17;1;1c1bb5efa29a;3622;3512;-64; +20674;17;1;1c1bb5ecd182;2998;3456;-60; +20674;0;-1.1846313;4.2949066;10.172012 +20674;12;0.20214477;0.060130123;0.21829501;0.95282173 +20674;3;-0.573822;-0.063186646;0.1759491 +20674;0;-1.1989594;4.275894;10.315094 +20674;1;-0.2511275;4.015179;8.947144 +20674;3;-0.5854187;-0.095565796;0.15518188 +20677;4;12.342834;1.3595581;-65.097046 +20677;6;-0.17768879;-0.3905994;0.115714245 +20677;7;0.9699027;-0.1634422;0.18048653;0.0;0.21884015;0.91012174;-0.3518343;0.0;-0.106760144 +20678;0;-1.2324066;4.266403;10.405701 +20679;3;-0.5890808;-0.11999512;0.14480591 +20679;12;0.20087071;0.05968577;0.21878114;0.95300764 +20679;0;-1.2658386;4.199875;10.453384 +20679;3;-0.58724976;-0.13771057;0.1423645 +20680;2;1.0332801;-0.4266491;-1.1933937; +20680;1;-0.244789;3.9897428;8.958691 +20681;0;-1.2992706;4.085861;10.515396 +20682;12;0.19956672;0.059111036;0.21914405;0.9532339 +20682;3;-0.5780792;-0.15359497;0.14173889 +20684;0;-1.3375092;4.019348;10.544006 +20684;1;-0.23707666;3.9642668;8.970201 +20684;3;-0.5634308;-0.17070007;0.1429596 +20686;4;13.093567;1.3595581;-64.64691 +20686;6;-0.19528991;-0.36154437;0.1261763 +20686;7;0.9645552;-0.18150587;0.1915436;0.0;0.23617484;0.917572;-0.31981727;0.0;-0.11770631 +20686;0;-1.3757172;3.9053192;10.501083 +20687;3;-0.5475464;-0.18963623;0.1429596 +20687;12;0.19828188;0.058458466;0.21946721;0.9534679 +20689;1;-0.22790287;3.9395912;8.981302 +20689;0;-1.3852692;3.7817993;10.553543 +20689;3;-0.5279999;-0.2134552;0.14419556 +20695;0;-1.3136139;3.729538;10.53923 +20696;3;-0.50416565;-0.23667908;0.14785767 +20696;12;0.19705945;0.05773452;0.21977624;0.95369434 +20697;5;999.5824 +20698;0;-1.2324066;3.6962738;10.615555 +20698;3;-0.47668457;-0.25561523;0.15274048 +20698;1;-0.21677859;3.9167502;8.991562 +20698;4;12.643433;0.9094238;-64.94751 +20698;6;-0.222331;-0.33299178;0.11557703 +20698;7;0.96056694;-0.20839128;0.18407707;0.0;0.25579977;0.9218069;-0.2912708;0.0;-0.1089852 +20698;0;-1.1177521;3.6867828;10.701401 +20698;3;-0.44737244;-0.26783752;0.15640259 +20698;12;0.19596285;0.056926772;0.2200637;0.9539024 +20699;0;-1.0317688;3.682022;10.796783 +20699;1;-0.2035132;3.8958855;9.000932 +20699;3;-0.41560364;-0.27209473;0.15762329 +20699;2;1.0167532;0.0829618;-1.6005039; +20701;0;-0.92666626;3.663025;10.892166 +20701;12;0.19499713;0.056036416;0.2203522;0.95408654 +20701;3;-0.37895203;-0.26843262;0.158844 +20703;0;-0.802475;3.6345215;10.901703 +20703;1;-0.1896641;3.877851;9.009018 +20703;3;-0.34291077;-0.258667;0.16069031 +20705;4;13.542175;2.2598267;-64.94751 +20705;6;-0.36459413;-0.320992;0.07347754 +20705;7;0.92348886;-0.3383576;0.18078318;0.0;0.3772475;0.88654894;-0.26779756;0.0;-0.0696618 +20705;0;-0.7260437;3.5727692;10.939865 +20706;3;-0.30870056;-0.245224;0.1594696 +20706;12;0.19418862;0.055152122;0.22063585;0.9542373 +20708;0;-0.60661316;3.4967346;10.911255 +20708;1;-0.17636025;3.8627741;9.015762 +20708;3;-0.27142334;-0.2293396;0.1582489 +20710;0;-0.54927063;3.4824982;10.863541 +20710;12;0.19353144;0.054336153;0.22092588;0.95435053 +20710;3;-0.23355103;-0.20857239;0.15518188 +20713;1;-0.16436216;3.850784;9.021117 +20714;0;-0.43463135;3.4017181;10.873093 +20714;3;-0.19445801;-0.18841553;0.15213013 +20715;4;12.042236;1.9592285;-64.64691 +20715;6;-0.41782445;-0.30298227;0.039951842 +20715;7;0.9084089;-0.38729045;0.15747829;0.0;0.41634125;0.87234324;-0.25627583;0.0;-0.03812193 +20715;0;-0.38208008;3.3874664;10.849258 +20715;3;-0.15841675;-0.16703796;0.14663696 +20716;12;0.19302194;0.05362617;0.22121589;0.9544267 +20717;0;-0.3295288;3.3494568;10.825394 +20717;1;-0.15413868;3.8420072;9.025039 +20718;2;0.4001336;0.35644984;-1.8633051; +20718;3;-0.12054443;-0.14016724;0.1411438 +20719;0;-0.22921753;3.325714;10.820633 +20720;12;0.19266309;0.053046983;0.22149979;0.95446575 +20720;3;-0.08206177;-0.11265564;0.13748169 +20722;0;-0.18621826;3.29245;10.772934 +20722;1;-0.14615707;3.836421;9.027548 +20723;3;-0.047851562;-0.08517456;0.13319397 +20724;4;12.042236;2.4093628;-65.097046 +20724;6;-0.47193196;-0.2965652;0.017284032 +20725;7;0.8882625;-0.4347624;0.14822741;0.0;0.45903865;0.85180926;-0.25239718;0.0;-0.016528688 +20725;0;-0.16233826;3.2544403;10.682312 +20725;3;-0.01121521;-0.055252075;0.13014221 +20725;12;0.19244744;0.052622892;0.22177152;0.9544696 +20727;0;-0.10499573;3.202179;10.644165 +20727;1;-0.1406692;3.8338916;9.028709 +20727;3;0.023605347;-0.028366089;0.12709045 +20729;0;-0.042907715;3.1546783;10.567856 +20730;12;0.19236293;0.05236364;0.22204836;0.95443654 +20730;3;0.058425903;-0.003326416;0.12585449 +20730;5;999.5824 +20732;0;-0.038131714;3.1261597;10.477234 +20732;1;-0.13752033;3.8343568;9.028561 +20732;3;0.0901947;0.018661499;0.12463379 +20734;4;12.193298;2.859497;-63.746643 +20734;6;-0.51818234;-0.28996477;0.0036394668 +20734;7;0.86819977;-0.47462502;0.14477673;0.0;0.49620262;0.8324552;-0.24657908;0.0;-0.0034875255 +20734;0;0.0048675537;3.102417;10.358002 +20735;3;0.123794556;0.036987305;0.123413086 +20735;12;0.19241042;0.05226532;0.2223302;0.95436674 +20738;0;0.057418823;3.1214142;10.272156 +20738;1;-0.13621745;3.837707;9.027157 +20738;2;-0.08896525;0.6560035;-1.5546494; +20738;3;0.1537323;0.052261353;0.1240387 +20739;0;0.09085083;3.0929108;10.191071 +20739;12;0.19258901;0.052298266;0.22261931;0.95426154 +20739;3;0.18426514;0.06263733;0.12219238 +20741;0;0.1386261;3.08815;10.038467 +20741;1;-0.13610077;3.8437731;9.024577 +20742;3;0.21237183;0.06997681;0.12037659 +20744;4;12.193298;1.2084961;-65.24658 +20744;6;-0.5731354;-0.29841673;-0.013808611 +20744;7;0.8423262;-0.5183025;0.14781414;0.0;0.5388064;0.8030705;-0.25449055;0.0;0.013197895 +20744;0;0.1720581;3.1071625;9.943069 +20744;3;0.24046326;0.07424927;0.11853027 +20745;12;0.19289815;0.05242752;0.22291085;0.954124 +20746;0;0.23893738;3.1166687;9.819077 +20746;1;-0.13655747;3.852413;9.020885 +20746;3;0.2667389;0.07791138;0.114868164 +20748;0;0.26283264;3.111908;9.75708 +20749;12;0.19333576;0.052617762;0.22319692;0.95395803 +20749;3;0.2899475;0.08157349;0.111206055 +20751;0;0.26283264;3.1404114;9.680771 +20751;1;-0.13737409;3.8633487;9.016194 +20751;3;0.31254578;0.08157349;0.10571289 +20753;4;12.193298;1.5090942;-66.89758 +20754;6;-0.5676688;-0.31357813;-0.027143303 +20754;7;0.8473473;-0.5114491;0.14290701;0.0;0.53041124;0.80204093;-0.27458018;0.0;0.025816515 +20754;0;0.28671265;3.1641693;9.566299 +20754;3;0.33148193;0.085250854;0.10081482 +20754;12;0.19389224;0.05285546;0.22346537;0.9537691 +20756;0;0.32492065;3.16893;9.4756775 +20756;1;-0.1384564;3.8762662;9.0106325 +20756;2;-0.40191996;0.7705679;-0.80682564; +20757;3;0.3504181;0.08769226;0.09593201 +20758;0;0.33448792;3.16893;9.356461 +20759;12;0.19455048;0.05312644;0.22370823;0.95356303 +20759;3;0.3675232;0.09257507;0.08798218 +20761;1;-0.13995734;3.8908508;9.004321 +20761;0;0.36791992;3.2116852;9.280151 +20761;3;0.38279724;0.1005249;0.07821655 +20764;4;13.243103;3.1585693;-64.19678 +20764;6;-0.5857825;-0.33293673;-0.039625145 +20765;7;0.83978325;-0.52249265;0.14753088;0.0;0.5416292;0.7875215;-0.29401967;0.0;0.037439395 +20765;0;0.36314392;3.1926727;9.184769 +20765;3;0.39562988;0.10601807;0.07394409 +20766;12;0.19529372;0.053435758;0.22392218;0.9533436 +20772;1;-0.14232622;3.906902;8.997331 +20772;12;0.19610675;0.053804908;0.22410415;0.953113 +20772;0;0.3297119;3.2211914;9.08461 +20772;3;0.40541077;0.113342285;0.067214966 +20773;0;0.32492065;3.244934;8.989227 +20773;3;0.4176178;0.12007141;0.06111145 +20773;1;-0.14550468;3.9238708;8.989893 +20773;5;999.5824 +20773;0;0.30104065;3.2259216;8.946289 +20773;3;0.42799377;0.12617493;0.056228638 +20774;12;0.19695735;0.054221343;0.22426079;0.9528773 +20776;1;-0.14946562;3.941749;8.982003 +20776;2;-0.5131984;0.73666334;-0.0959692; +20776;4;12.643433;1.5090942;-64.94751 +20776;6;-0.5668564;-0.34589526;-0.033637084 +20776;7;0.84923875;-0.5051786;0.1535845;0.0;0.5270604;0.7936292;-0.30390838;0.0;0.031638876 +20776;0;0.30104065;3.235443;8.898605 +20776;3;0.43533325;0.1328888;0.051330566 +20777;0;0.24848938;3.2971954;8.807983 +20777;3;0.44084167;0.14021301;0.047668457 +20782;17;1;38dead6d7725;11841;712;-68; +20782;17;1;38dead6d60ff;13931;1604;-68; +20783;17;1;1c1bb5efa29a;3938;1710;-61; +20783;17;1;1c1bb5ecd182;2330;1936;-64; +20783;12;0.19785169;0.05468932;0.22439559;0.9526335 +20783;0;0.20072937;3.325714;8.755524 +20783;3;0.44511414;0.14572144;0.04522705 +20783;1;-0.15424089;3.960242;8.973784 +20783;0;0.18640137;3.3732147;8.650604 +20783;3;0.4481659;0.14816284;0.04522705 +20785;12;0.19877075;0.05520191;0.2245147;0.9523845 +20785;4;12.792969;1.9592285;-64.34631 +20785;6;-0.51426333;-0.37172526;-0.021544453 +20785;7;0.8743022;-0.45829827;0.15986945;0.0;0.48496667;0.8111913;-0.32676575;0.0;0.020071458 +20785;0;0.1625061;3.425476;8.631531 +20787;1;-0.15938318;3.9791403;8.96533 +20787;3;0.4506073;0.1499939;0.042785645 +20787;0;0.119506836;3.4777374;8.579071 +20787;3;0.45121765;0.1524353;0.04034424 +20794;12;0.19970633;0.055739712;0.22463134;0.9521299 +20794;1;-0.16487877;3.9983175;8.956695 +20795;0;0.09085083;3.5062408;8.531357 +20795;3;0.4506073;0.15550232;0.04034424 +20795;0;0.066970825;3.7485352;8.507523 +20795;3;0.4506073;0.15672302;0.042175293 +20795;12;0.20065689;0.05630357;0.22473891;0.95187145 +20795;4;11.743164;1.05896;-64.64691 +20795;6;-0.42602932;-0.4150099;-0.007871792 +20795;7;0.9118973;-0.3781778;0.15945208;0.0;0.41035533;0.83331394;-0.37040028;0.0;0.007203499 +20795;0;-0.100234985;3.729538;8.445526 +20795;3;0.44877625;0.15916443;0.055618286 +20795;2;-0.2828778;0.5076909;0.36428547; +20795;1;-0.17067806;4.0175114;8.947993 +20795;0;-0.171875;3.6535187;8.488449 +20795;3;0.4469452;0.16160583;0.06538391 +20798;0;-0.095443726;3.639267;8.402588 +20799;12;0.201595;0.05687804;0.22486645;0.95160896 +20799;3;0.44265747;0.17016602;0.07028198 +20799;0;-0.038131714;3.6202698;8.249985 +20799;3;0.4335022;0.17138672;0.07577515 +20800;1;-0.17633347;4.036468;8.939348 +20802;4;13.243103;1.5090942;-66.14685 +20802;6;-0.4330144;-0.4135151;0.004622001 +20802;7;0.90691596;-0.38424173;0.1728053;0.0;0.42129025;0.8311982;-0.3628003;0.0;-0.0042324164 +20802;0;-0.11456299;3.6440125;8.278595 +20802;12;0.2025241;0.057454463;0.22503914;0.9513362 +20803;3;0.42007446;0.15487671;0.07821655 +20804;1;-0.18179452;4.054701;8.930984 +20805;0;-0.18144226;3.7200317;8.311981 +20805;3;0.40541077;0.14266968;0.0763855 +20807;12;0.20341943;0.05802038;0.22523457;0.9510645 +20807;0;-0.19577026;3.8007965;8.235672 +20807;3;0.38890076;0.13717651;0.070877075 +20808;5;999.5824 +20809;0;-0.18621826;3.862564;8.2070465 +20809;1;-0.1863736;4.0718517;8.923082 +20809;3;0.3718109;0.12922668;0.06843567 +20811;4;12.342834;1.9592285;-64.34631 +20811;6;-0.35577223;-0.4397858;0.022686152 +20811;7;0.9337726;-0.31516975;0.16951881;0.0;0.35727763;0.84817964;-0.3910806;0.0;-0.020525644 +20812;0;-0.16711426;3.9148254;8.288132 +20812;3;0.35102844;0.121292114;0.06538391 +20812;12;0.20426725;0.058519706;0.22541475;0.9508095 +20813;0;-0.19577026;3.9480896;8.297668 +20814;1;-0.19042365;4.0875163;8.915832 +20814;2;-0.08634567;0.33881712;0.62163544; +20814;3;0.33148193;0.117004395;0.06477356 +20816;0;-0.20533752;3.9433289;8.335815 +20816;12;0.20504054;0.058970988;0.22557694;0.95057666 +20816;3;0.31132507;0.121292114;0.067840576 +20820;0;-0.2817688;3.9243164;8.269058 +20820;1;-0.19430202;4.1014385;8.909352 +20820;3;0.28933716;0.12556458;0.07209778 +20824;12;0.20572439;0.05939312;0.22573262;0.95036554 +20824;1;-0.19848706;4.1135025;8.903696 +20824;4;12.792969;1.6586304;-64.64691 +20824;6;-0.3458454;-0.44287956;0.034061898 +20824;7;0.9352962;-0.30628663;0.17722732;0.0;0.3525255;0.8500231;-0.39139023;0.0;-0.0307697 +20824;0;-0.3295288;3.9243164;8.2070465 +20824;3;0.26489258;0.12861633;0.078826904 +20825;0;-0.36775208;3.9148254;8.164139 +20825;3;0.2398529;0.12922668;0.08494568 +20826;12;0.20630418;0.059810244;0.22592434;0.95016825 +20826;0;-0.3534088;3.933838;8.178452 +20826;3;0.21725464;0.12861633;0.09410095 +20828;0;-0.3534088;3.952835;8.1689 +20828;1;-0.20249109;4.1235886;8.898939 +20828;3;0.1897583;0.12861633;0.103271484 +20830;4;12.942505;0.45928955;-64.497375 +20830;6;-0.33967295;-0.45030892;0.043235756 +20830;7;0.9357147;-0.29996505;0.18563114;0.0;0.35060474;0.8488721;-0.3955912;0.0;-0.038913574 +20830;0;-0.3534088;3.9480896;8.221359 +20831;3;0.16288757;0.12556458;0.11364746 +20831;12;0.20677768;0.06019981;0.2261574;0.94998515 +20833;0;-0.36297607;3.9955902;8.226135 +20833;3;0.138443;0.12739563;0.123413086 +20833;2;0.077812955;0.20886612;0.66366005; +20833;1;-0.20601134;4.131397;8.895236 +20835;0;-0.38208008;4.019348;8.230911 +20835;12;0.20713486;0.06054663;0.22643831;0.94981843 +20835;3;0.10974121;0.13044739;0.13380432 +20838;1;-0.20923796;4.137058;8.8925295 +20838;0;-0.38685608;4.0383606;8.2165985 +20839;3;0.083465576;0.13166809;0.14602661 +20840;4;13.093567;1.05896;-65.84625 +20840;6;-0.3191538;-0.45637682;0.047047526 +20840;7;0.9419475;-0.28165114;0.18277723;0.0;0.33309552;0.8523247;-0.40322456;0.0;-0.042216875 +20840;0;-0.39163208;4.0145874;8.1689 +20840;3;0.055984497;0.12983704;0.1582489 +20846;12;0.20737709;0.060859494;0.22676727;0.9496671 +20846;12;0.20749772;0.06113585;0.22716457;0.94952804 +20846;1;-0.21207638;4.1404395;8.890887 +20846;0;-0.38685608;4.0478516;8.226135 +20846;3;0.02909851;0.12800598;0.17045593 +20846;0;-0.38208008;4.057358;8.254761 +20846;3;0.0034484863;0.12556458;0.18267822 +20846;5;999.5824 +20847;0;-0.40596008;4.0668488;8.302444 +20847;3;-0.023422241;0.12188721;0.19551086 +20848;1;-0.21425739;4.141559;8.890315 +20849;4;13.693237;-0.29144287;-65.097046 +20849;6;-0.35171145;-0.45501307;0.04885754 +20849;7;0.9302701;-0.3094534;0.19706881;0.0;0.36424303;0.84326804;-0.3952541;0.0;-0.043869082 +20849;0;-0.39640808;4.043091;8.311981 +20850;3;-0.05029297;0.11885071;0.20527649 +20850;12;0.20750019;0.06136229;0.2276231;0.949403 +20851;0;-0.4298401;4.057358;8.421677 +20852;1;-0.2157141;4.140378;8.890829 +20852;3;-0.077178955;0.1182251;0.21565247 +20852;2;0.13817161;0.116509914;0.6140747; +20854;0;-0.41552734;4.057358;8.402588 +20854;12;0.20738551;0.061533704;0.22814032;0.9492929 +20854;3;-0.104660034;0.117630005;0.22421265 +20857;0;-0.43463135;4.0478516;8.464584 +20857;1;-0.21669395;4.136882;8.892432 +20859;3;-0.13398743;0.1194458;0.22972107 +20859;4;12.942505;-0.14038086;-65.69672 +20859;6;-0.32423043;-0.4455522;0.051301982 +20859;7;0.93960863;-0.2874774;0.1857208;0.0;0.33910805;0.85535574;-0.3916277;0.0;-0.046273213 +20859;0;-0.43463135;4.0050964;8.512299 +20859;3;-0.16329956;0.117004395;0.23519897 +20860;12;0.20714821;0.0616588;0.22870375;0.94920105 +20861;0;-0.41552734;3.9955902;8.526611 +20861;3;-0.19569397;0.113342285;0.2419281 +20861;1;-0.21743971;4.13084;8.895223 +20863;0;-0.42507935;3.962326;8.602905 +20864;3;-0.22561646;0.11029053;0.24559021 +20864;12;0.20677643;0.061745375;0.22930968;0.9491302 +20866;0;-0.44895935;3.9100647;8.65538 +20866;1;-0.21771108;4.122038;8.899299 +20866;3;-0.260437;0.1035614;0.24620056 +20868;4;12.643433;0.1586914;-62.997437 +20868;6;-0.3421931;-0.42380413;0.051824108 +20868;7;0.9336083;-0.3058678;0.18660244;0.0;0.35517043;0.85868156;-0.36948618;0.0;-0.047218148 +20868;0;-0.44895935;3.8483124;8.741211 +20869;3;-0.29586792;0.09867859;0.24620056 +20869;12;0.20625895;0.061777063;0.22994731;0.94908655 +20871;9;2AEC2AEBC4E1;-68;-2147483648 +20872;0;-0.45851135;3.8293152;8.803207 +20872;1;-0.21751066;4.110182;8.904785 +20872;2;0.17725423;0.17266941;0.3060751; +20872;3;-0.32946777;0.089523315;0.24559021 +20873;0;-0.48718262;3.7485352;8.884293 +20873;12;0.20558502;0.061745137;0.23059514;0.94907755 +20873;3;-0.36306763;0.08157349;0.24497986 +20875;0;-0.5015106;3.7200317;8.946289 +20876;1;-0.2167274;4.0951414;8.911731 +20876;3;-0.39605713;0.07119751;0.2443695 +20878;4;11.8927;0.1586914;-64.19678 +20878;6;-0.32012117;-0.39351228;0.055999335 +20878;7;0.94095606;-0.29062983;0.1735973;0.0;0.33455887;0.87664825;-0.34577182;0.0;-0.05169217 +20878;0;-0.5397186;3.6582794;9.041687 +20878;3;-0.42904663;0.060195923;0.24497986 +20879;12;0.20475088;0.061636735;0.23122947;0.94911057 +20880;0;-0.5827179;3.6202698;9.098923 +20880;3;-0.46018982;0.04675293;0.24253845 +20880;1;-0.21522528;4.077185;8.919997 +20882;0;-0.5779419;3.5347595;9.151382 +20884;12;0.20377082;0.061452862;0.23187529;0.9491759 +20884;3;-0.4882965;0.032714844;0.24009705 +20884;5;999.5824 +20885;0;-0.60661316;3.4729767;9.242004 +20885;3;-0.51394653;0.016220093;0.23582458 +20888;17;1;38dead6d7725;9191;1205;-73; +20888;17;1;38dead6d60ff;10402;2059;-69; +20889;17;1;1c1bb5efa29a;985;2635;-63; +20889;17;1;1c1bb5ecd182;4501;512;-62; +20889;1;-0.21274441;4.056379;8.929538 +20889;4;11.442566;0.009155273;-64.34631 +20889;6;-0.3058288;-0.35874864;0.06554252 +20889;7;0.9446266;-0.2819157;0.16794081;0.0;0.32236576;0.8928887;-0.31437233;0.0;-0.06132595 +20889;0;-0.57315063;3.4207153;9.308762 +20889;3;-0.5396118;-0.0014953613;0.22972107 +20889;12;0.2026539;0.06117512;0.23250996;0.9492777 +20890;0;-0.60661316;3.3637238;9.370773 +20890;1;-0.20906527;4.0331264;8.94015 +20890;2;0.31106746;0.4868641;-0.20095158; +20890;3;-0.5591583;-0.02104187;0.2260437 +20892;0;-0.5683899;3.3494568;9.4756775 +20892;12;0.20142682;0.060796447;0.23311724;0.94941425 +20893;3;-0.5768585;-0.039367676;0.22238159 +20894;0;-0.5253906;3.325714;9.566299 +20895;1;-0.20390515;4.007962;8.951579 +20895;3;-0.5915222;-0.05708313;0.21688843 +20897;4;12.942505;1.2084961;-64.94751 +20897;6;-0.3920715;-0.33411202;0.054865867 +20897;7;0.91585755;-0.36097395;0.17579204;0.0;0.3981472;0.8730175;-0.28163698;0.0;-0.051805887 +20898;0;-0.5540619;3.2734528;9.699844 +20898;3;-0.6025238;-0.074798584;0.21138 +20898;12;0.20012043;0.060306944;0.23368683;0.9495817 +20899;0;-0.48239136;3.2116852;9.714157 +20899;1;-0.19739105;3.981357;8.963591 +20900;3;-0.6110687;-0.09310913;0.20527649 +20902;0;-0.48718262;3.1499176;9.75708 +20902;12;0.19875918;0.059720926;0.23422787;0.9497714 +20902;3;-0.61291504;-0.11265564;0.19978333 +20904;1;-0.18945594;3.953782;8.975958 +20905;0;-0.49671936;3.1261597;9.785706 +20906;3;-0.61047363;-0.13282776;0.1918335 +20906;4;12.942505;1.5090942;-64.19678 +20906;6;-0.4293379;-0.30884194;0.05071616 +20906;7;0.90165824;-0.3965736;0.17245802;0.0;0.429744;0.8662219;-0.25491118;0.0;-0.048295878 +20907;0;-0.48239136;3.0929108;9.819077 +20907;3;-0.6025238;-0.15298462;0.18511963 +20908;12;0.19737028;0.059043355;0.23472966;0.94997936 +20909;0;-0.45373535;3.021637;9.842926 +20909;1;-0.18011658;3.926475;8.988129 +20909;2;0.28783175;0.75653076;-0.7308111; +20909;3;-0.5903015;-0.17314148;0.17840576 +20912;0;-0.41073608;2.9693756;9.933533 +20912;12;0.19601652;0.058283813;0.23517711;0.9501959 +20912;3;-0.5683136;-0.19451904;0.16984558 +20914;0;-0.38685608;2.9693756;9.952621 +20914;1;-0.16921863;3.9001796;8.999783 +20914;3;-0.5432739;-0.2134552;0.16191101 +20916;4;13.693237;1.6586304;-64.64691 +20916;6;-0.5052566;-0.28973663;0.03885021 +20916;7;0.86901885;-0.4638571;0.17217085;0.0;0.4933769;0.83857745;-0.23101309;0.0;-0.037221536 +20917;0;-0.2960968;2.921875;10.009842 +20917;3;-0.5157776;-0.22994995;0.15151978 +20917;12;0.19474383;0.05744677;0.2355677;0.95041186 +20919;0;-0.28652954;2.945633;10.057541 +20919;1;-0.15689595;3.8759391;9.01047 +20919;3;-0.48034668;-0.24156189;0.1423645 +20921;0;-0.21487427;2.9123688;10.043243 +20921;12;0.19360362;0.05655488;0.23589659;0.9506166 +20922;3;-0.44308472;-0.245224;0.13441467 +20922;5;999.5824 +20923;0;-0.16233826;2.931366;10.071854 +20924;3;-0.40216064;-0.245224;0.1252594 +20924;1;-0.14386664;3.8545856;9.019844 +20926;4;12.942505;2.2598267;-64.497375 +20926;6;-0.5313994;-0.28318653;0.016116615 +20926;7;0.859705;-0.4865568;0.15546681;0.0;0.5105566;0.82776135;-0.23268692;0.0;-0.01547402 +20926;0;-0.16233826;2.921875;10.10524 +20926;3;-0.35816956;-0.24339294;0.115478516 +20927;12;0.19262916;0.055655822;0.2361651;0.9508011 +20928;0;-0.09068298;2.9123688;10.143387 +20928;1;-0.13106896;3.836715;9.027655 +20929;2;0.08222188;0.92836547;-1.0242367; +20929;3;-0.30929565;-0.23484802;0.1081543 +20931;12;0.191839;0.05480348;0.23638202;0.9509563 +20931;0;-0.033355713;2.9076233;10.129074 +20931;3;-0.260437;-0.22262573;0.10081482 +20933;0;0.009643555;2.9171143;10.10524 +20933;1;-0.11910571;3.822954;9.033656 +20933;3;-0.2091217;-0.20491028;0.0922699 +20935;4;11.8927;1.8096924;-64.19678 +20935;6;-0.5490185;-0.2810332;-9.5431204E-4 +20935;7;0.85317487;-0.5013777;0.14392021;0.0;0.52162415;0.8195719;-0.23708643;0.0;9.1687357E-4 +20936;0;0.03831482;2.9646301;10.05278 +20936;3;-0.15963745;-0.18231201;0.08370972 +20937;12;0.19126035;0.054042365;0.23654889;0.951075 +20938;0;0.057418823;2.988388;9.990768 +20938;1;-0.10890148;3.8136377;9.037722 +20938;3;-0.10650635;-0.15971375;0.07699585 +20940;0;0.10517883;3.0549011;9.947845 +20940;12;0.19089603;0.053426526;0.23669043;0.9511478 +20941;3;-0.057632446;-0.12916565;0.06906128 +20942;0;0.1529541;3.1166687;9.881073 +20942;1;-0.10100448;3.808908;9.039808 +20943;3;-0.008773804;-0.095565796;0.06111145 +20945;4;12.042236;1.6586304;-65.097046 +20945;6;-0.55377734;-0.30550674;-0.015478267 +20945;7;0.8528904;-0.5015516;0.14499612;0.0;0.5218813;0.8111594;-0.26393273;0.0;0.014760952 +20945;0;0.1577301;3.1309204;9.795227 +20945;3;0.03704834;-0.062576294;0.055007935 +20946;12;0.19074492;0.0529856;0.23680758;0.95117354 +20947;0;0.1434021;3.1594238;9.690308 +20947;1;-0.09618753;3.8084674;9.040046 +20948;2;-0.21353346;0.8083179;-0.92211056; +20948;3;0.07736206;-0.027755737;0.04827881 +20950;0;0.1529541;3.2496948;9.642624 +20950;3;0.11401367;0.006439209;0.044006348 +20950;12;0.19078219;0.052757803;0.23690775;0.9511538 +20952;0;0.1434021;3.3067017;9.504303 +20952;1;-0.09455352;3.8117678;9.0386715 +20952;3;0.14700317;0.040649414;0.038513184 +20954;4;11.593628;1.2084961;-64.94751 +20954;6;-0.5110465;-0.33478197;-0.01508698 +20954;7;0.8745582;-0.46193695;0.14751995;0.0;0.4847111;0.82380843;-0.29392973;0.0;0.01424884 +20955;0;0.1338501;3.3732147;9.327835 +20955;3;0.17021179;0.06997681;0.034240723 +20956;12;0.19097863;0.05273958;0.23699138;0.95109457 +20957;0;0.10517883;3.4682465;9.213379 +20958;1;-0.09598642;3.8180745;9.035995 +20958;3;0.19404602;0.097457886;0.031173706 +20959;0;0.09562683;3.5109863;9.089371 +20960;12;0.19129346;0.052919857;0.23708327;0.9509983 +20960;3;0.21115112;0.1194458;0.027511597 +20960;5;999.58875 +20962;0;0.062194824;3.5822601;8.946289 +20962;1;-0.09989466;3.8265336;9.032373 +20962;3;0.2227478;0.1377716;0.02507019 +20964;4;13.243103;1.5090942;-64.19678 +20964;6;-0.4971342;-0.3808588;-0.006951913 +20964;7;0.880164;-0.44273606;0.17116082;0.0;0.47462577;0.81597215;-0.33003;0.0;0.006453727 +20964;0;0.04786682;3.6487732;8.822296 +20965;3;0.23069763;0.1524353;0.022018433 +20965;12;0.19169065;0.053255662;0.23717667;0.95087636 +20969;9;2AEC2AEBC4E1;-63;-2147483648 +20969;0;0.019195557;3.6962738;8.70784 +20969;3;0.23130798;0.16099548;0.018966675 +20970;2;-0.23939095;0.3873415;-0.14215946; +20970;1;-0.10554666;3.8362925;9.028169 +20970;0;-0.033355713;3.7437897;8.588608 +20972;12;0.19213235;0.05369829;0.23726912;0.9507392 +20972;3;0.23008728;0.16404724;0.01713562 +20972;0;-0.06201172;3.7913055;8.464584 +20974;3;0.22273254;0.16343689;0.0140686035 +20974;1;-0.112199515;3.846507;9.023741 +20974;4;11.8927;1.5090942;-62.997437 +20974;6;-0.3983267;-0.42109796;0.0073258895 +20974;7;0.9205251;-0.35399196;0.16529754;0.0;0.39062625;0.84119123;-0.37390965;0.0;-0.006685845 +20974;0;-0.038131714;3.8245544;8.35968 +20974;3;0.21296692;0.15977478;0.007965088 +20975;12;0.1925865;0.054192737;0.23734945;0.9505992 +20977;1;-0.11886998;3.8563015;9.019474 +20977;0;-0.033355713;3.8815765;8.278595 +20977;3;0.19830322;0.1512146;0.0030822754 +20979;0;-0.023803711;3.9005737;8.187988 +20979;3;0.18363953;0.14143372;-5.950928E-4 +20979;12;0.19301827;0.0546798;0.23742071;0.95046604 +20981;1;-0.12504962;3.8651187;9.015615 +20982;0;-0.047683716;3.9955902;8.149826 +20982;3;0.16470337;0.13044739;-0.004257202 +20984;9;52ADB5BC186F;-88;-2147483648 +20985;4;13.093567;2.4093628;-63.597107 +20985;6;-0.3987683;-0.45582414;0.005850821 +20985;7;0.9205241;-0.34863928;0.17631221;0.0;0.39065042;0.82744944;-0.40338543;0.0;-0.0052534137 +20985;0;-0.100234985;4.0336;8.106903 +20985;3;0.14454651;0.12007141;-0.009140015 +20985;12;0.19340608;0.05512689;0.23746496;0.9503503 +20986;0;-0.095443726;4.090622;8.059219 +20986;2;-0.11511955;-0.005685091;0.724555; +20986;1;-0.13054998;3.8725398;9.012352 +20986;3;0.1237793;0.109069824;-0.013412476 +20988;0;-0.11456299;4.1286316;7.997223 +20988;12;0.19373032;0.055513177;0.23748523;0.9502566 +20989;3;0.10240173;0.09806824;-0.018295288 +20990;0;-0.11933899;4.1713715;7.906601 +20991;3;0.08163452;0.08830261;-0.023803711 +20992;1;-0.13530649;3.8783426;9.009787 +20993;4;12.792969;1.3595581;-63.89618 +20993;6;-0.36338496;-0.48542106;0.015092444 +20993;7;0.93208975;-0.31437922;0.17992903;0.0;0.36198142;0.82672125;-0.43069872;0.0;-0.013348435 +20993;0;-0.11933899;4.133362;7.8731995 +20994;3;0.059631348;0.07546997;-0.029296875 +20994;12;0.19397807;0.055832665;0.23747636;0.9501896 +20995;0;-0.12411499;4.176132;7.844589 +20996;1;-0.13932861;3.8823652;9.007994 +20996;3;0.039474487;0.0663147;-0.032333374 +20998;0;-0.147995;4.176132;7.8255157 +20998;12;0.19414271;0.056086082;0.23744161;0.9501497 +20999;3;0.019317627;0.057144165;-0.03540039 +20999;5;999.58875 +21000;0;-0.15278625;4.2188873;7.815979 +21000;1;-0.1426565;3.8846745;9.006946 +21000;3;-8.392334E-4;0.046157837;-0.03845215 +21003;4;13.093567;1.9592285;-65.097046 +21003;6;-0.34627393;-0.4948809;0.019545447 +21003;7;0.9373139;-0.29867643;0.17954127;0.0;0.3480616;0.8277904;-0.4400185;0.0;-0.017199391 +21003;0;-0.17666626;4.223633;7.8350525 +21003;3;-0.020980835;0.040649414;-0.040893555 +21003;12;0.1942266;0.05627624;0.23738584;0.9501353 +21005;1;-0.14534132;3.8852806;9.00664 +21005;2;-0.041959748;-0.27066064;1.1310244; +21005;0;-0.18144226;4.2378845;7.806427 +21005;3;-0.0393219;0.033935547;-0.042114258 +21007;0;-0.171875;4.214142;7.7969055 +21008;12;0.1942292;0.056405462;0.23731355;0.95014507 +21008;3;-0.060699463;0.030273438;-0.04272461 +21010;0;-0.20533752;4.233139;7.8207397 +21010;1;-0.14760117;3.8841972;9.0070715 +21010;3;-0.08024597;0.02720642;-0.045166016 +21012;4;13.093567;1.3595581;-64.34631 +21012;6;-0.34253064;-0.4959725;0.026249481 +21012;7;0.93738806;-0.29540136;0.18450376;0.0;0.34752086;0.8284138;-0.43927196;0.0;-0.023083935 +21012;0;-0.21966553;4.2378845;7.811203 +21012;3;-0.097351074;0.024154663;-0.04272461 +21013;12;0.19414863;0.05648995;0.23723178;0.95017695 +21014;0;-0.21966553;4.233139;7.8350525 +21014;1;-0.14965597;3.8814468;9.008224 +21015;3;-0.113845825;0.020492554;-0.04272461 +21017;0;-0.23399353;4.233139;7.8350525 +21018;12;0.19398221;0.05653979;0.23715146;0.95022815 +21018;3;-0.12850952;0.018051147;-0.04333496 +21019;0;-0.23399353;4.2473907;7.892288 +21020;1;-0.15143439;3.8772826;9.009986 +21020;3;-0.14376831;0.01499939;-0.04272461 +21022;4;13.392639;1.05896;-63.146973 +21023;6;-0.3554282;-0.49353182;0.029639693 +21023;7;0.93220013;-0.30646425;0.19256802;0.0;0.36100087;0.8256214;-0.43362138;0.0;-0.026098823 +21023;12;0.19374493;0.056557436;0.23707433;0.9502946 +21023;0;-0.26264954;4.2473907;7.8779755 +21023;3;-0.1572113;0.013168335;-0.042114258 +21024;0;-0.25309753;4.209381;7.9208984 +21024;1;-0.15300967;3.8718216;9.012308 +21025;2;0.033747405;-0.3350873;1.1520071; +21025;3;-0.1694336;0.010726929;-0.041503906 +21026;0;-0.25787354;4.2616425;7.944748 +21027;12;0.1934419;0.056546185;0.23700024;0.9503756 +21027;3;-0.18041992;0.006439209;-0.03967285 +21029;0;-0.30085754;4.2283936;7.978134 +21029;3;-0.1902008;0.002166748;-0.041503906 +21029;1;-0.15434046;3.865293;9.015087 +21031;4;13.243103;1.8096924;-62.547302 +21031;6;-0.33657542;-0.48706293;0.0376924 +21031;7;0.93739605;-0.29185152;0.19003013;0.0;0.34666955;0.83412737;-0.42901266;0.0;-0.033301316 +21031;0;-0.27697754;4.223633;8.006744 +21032;3;-0.19998169;-0.003326416;-0.042114258 +21032;12;0.19308396;0.056509;0.23692882;0.95046836 +21034;0;-0.28652954;4.233139;8.068741 +21034;3;-0.20669556;-0.010040283;-0.04272461 +21034;1;-0.15529586;3.857831;9.018267 +21036;0;-0.30085754;4.1951294;8.09259 +21037;12;0.1926818;0.056439728;0.2368551;0.9505725 +21037;3;-0.21463013;-0.015533447;-0.045166016 +21038;5;999.58875 +21039;0;-0.2960968;4.223633;8.173676 +21039;1;-0.1557821;3.84962;9.021766 +21039;3;-0.22319031;-0.02104187;-0.04699707 +21041;4;12.792969;1.3595581;-64.34631 +21041;6;-0.326014;-0.47667927;0.036209825 +21041;7;0.9413856;-0.28456706;0.1811484;0.0;0.3357953;0.8417219;-0.4227836;0.0;-0.032166254 +21041;0;-0.3104248;4.1951294;8.226135 +21041;3;-0.22868347;-0.024093628;-0.048843384 +21042;12;0.19224708;0.056334283;0.23677301;0.9506871 +21043;0;-0.28652954;4.185623;8.2642975 +21043;1;-0.1559116;3.8406003;9.025607 +21044;2;0.09584792;-0.35459495;0.9206209; +21044;3;-0.2341919;-0.02897644;-0.053115845 +21047;12;0.1917752;0.05619659;0.23667927;0.950814 +21047;0;-0.2960968;4.166626;8.321533 +21047;3;-0.23968506;-0.031417847;-0.05555725 +21048;0;-0.3104248;4.190384;8.38353 +21048;1;-0.15582964;3.8310921;9.029649 +21048;3;-0.24273682;-0.035079956;-0.057998657 +21050;4;12.792969;1.6586304;-63.89618 +21050;6;-0.33195564;-0.4632419;0.037011027 +21050;7;0.93937093;-0.29154626;0.18050806;0.0;0.34130132;0.84576905;-0.41010755;0.0;-0.03310282 +21051;0;-0.27697754;4.185623;8.407364 +21051;3;-0.24517822;-0.03692627;-0.06288147 +21051;12;0.19128327;0.056038;0.23656599;0.95095056 +21053;0;-0.3199768;4.166626;8.478897 +21053;1;-0.15559451;3.8212285;9.033832 +21053;3;-0.24822998;-0.04058838;-0.064712524 +21055;0;-0.3104248;4.176132;8.54567 +21056;12;0.19077337;0.05586598;0.23644046;0.9510943 +21056;3;-0.251297;-0.04058838;-0.06838989 +21064;12;0.19024889;0.0556811;0.23629999;0.9512451 +21064;1;-0.15527801;3.811037;9.038141 +21064;1;-0.15525152;3.800647;9.042516 +21064;2;0.11136213;-0.34904885;0.5161934; +21064;0;-0.3056488;4.1713715;8.607666 +21064;3;-0.2518921;-0.03753662;-0.072052 +21064;4;13.093567;1.9592285;-64.64691 +21064;6;-0.34396103;-0.45101374;0.035493992 +21064;7;0.9356173;-0.30349877;0.18030164;0.0;0.3515681;0.84728897;-0.39812195;0.0;-0.031938087 +21064;0;-0.30085754;4.1713715;8.688751 +21064;3;-0.2531128;-0.035079956;-0.07388306 +21064;0;-0.3104248;4.142868;8.698288 +21064;3;-0.2543335;-0.0320282;-0.07632446 +21065;0;-0.34864807;4.1476135;8.750748 +21065;12;0.18971135;0.055508185;0.23614697;0.9514006 +21072;3;-0.2531128;-0.030807495;-0.07815552 +21072;1;-0.1555809;3.790162;9.04691 +21072;0;-0.36775208;4.1523743;8.779373 +21072;3;-0.24945068;-0.030197144;-0.08242798 +21072;4;13.542175;3.7597656;-65.24658 +21072;6;-0.33034757;-0.4414515;0.041863717 +21072;7;0.9393007;-0.29327512;0.17805575;0.0;0.34100196;0.85524577;-0.39022103;0.0;-0.037839293 +21072;0;-0.36297607;4.1713715;8.84137 +21072;3;-0.24761963;-0.02897644;-0.08425903 +21072;12;0.1891666;0.05534882;0.23598178;0.9515593 +21072;0;-0.41552734;4.142868;8.884293 +21072;1;-0.15613341;3.7798605;9.0512085 +21073;3;-0.24517822;-0.02897644;-0.0867157 +21074;0;-0.4298401;4.1523743;8.979691 +21075;12;0.18862708;0.0552028;0.23580655;0.95171833 +21075;3;-0.24090576;-0.029586792;-0.089767456 +21076;5;999.58875 +21077;0;-0.48718262;4.11911;9.017838 +21077;1;-0.15687068;3.769705;9.05543 +21077;3;-0.2341919;-0.030807495;-0.09037781 +21079;4;13.693237;3.3096313;-65.097046 +21079;6;-0.3236541;-0.4279221;0.053971864 +21079;7;0.9395794;-0.28935596;0.18293032;0.0;0.338794;0.8625912;-0.37570575;0.0;-0.04908138 +21080;0;-0.5445099;4.133362;9.079834 +21080;3;-0.22807312;-0.029586792;-0.09037781 +21080;12;0.18809396;0.05506764;0.23561853;0.95187825 +21082;1;-0.15772888;3.760037;9.059434 +21082;0;-0.5683899;4.1523743;9.079834 +21082;2;0.24646427;-0.36575747;0.123496056; +21082;3;-0.22441101;-0.029586792;-0.08610535 +21085;0;-0.59706116;4.214142;9.122772 +21085;12;0.1875898;0.054942813;0.23542266;0.9520334 +21085;3;-0.2195282;-0.028366089;-0.07876587 +21087;0;-0.63526917;4.199875;9.127518 +21088;1;-0.15856692;3.7508311;9.063235 +21088;3;-0.21463013;-0.027755737;-0.077545166 +21089;4;13.243103;2.2598267;-64.497375 +21089;6;-0.28986767;-0.43033198;0.06948728 +21089;7;0.9476901;-0.2597659;0.18548556;0.0;0.31289208;0.87091243;-0.37895876;0.0;-0.06310113 +21089;0;-0.63049316;4.190384;9.16568 +21089;3;-0.20974731;-0.029586792;-0.07571411 +21090;12;0.18710636;0.054825008;0.23524141;0.95218015 +21091;1;-0.15933926;3.7420025;9.06687 +21092;0;-0.6495819;4.1523743;9.156143 +21092;3;-0.20547485;-0.0332489;-0.07510376 +21095;0;-0.6687012;4.123871;9.203827 +21095;12;0.18664157;0.054711927;0.23507424;0.9523191 +21095;3;-0.20059204;-0.03630066;-0.07510376 +21097;1;-0.15983988;3.7335145;9.07036 +21097;0;-0.65437317;4.1571198;9.237228 +21097;3;-0.19570923;-0.04119873;-0.07571411 +21101;4;12.643433;2.859497;-65.24658 +21101;6;-0.2637571;-0.42195106;0.07072271 +21101;7;0.9554591;-0.23784319;0.17472443;0.0;0.2879968;0.8807422;-0.37596706;0.0;-0.06446596 +21101;0;-0.63526917;4.185623;9.21814 +21102;3;-0.1889801;-0.04486084;-0.077545166 +21102;12;0.18620288;0.054588523;0.23490678;0.9524534 +21102;0;-0.5779419;4.199875;9.265839 +21102;1;-0.15992858;3.725547;9.073634 +21103;3;-0.18348694;-0.047302246;-0.07937622 +21103;2;0.43607873;-0.43266082;-0.12231922; +21105;0;-0.5540619;4.2283936;9.275375 +21105;3;-0.17553711;-0.046081543;-0.08425903 +21106;12;0.18579622;0.054448143;0.23473169;0.952584 +21106;1;-0.15985751;3.7181454;9.076671 +21106;0;-0.5301666;4.2046356;9.299225 +21106;3;-0.16882324;-0.04547119;-0.08732605 +21108;4;14.743042;1.6586304;-64.34631 +21108;6;-0.37259334;-0.42403087;0.056950267 +21108;7;0.9213512;-0.3317926;0.20254771;0.0;0.38525385;0.84890085;-0.36186564;0.0;-0.05187858 +21108;0;-0.5206146;4.2046356;9.342148 +21108;3;-0.16149902;-0.046081543;-0.09220886 +21109;12;0.1854195;0.05430584;0.23454207;0.9527122 +21110;0;-0.49195862;4.185623;9.313538 +21111;1;-0.15991226;3.7112782;9.079479 +21111;3;-0.15415955;-0.046691895;-0.09770203 +21113;0;-0.5158386;4.1381226;9.284912 +21114;12;0.18507056;0.05417458;0.23433179;0.95283926 +21114;3;-0.14195251;-0.046691895;-0.101989746 +21114;5;999.58875 +21115;0;-0.5253906;4.142868;9.289688 +21116;1;-0.1601282;3.7051592;9.081974 +21120;3;-0.13278198;-0.04852295;-0.10687256 +21120;4;13.093567;1.6586304;-66.596985 +21120;6;-0.3121074;-0.41889903;0.05649614 +21120;7;0.94311756;-0.28051528;0.17843902;0.0;0.32843328;0.86940306;-0.36914763;0.0;-0.051583882 +21120;0;-0.49671936;4.1523743;9.227692 +21120;3;-0.12055969;-0.050964355;-0.11236572 +21120;12;0.18476266;0.05405705;0.23409696;0.9529634 +21125;0;-0.46328735;4.2046356;9.251541 +21125;2;0.3178357;-0.46383715;-0.20980549; +21125;3;-0.11077881;-0.054641724;-0.11602783 +21125;12;0.18450823;0.05394816;0.23383766;0.95308256 +21125;1;-0.16033022;3.7000723;9.084044 +21125;0;-0.49671936;4.1476135;9.270599 +21125;3;-0.09857178;-0.058914185;-0.12213135 +21125;0;-0.5683899;4.1713715;9.280151 +21125;3;-0.089416504;-0.06074524;-0.12397766 +21125;1;-0.16045532;3.695835;9.085767 +21127;4;13.693237;3.6087036;-63.89618 +21127;6;-0.31713006;-0.42173338;0.0611715 +21127;7;0.9405535;-0.28451777;0.18549594;0.0;0.33503443;0.86688435;-0.36913905;0.0;-0.0557769 +21128;0;-0.48239136;4.1523743;9.270599 +21128;3;-0.077804565;-0.06562805;-0.12702942 +21128;12;0.18430202;0.053840343;0.23354523;0.9532003 +21129;0;-0.5015106;4.190384;9.242004 +21130;1;-0.16036165;3.692566;9.087098 +21130;3;-0.064971924;-0.071121216;-0.12702942 +21132;0;-0.46806335;4.1713715;9.251541 +21132;12;0.18415068;0.053731646;0.23323637;0.95331126 +21132;3;-0.053970337;-0.07418823;-0.12580872 +21134;0;-0.42507935;4.223633;9.251541 +21135;1;-0.15980941;3.6903827;9.087995 +21135;3;-0.041763306;-0.07846069;-0.12519836 +21138;4;12.942505;2.2598267;-65.69672 +21138;6;-0.3238467;-0.42787516;0.045914575 +21138;7;0.94095886;-0.28952834;0.17541333;0.0;0.33593532;0.862554;-0.37834913;0.0;-0.041760676 +21139;12;0.18406233;0.05361088;0.23291895;0.9534127 +21139;0;-0.40119934;4.209381;9.294464 +21140;2;0.27593687;-0.479321;-0.18519402; +21140;1;-0.15888633;3.6892202;9.088483 +21140;3;-0.030761719;-0.08029175;-0.12580872 +21140;0;-0.40119934;4.223633;9.265839 +21140;3;-0.019760132;-0.0809021;-0.12519836 +21146;1;-0.15784097;3.6889424;9.0886135 +21146;0;-0.36297607;4.199875;9.275375 +21146;3;-0.011230469;-0.08029175;-0.12641907 +21146;0;-0.32476807;4.185623;9.261063 +21146;3;-0.0020599365;-0.082733154;-0.12763977 +21146;12;0.18403119;0.053485353;0.23259804;0.9535041 +21146;4;11.743164;3.6087036;-64.64691 +21146;6;-0.30526966;-0.42425147;0.035053756 +21146;7;0.94884413;-0.2739057;0.1570684;0.0;0.31412524;0.8692118;-0.38183257;0.0;-0.031939596 +21146;0;-0.3152008;4.214142;9.237228 +21147;3;0.00894165;-0.08395386;-0.13069153 +21147;12;0.18405;0.05336121;0.23225534;0.9535909 +21148;0;-0.2722168;4.185623;9.256302 +21149;1;-0.15667073;3.689507;9.088405 +21149;3;0.018707275;-0.08395386;-0.13313293 +21151;0;-0.22442627;4.209381;9.242004 +21152;12;0.18411306;0.053241808;0.23192082;0.95366687 +21152;3;0.030319214;-0.08395386;-0.13619995 +21152;5;999.59595 +21153;0;-0.26742554;4.199875;9.280151 +21154;3;0.038253784;-0.08517456;-0.13986206 +21154;1;-0.15550941;3.6909826;9.087826 +21156;4;13.093567;3.0090332;-63.89618 +21156;6;-0.36742496;-0.42482933;0.028808964 +21156;7;0.9286034;-0.32728264;0.17487629;0.0;0.37014437;0.85029745;-0.37414873;0.0;-0.026244476 +21157;0;-0.18621826;4.1713715;9.284912 +21157;3;0.046188354;-0.08395386;-0.14289856 +21157;12;0.1842225;0.05313336;0.23157108;0.9537368 +21159;0;-0.17666626;4.2046356;9.323074 +21159;1;-0.1543488;3.693191;9.086947 +21159;2;0.078942746;-0.48658514;-0.19041729; +21159;3;0.051696777;-0.08517456;-0.14657593 +21161;0;-0.16233826;4.2046356;9.284912 +21161;12;0.18437392;0.053032037;0.23120177;0.9538027 +21161;3;0.059020996;-0.08456421;-0.14901733 +21163;0;-0.17666626;4.176132;9.289688 +21164;1;-0.15328394;3.695965;9.085838 +21164;3;0.062072754;-0.08639526;-0.15267944 +21165;4;12.193298;2.859497;-64.497375 +21165;6;-0.35989475;-0.42240784;0.019015169 +21166;7;0.9330195;-0.32122108;0.16214697;0.0;0.35940763;0.8536695;-0.3769278;0.0;-0.017342774 +21166;0;-0.13366699;4.1951294;9.313538 +21167;12;0.18455318;0.05293855;0.23081285;0.9538675 +21167;3;0.06636047;-0.08822632;-0.15634155 +21168;0;-0.171875;4.2711487;9.289688 +21168;1;-0.15221287;3.699156;9.084558 +21168;3;0.06941223;-0.090667725;-0.15696716 +21170;0;-0.20533752;4.199875;9.280151 +21171;12;0.1847554;0.052851442;0.23041144;0.9539302 +21171;3;0.07307434;-0.09188843;-0.15940857 +21173;0;-0.24354553;4.252136;9.313538 +21173;1;-0.15113434;3.7026393;9.083157 +21174;3;0.0761261;-0.095565796;-0.16122437 +21175;4;12.042236;2.708435;-64.64691 +21175;6;-0.33815184;-0.42816204;0.026143668 +21175;7;0.9394464;-0.30179775;0.16235325;0.0;0.34186974;0.8582118;-0.38288057;0.0;-0.023780981 +21177;0;-0.22921753;4.252136;9.332611 +21177;3;0.07795715;-0.095565796;-0.16307068 +21178;9;2AEC2AEBC4E1;-58;-2147483648 +21179;12;0.1849743;0.05276378;0.22999835;0.9539923 +21179;0;-0.21009827;4.256897;9.337372 +21179;1;-0.14993697;3.7063794;9.081651 +21179;2;0.008825228;-0.50425005;-0.23043633; +21180;3;0.0773468;-0.095565796;-0.16307068 +21180;0;-0.23876953;4.2426453;9.370773 +21181;12;0.18520723;0.052670226;0.2295737;0.9540546 +21181;3;0.078567505;-0.09373474;-0.16062927 +21182;0;-0.20533752;4.256897;9.38031 +21184;1;-0.1487735;3.71015;9.08013 +21184;3;0.07795715;-0.09007263;-0.16000366 +21187;12;0.18544383;0.05257604;0.22914168;0.9541177 +21187;4;12.042236;2.708435;-64.64691 +21187;6;-0.34809726;-0.4259293;0.021886775 +21187;7;0.936714;-0.31063342;0.16147408;0.0;0.34952798;0.85603726;-0.3808287;0.0;-0.019929713 +21187;0;-0.20054626;4.2711487;9.361221 +21187;3;0.07795715;-0.08578491;-0.15940857 +21187;0;-0.20054626;4.290146;9.361221 +21187;1;-0.14784855;3.7139378;9.078597 +21187;3;0.0761261;-0.08151245;-0.15756226 +21189;0;-0.21487427;4.3091583;9.38031 +21190;12;0.18567704;0.052498806;0.22872587;0.95417637 +21190;3;0.07673645;-0.07601929;-0.15512085 +21191;5;999.59595 +21192;0;-0.23876953;4.3091583;9.38031 +21192;1;-0.14730056;3.717678;9.077075 +21192;3;0.074905396;-0.06929016;-0.15330505 +21194;4;13.693237;3.6087036;-65.84625 +21194;6;-0.37084344;-0.43050683;0.025448838 +21194;7;0.9278718;-0.3293341;0.17490897;0.0;0.3721819;0.8469791;-0.37961447;0.0;-0.023124244 +21194;0;-0.27697754;4.280655;9.418457 +21195;3;0.07246399;-0.061965942;-0.15267944 +21195;12;0.18590002;0.052443072;0.2283214;0.9542329 +21197;0;-0.30085754;4.313904;9.456619 +21198;1;-0.14734757;3.721253;9.075608 +21198;2;0.054656833;-0.5487361;-0.31947994; +21198;3;0.07246399;-0.054641724;-0.15267944 +21199;0;-0.28652954;4.280655;9.404144 +21199;12;0.18610846;0.05241637;0.22793029;0.9542872 +21200;3;0.07307434;-0.04547119;-0.14962769 +21201;0;-0.27697754;4.313904;9.423233 +21202;1;-0.14803189;3.724796;9.074144 +21202;3;0.07246399;-0.03753662;-0.14901733 +21205;4;13.693237;3.6087036;-65.84625 +21205;6;-0.36414295;-0.42915347;0.029384587 +21205;7;0.92967194;-0.32385242;0.17558374;0.0;0.36741844;0.8496937;-0.37818554;0.0;-0.0267161 +21205;12;0.1863074;0.052423965;0.22754885;0.95433897 +21206;0;-0.3152008;4.299652;9.394608 +21206;3;0.07185364;-0.030197144;-0.14718628 +21207;1;-0.14946228;3.7283297;9.072669 +21207;0;-0.39163208;4.2949066;9.346909 +21208;3;0.071243286;-0.02470398;-0.14779663 +21209;0;-0.41552734;4.2711487;9.413681 +21210;3;0.07307434;-0.022872925;-0.14718628 +21210;12;0.18649386;0.052473776;0.2271818;0.9543872 +21211;0;-0.45851135;4.256897;9.4470825 +21212;1;-0.15142792;3.7317896;9.071215 +21212;3;0.074295044;-0.018600464;-0.14779663 +21214;4;12.792969;3.3096313;-63.89618 +21214;6;-0.31741822;-0.42291597;0.04849665 +21214;7;0.94271743;-0.28461623;0.17400384;0.0;0.33065015;0.86634165;-0.37432936;0.0;-0.044206567 +21214;0;-0.48239136;4.2188873;9.451843 +21214;3;0.07368469;-0.011871338;-0.14718628 +21215;12;0.18666928;0.052549243;0.22682005;0.9544348 +21216;0;-0.5253906;4.223633;9.4375305 +21216;1;-0.15385202;3.7352657;9.069742 +21217;2;0.2082513;-0.5215204;-0.35117817; +21217;3;0.07307434;-0.00881958;-0.14657593 +21218;0;-0.5874939;4.2378845;9.38031 +21219;12;0.18684328;0.052650757;0.22646074;0.9544805 +21220;3;0.07307434;-0.0057678223;-0.14230347 +21221;1;-0.15671568;3.7387507;9.068257 +21221;0;-0.64482117;4.252136;9.399368 +21222;3;0.07368469;-0.003326416;-0.14108276 +21223;4;12.792969;3.3096313;-63.89618 +21223;6;-0.27619478;-0.42395487;0.06849529 +21223;7;0.9521663;-0.24855456;0.17776352;0.0;0.29914486;0.8769245;-0.3761857;0.0;-0.062382538 +21224;0;-0.63526917;4.1951294;9.370773 +21224;3;0.074905396;-8.69751E-4;-0.13801575 +21225;12;0.18701008;0.05277332;0.22610855;0.9545246 +21225;0;-0.67349243;4.2046356;9.356461 +21226;1;-0.15976925;3.7422485;9.066761 +21226;3;0.0773468;-0.003326416;-0.13557434 +21228;0;-0.71170044;4.2046356;9.385086 +21229;3;0.08163452;-0.003326416;-0.13435364 +21229;12;0.18717556;0.052909683;0.2257715;0.9545644 +21230;5;999.59595 +21231;1;-0.16277103;3.7459533;9.065177 +21231;0;-0.7260437;4.1713715;9.342148 +21231;3;0.08407593;-0.0039367676;-0.13191223 +21233;4;12.342834;3.9093018;-67.04712 +21233;6;-0.22445627;-0.4188289;0.0775611 +21233;7;0.9649705;-0.20333812;0.16578731;0.0;0.25262848;0.8906493;-0.37805116;0.0;-0.070786156 +21234;0;-0.73558044;4.1523743;9.332611 +21234;12;0.18735166;0.053045996;0.22544329;0.95459986 +21235;3;0.08773804;-0.00881958;-0.13374329 +21235;1;-0.16563453;3.749895;9.063496 +21235;0;-0.74513245;4.123871;9.304001 +21236;2;0.4863335;-0.43057418;-0.3010502; +21236;3;0.09262085;-0.01737976;-0.13374329 +21238;0;-0.7499237;4.109619;9.323074 +21239;12;0.18754174;0.053178325;0.22511761;0.95463204 +21240;3;0.09933472;-0.025924683;-0.13496399 +21240;1;-0.16788298;3.7542107;9.061667 +21241;0;-0.76901245;4.11911;9.427994 +21241;3;0.107284546;-0.0332489;-0.13801575 +21242;4;12.342834;3.9093018;-67.04712 +21242;6;-0.21981615;-0.41069344;0.081386745 +21242;7;0.96562976;-0.19991806;0.16610807;0.0;0.24900484;0.89478266;-0.37062183;0.0;-0.074536614 +21243;0;-0.73080444;4.090622;9.423233 +21243;3;0.11338806;-0.0332489;-0.13864136 +21244;12;0.18775973;0.053278245;0.22476935;0.9546657 +21245;1;-0.16969088;3.759093;9.05961 +21245;0;-0.7738037;4.0716095;9.356461 +21246;3;0.119506836;-0.0320282;-0.13986206 +21247;0;-0.7594757;4.1048584;9.356461 +21248;12;0.18801574;0.053364716;0.22441573;0.9546936 +21249;3;0.1274414;-0.030197144;-0.13801575 +21250;0;-0.802475;4.0716095;9.304001 +21250;1;-0.17164655;3.7645712;9.057298 +21250;3;0.13294983;-0.027755737;-0.13801575 +21252;4;11.143494;2.708435;-64.34631 +21254;6;-0.19318803;-0.41115114;0.086037606 +21254;7;0.97117347;-0.17598853;0.16078018;0.0;0.22498333;0.8996089;-0.3742812;0.0;-0.07877008 +21254;0;-0.8072357;4.0145874;9.284912 +21254;3;0.14149475;-0.028366089;-0.13679504 +21254;12;0.18829843;0.053465746;0.22405946;0.9547159 +21254;9;52ADB5BC186F;-82;-2147483648 +21255;1;-0.17377923;3.7706058;9.054748 +21255;0;-0.835907;3.9908295;9.261063 +21255;2;0.5759784;-0.28928185;-0.29289055; +21255;3;0.14698792;-0.029586792;-0.13679504 +21257;0;-0.835907;3.9670868;9.242004 +21257;12;0.1886094;0.05358233;0.22370373;0.9547314 +21257;3;0.15431213;-0.030197144;-0.13801575 +21260;1;-0.17583255;3.7771466;9.051981 +21260;0;-0.8120117;3.9765778;9.265839 +21260;3;0.16104126;-0.029586792;-0.13619995 +21261;4;13.243103;2.2598267;-64.497375 +21261;6;-0.26567608;-0.40400898;0.08741168 +21261;7;0.9522205;-0.24142347;0.18705845;0.0;0.29467362;0.8872322;-0.35494566;0.0;-0.080272056 +21262;0;-0.816803;4.009842;9.237228 +21262;3;0.16897583;-0.028366089;-0.13252258 +21262;12;0.18895085;0.05369976;0.22334678;0.9547409 +21265;1;-0.17786524;3.7843442;9.048934 +21265;0;-0.816803;3.9860992;9.203827 +21265;3;0.17448425;-0.030197144;-0.12825012 +21269;12;0.18932733;0.053823374;0.22299685;0.9547412 +21269;0;-0.72125244;4.024109;9.179993 +21269;3;0.18241882;-0.029586792;-0.124572754 +21270;5;999.59595 +21270;1;-0.17954487;3.7921772;9.045621 +21270;0;-0.6495819;4.019348;9.13707 +21270;3;0.19036865;-0.027755737;-0.12031555 +21272;4;13.842773;3.7597656;-64.19678 +21272;6;-0.3033694;-0.41349033;0.07097361 +21272;7;0.9434206;-0.27356103;0.18740866;0.0;0.325178;0.87390774;-0.36130947;0.0;-0.06493769 +21272;0;-0.7785797;3.9813385;9.203827 +21272;3;0.19342041;-0.024093628;-0.11968994 +21272;12;0.18973659;0.053944767;0.2226636;0.95473087 +21273;0;-0.874115;3.9670868;9.16568 +21273;1;-0.18147215;3.8005137;9.042083 +21274;2;0.57952905;-0.17966104;-0.16768265; +21274;3;0.19647217;-0.02104187;-0.11909485 +21276;0;-0.874115;3.938568;9.160919 +21276;3;0.19769287;-0.020431519;-0.11785889 +21277;12;0.1901695;0.054089166;0.22234297;0.9547113 +21278;0;-0.845459;3.9575806;9.098923 +21278;1;-0.18365064;3.8090563;9.0384445 +21278;3;0.19952393;-0.020431519;-0.11541748 +21280;4;12.042236;1.9592285;-65.54718 +21280;6;-0.20728783;-0.40869865;0.092652544 +21280;7;0.96682805;-0.18885608;0.17197932;0.0;0.2409056;0.89799464;-0.36819854;0.0;-0.08489998 +21281;0;-0.835907;4.024109;9.08461 +21281;3;0.20013428;-0.020431519;-0.109313965 +21282;12;0.19061592;0.054245204;0.22202235;0.95468795 +21283;0;-0.826355;4.0811005;9.027374 +21283;3;0.20196533;-0.02104187;-0.100753784 +21283;1;-0.18569706;3.817864;9.034685 +21284;9;2AEC2AEBC4E1;-61;-2147483648 +21285;0;-0.855011;4.090622;9.022598 +21285;12;0.19107585;0.05440329;0.22172049;0.95465726 +21286;3;0.20318604;-0.021652222;-0.09403992 +21288;0;-0.89323425;4.1143646;9.079834 +21288;3;0.20257568;-0.021652222;-0.08732605 +21289;1;-0.18748888;3.826846;9.030848 +21290;4;11.593628;3.4591675;-64.19678 +21290;6;-0.17399935;-0.4236481;0.09806009 +21290;7;0.97320116;-0.15781786;0.16725162;0.0;0.21193016;0.8978306;-0.38598716;0.0;-0.089247935 +21290;0;-0.91711426;4.1381226;9.098923 +21290;3;0.20074463;-0.018600464;-0.081207275 +21291;12;0.19154353;0.054557536;0.22145116;0.95461714 +21292;0;-0.897995;4.1286316;9.079834 +21293;1;-0.18913434;3.8357978;9.027015 +21293;2;0.6537917;-0.21270657;-0.059711456; +21293;3;0.19708252;-0.01675415;-0.07449341 +21295;0;-0.859787;4.1523743;8.984451 +21295;12;0.1920123;0.05470691;0.22121271;0.95456976 +21295;3;0.19525146;-0.01675415;-0.069000244 +21298;0;-0.86935425;4.2378845;8.912918 +21298;1;-0.1906511;3.8446515;9.023215 +21298;3;0.19342041;-0.020431519;-0.064712524 +21300;4;12.193298;1.8096924;-64.94751 +21300;6;-0.19326991;-0.44200388;0.097231105 +21300;7;0.9687705;-0.17361042;0.1770403;0.0;0.2319139;0.8870671;-0.3991591;0.0;-0.08774842 +21300;12;0.19247906;0.05485587;0.22100094;0.95451623 +21302;0;-0.850235;4.3043976;8.927231 +21302;3;0.18913269;-0.025314331;-0.059829712 +21302;1;-0.1916808;3.853467;9.019432 +21302;0;-0.8072357;4.3519135;8.865219 +21302;3;0.18852234;-0.0320282;-0.05555725 +21305;0;-0.802475;4.437439;8.893829 +21306;12;0.19294763;0.054982748;0.220813;0.9544578 +21306;3;0.18424988;-0.041809082;-0.052505493 +21306;5;999.59595 +21307;0;-0.7642517;4.513443;8.917694 +21307;1;-0.19188417;3.8622231;9.015682 +21307;3;0.17997742;-0.049743652;-0.05189514 +21309;4;12.643433;2.859497;-64.497375 +21309;6;-0.21821068;-0.46706071;0.08549171 +21309;7;0.96439767;-0.19329676;0.18048123;0.0;0.25322762;0.8717217;-0.41949597;0.0;-0.07624221 +21309;0;-0.73080444;4.560959;8.903381 +21310;3;0.17570496;-0.05708313;-0.048843384 +21310;12;0.19342129;0.05506847;0.22063863;0.95439744 +21312;0;-0.6639252;4.646469;8.898605 +21312;1;-0.19118981;3.8707445;9.012042 +21312;2;0.5787983;-0.5206728;0.094641685; +21312;3;0.17019653;-0.063186646;-0.048217773 +21314;0;-0.6018219;4.727234;8.889069 +21314;12;0.1938949;0.055104602;0.22046728;0.9543388 +21315;3;0.16653442;-0.06867981;-0.046401978 +21316;0;-0.5301666;4.8317566;8.936752 +21317;1;-0.18971956;3.879032;9.008509 +21317;3;0.16287231;-0.07418823;-0.045776367 +21319;4;13.693237;3.3096313;-64.64691 +21319;6;-0.28214538;-0.49491063;0.059254855 +21319;7;0.95094377;-0.24500996;0.18888149;0.0;0.30494294;0.8452159;-0.43888503;0.0;-0.052114427 +21319;0;-0.47763062;4.9315186;8.917694 +21319;3;0.1579895;-0.07662964;-0.046401978 +21320;12;0.1943654;0.055098973;0.2202984;0.95428234 +21321;0;-0.40596008;5.059799;8.912918 +21321;1;-0.18765135;3.887196;9.005033 +21322;3;0.15615845;-0.079071045;-0.045776367 +21324;0;-0.32476807;5.140564;8.979691 +21324;12;0.19483595;0.055060737;0.22013173;0.95422715 +21324;3;0.15187073;-0.07723999;-0.044555664 +21326;0;-0.2817688;5.2070923;9.027374 +21326;1;-0.18524744;3.895249;9.001601 +21326;3;0.14637756;-0.07296753;-0.043945312 +21328;4;12.792969;2.708435;-65.54718 +21328;6;-0.295647;-0.52298385;0.031202579 +21328;7;0.9516082;-0.2524137;0.17529736;0.0;0.3061231;0.82874584;-0.46847513;0.0;-0.027027428 +21329;0;-0.23399353;5.3068542;9.051224 +21329;3;0.14027405;-0.062576294;-0.043945312 +21330;12;0.19530244;0.055006135;0.21996686;0.95417285 +21331;0;-0.18144226;5.35437;9.117996 +21331;1;-0.18316156;3.902901;8.998329 +21331;2;0.1735502;-1.1605303;0.015927315; +21332;3;0.13294983;-0.04852295;-0.044555664 +21333;0;-0.10499573;5.4161377;9.179993 +21334;12;0.1957413;0.054963008;0.21981348;0.9541209 +21334;3;0.123168945;-0.030807495;-0.043945312 +21336;0;-0.07635498;5.458893;9.256302 +21336;1;-0.18214406;3.9099119;8.995305 +21336;3;0.1103363;-0.00881958;-0.04333496 +21338;4;11.8927;1.8096924;-65.24658 +21338;6;-0.31579167;-0.53283286;0.0082487855 +21338;7;0.9492172;-0.26751536;0.16559693;0.0;0.31454146;0.8187774;-0.48027837;0.0;-0.007105188 +21339;0;-0.08590698;5.4969025;9.318314 +21339;3;0.09567261;0.015609741;-0.040283203 +21339;12;0.19613166;0.05497103;0.2196688;0.9540734 +21341;0;-0.047683716;5.5063934;9.40892 +21341;1;-0.18290578;3.9158156;8.992722 +21341;3;0.07551575;0.040649414;-0.03540039 +21343;0;-0.08590698;5.5539093;9.4375305 +21343;12;0.19644044;0.055063058;0.21956007;0.95402974 +21344;3;0.055358887;0.07058716;-0.03111267 +21345;5;999.59595 +21346;0;-0.100234985;5.577652;9.46138 +21346;1;-0.18578608;3.9201114;8.99079 +21346;3;0.03642273;0.1005249;-0.026229858 +21348;4;12.792969;1.3595581;-63.89618 +21348;6;-0.3452514;-0.53265184;0.0105937235 +21348;7;0.93911695;-0.2915479;0.18182181;0.0;0.34347647;0.81062883;-0.47424132;0.0;-0.009125935 +21348;0;-0.16711426;5.577652;9.4804535 +21348;3;0.01260376;0.12678528;-0.020736694 +21349;12;0.19663678;0.055254616;0.2194995;0.95399207 +21351;1;-0.19109651;3.9226317;8.98958 +21351;0;-0.21487427;5.558655;9.48999 +21351;2;-0.10386261;-1.592246;-0.39153194; +21352;3;-0.013061523;0.14938354;-0.016464233 +21353;0;-0.27697754;5.568161;9.561539 +21354;12;0.19670637;0.055558432;0.21949282;0.95396173 +21354;3;-0.03627014;0.167099;-0.013412476 +21355;1;-0.19832386;3.9228964;8.989308 +21356;0;-0.38208008;5.444641;9.690308 +21356;3;-0.061309814;0.1817627;-0.011581421 +21358;4;12.042236;2.4093628;-63.89618 +21358;6;-0.27605554;-0.51157504;0.039408684 +21358;7;0.95613384;-0.2376677;0.17123657;0.0;0.29090834;0.8389598;-0.45991158;0.0;-0.034354474 +21359;0;-0.38685608;5.411377;9.771393 +21360;3;-0.09246826;0.1988678;-0.010360718 +21360;12;0.19662681;0.055937424;0.21952589;0.9539483 +21360;1;-0.20693189;3.920694;8.990074 +21361;0;-0.4202881;5.35437;9.86676 +21361;3;-0.1242218;0.21170044;-0.006088257 +21363;12;0.19639982;0.056362584;0.21959598;0.9539539 +21363;0;-0.49195862;5.254593;9.9096985 +21363;3;-0.1572113;0.22085571;-0.0018157959 +21365;1;-0.2166658;3.915558;8.9920845 +21365;0;-0.5683899;5.2165833;9.928772 +21365;3;-0.19264221;0.22329712;0.0012512207 +21367;4;13.542175;2.2598267;-64.497375 +21367;6;-0.29577968;-0.48308778;0.05718433 +21367;7;0.9472731;-0.25812954;0.18984972;0.0;0.316405;0.8471093;-0.42695862;0.0;-0.050612837 +21367;0;-0.59706116;5.121567;9.966934 +21368;3;-0.22990417;0.21536255;0.0043029785 +21368;12;0.19600439;0.05681498;0.21970178;0.9539841 +21370;0;-0.6113739;5.050308;10.024155 +21370;1;-0.22648346;3.9072108;8.995472 +21370;2;0.2178955;-1.3941505;-0.84564114; +21370;3;-0.2665558;0.1988678;0.006134033 +21372;0;-0.6113739;4.9125214;10.176773 +21372;12;0.19543353;0.05723173;0.21983424;0.95404565 +21373;3;-0.3026123;0.17626953;0.0055236816 +21374;0;-0.6257019;4.7700043;10.367554 +21375;1;-0.23487553;3.8953419;9.000403 +21375;3;-0.34048462;0.15184021;0.00491333 +21377;4;11.29303;3.4591675;-65.69672 +21377;6;-0.23320343;-0.43052292;0.060278818 +21377;7;0.96535385;-0.21000743;0.15488322;0.0;0.25513706;0.8841489;-0.39138976;0.0;-0.05474507 +21378;0;-0.63049316;4.6417236;10.486786 +21378;3;-0.37835693;0.12432861;0.00491333 +21378;12;0.19469441;0.057517715;0.21990623;0.9541631 +21379;1;-0.24117215;3.8798883;9.006909 +21380;0;-0.6639252;4.52771;10.567856 +21380;3;-0.4143982;0.09379578;6.4086914E-4 +21382;0;-0.62094116;4.404175;10.677551 +21383;12;0.19379039;0.057660744;0.22002709;0.9543106 +21383;3;-0.4479828;0.061416626;-0.0036315918 +21385;5;999.59595 +21385;0;-0.62094116;4.256897;10.811081 +21385;3;-0.47853088;0.029647827;-0.009140015 +21385;1;-0.24493882;3.8609977;9.014922 +21387;4;13.093567;2.4093628;-64.64691 +21387;6;-0.3441502;-0.37454855;0.05737259 +21387;7;0.93273556;-0.31400606;0.1772131;0.0;0.35658994;0.87610054;-0.32448637;0.0;-0.053365827 +21387;0;-0.57315063;4.1143646;10.887405 +21387;3;-0.50541687;-0.002090454;-0.012802124 +21387;12;0.19273567;0.057623103;0.22011624;0.95450586 +21392;1;-0.24604084;3.8391376;9.024222 +21392;0;-0.5349426;4.009842;10.99231 +21392;3;-0.53289795;-0.031417847;-0.017700195 +21392;2;0.3424944;-0.61389756;-1.5979977; +21392;0;-0.48718262;3.8673248;11.1306305 +21394;3;-0.5518341;-0.059524536;-0.020736694 +21395;12;0.19155975;0.05740286;0.22016402;0.9547448 +21395;0;-0.46806335;3.7485352;11.254623 +21399;9;2AEC2AEBC4E1;-67;-2147483648 +21401;1;-0.24462633;3.814605;9.034659 +21402;3;-0.5664978;-0.08517456;-0.026229858 +21402;4;13.093567;2.708435;-63.597107 +21402;6;-0.42929733;-0.3212512;0.041564588 +21402;7;0.90301204;-0.39493805;0.16909549;0.0;0.42780238;0.8627418;-0.26955852;0.0;-0.039426833 +21403;0;-0.45373535;3.6297607;11.345245 +21403;12;0.19027582;0.05701466;0.22017157;0.955023 +21403;3;-0.5793152;-0.106552124;-0.029296875 +21403;0;-0.4202881;3.5394897;11.431107 +21403;3;-0.58665466;-0.12428284;-0.03479004 +21403;0;-0.37728882;3.4444885;11.493103 +21403;12;0.18894443;0.056495667;0.22014335;0.95532465 +21403;3;-0.58909607;-0.13894653;-0.037841797 +21404;1;-0.24114428;3.7886095;9.045684 +21404;0;-0.44418335;3.325714;11.569412 +21404;1;-0.23623218;3.761719;9.057029 +21404;3;-0.58299255;-0.15237427;-0.04333496 +21405;4;12.792969;2.4093628;-64.64691 +21405;6;-0.46995458;-0.27971506;0.03837406 +21405;7;0.886136;-0.4352455;0.15913592;0.0;0.46195585;0.8569364;-0.22859697;0.0;-0.036873564 +21406;0;-0.4202881;3.2877045;11.588486 +21407;12;0.18758608;0.055890538;0.22008087;0.95564234 +21407;3;-0.5677185;-0.1639862;-0.04762268 +21408;1;-0.23029205;3.7352085;9.068148 +21408;2;0.17467403;0.233145;-2.3634472; +21408;0;-0.3390808;3.2069397;11.621872 +21408;3;-0.54878235;-0.17558289;-0.05189514 +21411;0;-0.3199768;3.1309204;11.674332 +21411;12;0.18626364;0.055228442;0.2199846;0.9559616 +21411;3;-0.5237427;-0.18292236;-0.053726196 +21412;0;-0.25309753;3.078659;11.707718 +21413;1;-0.2234563;3.7102265;9.078568 +21413;3;-0.49075317;-0.18475342;-0.0549469 +21415;4;13.392639;3.3096313;-65.84625 +21415;6;-0.5389068;-0.25708097;0.021614641 +21415;7;0.8552496;-0.4963324;0.14900425;0.0;0.5177945;0.83006424;-0.20707983;0.0;-0.020902675 +21416;0;-0.21487427;3.0073853;11.750641 +21419;3;-0.45837402;-0.18658447;-0.057388306 +21419;12;0.18503575;0.054535322;0.21985598;0.9562693 +21419;0;-0.18621826;2.9646301;11.779251 +21419;1;-0.21629961;3.6877975;9.087875 +21420;3;-0.41989136;-0.18109131;-0.060440063 +21421;0;-0.12890625;2.8933716;11.722015 +21421;12;0.18394794;0.053857;0.21971105;0.9565509 +21422;3;-0.37651062;-0.16764832;-0.06654358 +21422;5;999.59595 +21422;0;-0.138443;2.8363647;11.621872 +21423;1;-0.2096865;3.6685946;9.0957985 +21423;3;-0.33070374;-0.15542603;-0.072052 +21425;4;12.643433;4.6585083;-65.69672 +21425;6;-0.53229606;-0.23935834;0.011911716 +21425;7;0.8601498;-0.49304402;0.13057573;0.0;0.5099103;0.83707887;-0.19821829;0.0;-0.011571843 +21425;0;-0.143219;2.7793427;11.540787 +21425;3;-0.27755737;-0.14320374;-0.07937622 +21426;12;0.18302518;0.053246893;0.21954434;0.95680034 +21427;0;-0.10978699;2.7033386;11.521713 +21428;1;-0.20437045;3.653398;9.102035 +21428;2;-0.039011493;0.7368772;-2.5663757; +21428;3;-0.2219696;-0.12609863;-0.0879364 +21429;0;-0.06678772;2.7223206;11.469254 +21430;12;0.18230079;0.05274582;0.21934898;0.95701116 +21430;3;-0.16271973;-0.103500366;-0.09648132 +21432;0;-0.08590698;2.6890717;11.445419 +21432;1;-0.20078799;3.6430514;9.10626 +21432;3;-0.105895996;-0.079071045;-0.10321045 +21434;4;10.392761;3.9093018;-65.84625 +21434;6;-0.48281032;-0.23075585;0.0075056553 +21434;7;0.8848718;-0.45196405;0.11282946;0.0;0.4657774;0.8622173;-0.1990797;0.0;-0.00730664 +21434;0;-0.100234985;2.6510773;11.350021 +21435;3;-0.04786682;-0.05340576;-0.11175537 +21435;12;0.18181671;0.0523735;0.219028;0.9571972 +21437;0;-0.033355713;2.665329;11.240326 +21437;1;-0.19957776;3.637723;9.108417 +21439;3;0.00831604;-0.027755737;-0.11909485 +21440;0;0.014419556;2.5798187;11.121094 +21441;3;0.06390381;-0.002090454;-0.12213135 +21441;12;0.18156675;0.05219209;0.21876803;0.957314 +21441;1;-0.2007457;3.6372654;9.108574 +21446;12;0.18154794;0.052192915;0.2184862;0.95738196 +21446;1;-0.2042014;3.6415458;9.106786 +21446;2;-0.18554631;1.0107636;-2.0664883; +21446;0;7.6293945E-5;2.5370483;11.006622 +21446;3;0.115219116;0.02293396;-0.12031555 +21447;4;12.042236;3.0090332;-65.097046 +21447;6;-0.6013003;-0.2265451;-6.93164E-6 +21447;7;0.8246016;-0.5512602;0.12706086;0.0;0.5657139;0.8035307;-0.18521935;0.0;6.7545243E-6 +21447;0;-0.0046844482;2.6225586;10.930313 +21447;3;0.16592407;0.049819946;-0.11968994 +21447;0;-0.047683716;2.6700745;10.782486 +21447;3;0.21296692;0.07485962;-0.11846924 +21448;0;-0.06201172;2.7128296;10.610779 +21449;12;0.18175285;0.05237232;0.21821228;0.9573957 +21449;3;0.2587738;0.09867859;-0.11846924 +21450;0;-0.042907715;2.7508392;10.400925 +21451;1;-0.20983402;3.6501222;9.103224 +21451;3;0.30215454;0.1182251;-0.11846924 +21453;4;13.392639;4.2099;-63.597107 +21453;6;-0.57312006;-0.25855792;0.0041253516 +21453;7;0.8396341;-0.5242315;0.14211267;0.0;0.54313785;0.8122843;-0.2125925;0.0;-0.0039882124 +21453;0;-0.01423645;2.765091;10.205383 +21453;3;0.34002686;0.13227844;-0.11846924 +21454;12;0.18215801;0.052715164;0.21795264;0.957359 +21455;0;-0.023803711;2.8173523;10.019394 +21456;1;-0.2170972;3.6625764;9.09805 +21456;3;0.37789917;0.14450073;-0.120910645 +21458;0;-0.06678772;2.7888489;9.86676 +21459;12;0.182746;0.053193368;0.21769956;0.95727813 +21459;3;0.41333008;0.1524353;-0.12335205 +21460;5;999.60266 +21461;0;-0.047683716;2.8411102;9.718933 +21461;1;-0.22548041;3.6783726;9.091471 +21461;3;0.44082642;0.15794373;-0.12580872 +21463;4;12.342834;3.0090332;-65.097046 +21463;6;-0.51651406;-0.28439966;0.0049062315 +21463;7;0.86885566;-0.47401398;0.1428301;0.0;0.49504292;0.8346164;-0.24155243;0.0;-0.00470913 +21463;0;-0.052444458;2.864853;9.59491 +21463;3;0.46096802;0.15977478;-0.13069153 +21464;12;0.18349922;0.05376667;0.21743831;0.9571613 +21465;0;-0.033355713;2.9171143;9.4375305 +21465;1;-0.23445714;3.6968381;9.083751 +21466;2;-0.21384197;0.9035146;-0.9043598; +21466;3;0.47869873;0.15977478;-0.13679504 +21467;0;-0.047683716;2.9266357;9.318314 +21468;3;0.48968506;0.15731812;-0.14411926 +21468;12;0.18438737;0.054400194;0.21715842;0.95701844 +21470;0;-0.028564453;2.9931488;9.208603 +21470;1;-0.24356626;3.716745;9.075384 +21470;3;0.4988556;0.153656;-0.1502533 +21475;12;0.18535306;0.05505064;0.21684062;0.9568667 +21475;1;-0.25257307;3.737461;9.066626 +21475;4;11.8927;3.4591675;-63.746643 +21475;6;-0.47029376;-0.31426516;0.0031019212 +21475;7;0.89099646;-0.43095472;0.14284061;0.0;0.45400077;0.8477762;-0.27415147;0.0;-0.0029499962 +21475;0;-0.028564453;3.0026398;9.089371 +21475;3;0.50190735;0.14938354;-0.15698242 +21475;0;-0.009475708;3.045395;8.960602 +21475;3;0.50312805;0.14694214;-0.16430664 +21479;0;-0.042907715;3.078659;8.812759 +21479;12;0.18636572;0.055701714;0.21649384;0.9567109 +21479;3;0.50434875;0.14143372;-0.17164612 +21479;0;-0.06201172;3.1261597;8.717377 +21480;1;-0.26156554;3.7584627;9.057684 +21480;3;0.5037384;0.1353302;-0.18080139 +21482;4;12.193298;3.1585693;-64.19678 +21482;6;-0.4440167;-0.34431866;0.007113456 +21482;7;0.90197915;-0.4043568;0.15142368;0.0;0.43172762;0.8500306;-0.30176044;0.0;-0.00669588 +21482;0;-0.06678772;3.1404114;8.550446 +21485;3;0.5025177;0.12617493;-0.18875122 +21486;0;-0.08111572;3.1736755;8.455063 +21486;12;0.18739633;0.05634839;0.21610935;0.9565586 +21486;1;-0.27031073;3.7795498;9.048649 +21486;3;0.49946594;0.11456299;-0.19668579 +21487;0;-0.10978699;3.202179;8.335815 +21487;12;0.18843769;0.0569751;0.21567944;0.95641387 +21487;3;0.49824524;0.1023407;-0.20401001 +21489;0;-0.095443726;3.2164307;8.245209 +21489;1;-0.27842006;3.8005457;9.039604 +21489;3;0.49517822;0.089523315;-0.21133423 +21490;2;-0.2472265;0.73387766;0.15252113; +21491;4;13.392639;3.0090332;-65.097046 +21491;6;-0.44479734;-0.37191752;0.011575142 +21491;7;0.9008276;-0.40085804;0.16680118;0.0;0.43404323;0.8409825;-0.32304034;0.0;-0.0107835345 +21492;0;-0.10978699;3.2306824;8.197525 +21492;3;0.49273682;0.07608032;-0.21806335 +21492;12;0.18948397;0.05755649;0.21520197;0.95627993 +21494;0;-0.143219;3.2211914;8.068741 +21494;1;-0.28572607;3.8213565;9.030598 +21494;3;0.48968506;0.06263733;-0.22477722 +21496;0;-0.16233826;3.2496948;8.006744 +21497;12;0.19053347;0.058087897;0.21468133;0.9561563 +21497;3;0.48724365;0.044311523;-0.22843933 +21499;0;-0.19099426;3.278183;8.025818 +21499;1;-0.29207203;3.84197;9.021645 +21500;3;0.48602295;0.024765015;-0.2296753 +21500;5;999.60266 +21501;4;11.743164;1.9592285;-64.64691 +21501;6;-0.3693762;-0.38767448;0.023792991 +21502;7;0.92904174;-0.33424172;0.15863146;0.0;0.36931875;0.86334866;-0.34384993;0.0;-0.022025252 +21502;0;-0.16233826;3.335205;8.044907 +21502;3;0.48358154;0.0113220215;-0.23028564 +21502;12;0.19158673;0.058556825;0.21412008;0.95604306 +21502;9;2AEC2AEBC4E1;-66;-2147483648 +21504;0;-0.095443726;3.3637238;8.049683 +21504;1;-0.29688638;3.8624618;9.012733 +21505;2;-0.18637002;0.61565685;0.8835325; +21505;3;0.47991943;0.002166748;-0.22906494 +21506;0;-0.09068298;3.3922272;8.06398 +21506;12;0.19265337;0.058938127;0.21353629;0.95593584 +21506;3;0.47807312;-0.002090454;-0.22782898 +21508;0;-0.033355713;3.4207153;8.011505 +21508;1;-0.30080643;3.882734;9.003888 +21509;3;0.4731903;-0.004547119;-0.22599792 +21512;4;11.743164;3.3096313;-63.89618 +21512;6;-0.38709462;-0.4035395;0.0041634524 +21512;7;0.9253845;-0.34717765;0.1520891;0.0;0.37901026;0.8516298;-0.36204693;0.0;-0.00382902 +21512;0;0.0048675537;3.449234;7.939972 +21512;3;0.4683075;-0.007598877;-0.22172546 +21512;12;0.19372316;0.059265833;0.21293221;0.9558341 +21513;0;0.0048675537;3.449234;7.897049 +21513;1;-0.3042908;3.9027321;8.995121 +21513;3;0.46403503;-0.00881958;-0.2186737 +21517;0;0.057418823;3.4919891;7.854141 +21517;3;0.46037292;-0.0069885254;-0.217453 +21517;12;0.19478136;0.059573837;0.21235447;0.9557284 +21518;0;0.10041809;3.525238;7.8302765 +21518;3;0.4536438;-0.0069885254;-0.21684265 +21518;1;-0.30748743;3.9224422;8.986435 +21520;4;12.942505;2.558899;-64.19678 +21520;6;-0.44835088;-0.4229945;-0.012823632 +21520;7;0.90337086;-0.3952747;0.16636996;0.0;0.42870075;0.82173806;-0.37544927;0.0;0.011693086 +21521;0;0.1434021;3.515747;7.849365 +21521;12;0.19582622;0.05986406;0.21179152;0.95562166 +21521;3;0.44754028;-0.004547119;-0.21928406 +21521;9;52ADB5BC186F;-90;-2147483648 +21523;1;-0.31066117;3.9416144;8.977932 +21523;0;0.1816101;3.5347595;7.882736 +21523;2;-0.38086152;0.48419666;1.0543356; +21523;3;0.4389801;3.5095215E-4;-0.22111511 +21525;0;0.20550537;3.5870209;7.8684235 +21525;12;0.19684465;0.060147643;0.21123217;0.9555184 +21525;3;0.42738342;0.008285522;-0.22355652 +21527;0;0.23893738;3.5774994;7.863678 +21527;1;-0.3142713;3.9600604;8.969686 +21528;3;0.41516113;0.01499939;-0.22906494 +21529;4;14.292908;2.558899;-62.997437 +21530;6;-0.52119505;-0.42678028;-0.030375592 +21530;7;0.8730844;-0.45325536;0.17967525;0.0;0.48678464;0.78943753;-0.3739374;0.0;0.027646748 +21530;0;0.27236938;3.6012573;7.8255157 +21530;3;0.40049744;0.025375366;-0.2333374 +21531;12;0.19781998;0.060442716;0.21067066;0.9554224 +21532;0;0.29148865;3.6012573;7.8398285 +21532;1;-0.31864983;3.9774048;8.961854 +21532;3;0.3864441;0.036376953;-0.23760986 +21534;0;0.29148865;3.6440125;7.863678 +21535;12;0.19872917;0.060762756;0.21010092;0.95533884 +21535;3;0.3699646;0.047973633;-0.24249268 +21538;0;0.3297119;3.6440125;7.8684235 +21540;3;0.3540802;0.05897522;-0.24615479 +21540;5;999.60266 +21541;4;14.593506;1.8096924;-63.29651 +21541;6;-0.55256313;-0.4333752;-0.04187867 +21541;7;0.8596636;-0.47634825;0.18458305;0.0;0.50944567;0.7724933;-0.37910333;0.0;0.03799603 +21541;0;0.3297119;3.6677704;7.901825 +21541;3;0.33758545;0.07180786;-0.24983215 +21541;12;0.19956385;0.06112178;0.2095225;0.955269 +21541;1;-0.32414973;3.993559;8.95447 +21542;0;0.32492065;3.6440125;7.935196 +21542;1;-0.33069327;4.008064;8.947747 +21542;2;-0.64210707;0.40156794;1.0694818; +21543;3;0.3186493;0.085250854;-0.25593567 +21545;0;0.3297119;3.663025;7.944748 +21545;12;0.20029873;0.061515287;0.20894916;0.9552155 +21545;3;0.30093384;0.1005249;-0.25837708 +21547;0;0.3106079;3.682022;7.939972 +21547;1;-0.33871245;4.0211535;8.941572 +21547;3;0.28320312;0.11578369;-0.25959778 +21549;4;13.693237;1.6586304;-64.64691 +21549;6;-0.51805955;-0.43392316;-0.039099585 +21549;7;0.876256;-0.44930217;0.17407724;0.0;0.48053867;0.7882658;-0.38434282;0.0;0.035466924 +21549;0;0.3201599;3.6345215;7.997223 +21549;3;0.26428223;0.13105774;-0.26081848 +21550;12;0.20094283;0.06196377;0.20836435;0.9551789 +21551;1;-0.34808415;4.0324917;8.936104 +21552;0;0.26760864;3.6440125;8.030594 +21552;3;0.2441101;0.14816284;-0.25959778 +21554;0;0.28671265;3.6535187;8.073517 +21555;12;0.20147993;0.06246418;0.20779723;0.9551568 +21555;3;0.22763062;0.16526794;-0.25715637 +21556;0;0.24848938;3.6202698;8.11644 +21556;1;-0.35888445;4.0421295;8.931321 +21557;3;0.20930481;0.18115234;-0.2541046 +21558;4;13.542175;3.4591675;-64.497375 +21559;6;-0.4876667;-0.41938302;-0.030606003 +21559;7;0.8888535;-0.42796013;0.16367528;0.0;0.4573383;0.806871;-0.3738997;0.0;0.027949335 +21559;0;0.23893738;3.6582794;8.121216 +21559;3;0.190979;0.19947815;-0.2504425 +21560;12;0.20191005;0.0630221;0.20725556;0.9551469 +21561;0;0.21505737;3.663025;8.159363 +21561;1;-0.37105876;4.050223;8.927156 +21561;2;-0.67587733;0.4119482;0.8716917; +21561;3;0.17326355;0.21658325;-0.24371338 +21563;0;0.1720581;3.6107635;8.197525 +21564;12;0.20223933;0.06363857;0.20674884;0.95514625 +21564;3;0.15553284;0.2318573;-0.23760986 +21568;0;0.1386261;3.6012573;8.235672 +21568;1;-0.38455436;4.056668;8.923657 +21568;3;0.13842773;0.2453003;-0.23272705 +21568;4;13.693237;2.4093628;-64.64691 +21568;6;-0.4855313;-0.41216996;-0.016830808 +21568;7;0.88744825;-0.42759573;0.17203924;0.0;0.4606493;0.8103596;-0.3621042;0.0;0.015420561 +21568;0;0.1386261;3.5870209;8.326294 +21569;3;0.12194824;0.25811768;-0.22477722 +21569;12;0.20246471;0.06431051;0.20628752;0.9551532 +21570;0;0.114746094;3.6012573;8.335815 +21571;1;-0.39902171;4.0615683;8.920794 +21571;3;0.10177612;0.26911926;-0.21684265 +21573;0;0.03831482;3.5680084;8.373978 +21573;12;0.20259584;0.06502601;0.2058736;0.95516634 +21573;3;0.08529663;0.2782898;-0.20829773 +21575;0;0.014419556;3.548996;8.435989 +21576;1;-0.41424507;4.0648265;8.918615 +21577;3;0.07002258;0.2843933;-0.1991272 +21577;5;999.60266 +21586;1;-0.42978993;4.0666995;8.917026 +21586;2;-0.5220357;0.50658464;0.54752827; +21586;12;0.20262796;0.065769106;0.2055121;0.9551865 +21586;12;0.20257977;0.06652567;0.20520154;0.9552111 +21586;1;-0.44542697;4.067126;8.916064 +21586;4;12.342834;2.4093628;-65.097046 +21586;6;-0.42584735;-0.39821985;-0.0017092888 +21586;7;0.91096157;-0.38076925;0.1586314;0.0;0.41248837;0.83943015;-0.35385087;0.0;0.0015755409 +21586;0;-0.01423645;3.5347595;8.459839 +21587;3;0.054748535;0.28988647;-0.18997192 +21587;0;-0.095443726;3.5442505;8.526611 +21587;3;0.037643433;0.29232788;-0.18263245 +21587;0;-0.147995;3.515747;8.550446 +21587;3;0.023590088;0.29354858;-0.17530823 +21587;0;-0.19577026;3.4872284;8.664902 +21587;3;0.0077209473;0.29293823;-0.1673584 +21587;4;12.193298;2.2598267;-64.497375 +21587;6;-0.38790387;-0.38253212;0.022589633 +21587;7;0.9222787;-0.35090998;0.16206276;0.0;0.3859573;0.8587964;-0.3369063;0.0;-0.020955129 +21588;0;-0.24832153;3.4539795;8.712601 +21588;3;-0.012451172;0.29110718;-0.15879822 +21589;12;0.20245077;0.0672715;0.20491017;0.95524865 +21590;1;-0.4608419;4.066043;8.915774 +21590;0;-0.3056488;3.4634857;8.769836 +21590;3;-0.028930664;0.28805542;-0.1502533 +21592;0;-0.3295288;3.4207153;8.84137 +21593;12;0.2022416;0.06800056;0.20468184;0.9552903 +21593;3;-0.049697876;0.2843933;-0.14231873 +21594;0;-0.39640808;3.4302368;8.936752 +21595;1;-0.4757775;4.063299;8.91624 +21595;3;-0.07229614;0.27766418;-0.13375854 +21597;4;13.093567;3.0090332;-64.64691 +21597;6;-0.37255824;-0.366165;0.044328004 +21597;7;0.9247091;-0.33986887;0.1714709;0.0;0.3784193;0.86965424;-0.31701803;0.0;-0.041375827 +21597;0;-0.47283936;3.3922272;9.022598 +21597;3;-0.09674072;0.27156067;-0.12582397 +21598;12;0.20194578;0.06869536;0.20449369;0.9553436 +21599;0;-0.5253906;3.3447113;9.089371 +21600;1;-0.49005896;4.0585113;8.917648 +21600;2;-0.19141465;0.63564587;0.085357666; +21600;3;-0.1254425;0.2630005;-0.117263794 +21602;0;-0.5445099;3.325714;9.199066 +21602;12;0.2015452;0.06933695;0.20434386;0.95541376 +21602;3;-0.1535492;0.2501831;-0.10810852 +21604;0;-0.5636139;3.3161926;9.313538 +21604;1;-0.5032828;4.051271;8.920202 +21604;3;-0.18287659;0.24040222;-0.09893799 +21606;4;14.593506;1.5090942;-64.19678 +21606;6;-0.4321269;-0.3414875;0.060441844 +21606;7;0.89794683;-0.39462045;0.19484892;0.0;0.43640792;0.8556425;-0.2782519;0.0;-0.05691712 +21607;0;-0.6257019;3.235443;9.361221 +21607;9;2AEC2AEBC4E1;-65;-2147483648 +21609;3;-0.21279907;0.23246765;-0.08856201 +21609;12;0.20102236;0.06990265;0.20423196;0.9555066 +21609;0;-0.72125244;3.2164307;9.4375305 +21609;1;-0.51549137;4.041357;8.924002 +21609;3;-0.24212646;0.2184143;-0.07878113 +21612;12;0.20036544;0.07039503;0.2041622;0.9556234 +21612;0;-0.7738037;3.1499176;9.4852295 +21612;3;-0.2696228;0.20436096;-0.06777954 +21614;0;-0.840683;3.0929108;9.590164 +21614;1;-0.5263143;4.028897;8.929004 +21614;3;-0.29405212;0.18849182;-0.058624268 +21614;5;999.60266 +21617;4;13.093567;2.708435;-63.146973 +21617;6;-0.3273916;-0.31086054;0.08743745 +21617;7;0.9346774;-0.30616143;0.18067443;0.0;0.34563816;0.9015009;-0.26044285;0.0;-0.083140604 +21617;0;-0.850235;3.078659;9.671219 +21617;3;-0.31726074;0.17198181;-0.05067444 +21617;12;0.19958535;0.07079182;0.20413634;0.9557628 +21618;0;-0.816803;3.0358887;9.752304 +21619;1;-0.5354532;4.014223;8.935067 +21619;2;0.15318865;0.8510022;-0.5511608; +21619;3;-0.33926392;0.15794373;-0.04335022 +21621;0;-0.7594757;3.045395;9.842926 +21621;12;0.19870569;0.0710778;0.20414768;0.9559225 +21621;3;-0.35881042;0.14450073;-0.03175354 +21623;0;-0.76901245;3.0549011;9.933533 +21623;1;-0.5429049;3.9976757;8.942033 +21624;3;-0.37651062;0.13044739;-0.02015686 +21625;4;13.693237;1.9592285;-63.597107 +21626;6;-0.39844584;-0.2975161;0.0772617 +21626;7;0.9101368;-0.3709412;0.18453608;0.0;0.40768293;0.8811741;-0.23943006;0.0;-0.07379394 +21626;0;-0.816803;3.0263977;10.014618 +21626;3;-0.39239502;0.1194458;-0.009765625 +21627;12;0.19774203;0.071265645;0.20418796;0.95609975 +21628;0;-0.826355;2.9646301;10.048004 +21628;1;-0.54885554;3.979568;8.949743 +21628;3;-0.4021759;0.11151123;0.002456665 +21630;0;-0.826355;2.898117;10.057541 +21631;12;0.19670652;0.071366034;0.20427696;0.9562867 +21631;3;-0.40827942;0.09989929;0.014678955 +21633;0;-0.835907;2.8506165;10.057541 +21633;1;-0.5535444;3.960496;8.9579115 +21633;3;-0.40827942;0.08708191;0.023834229 +21635;4;14.143372;3.6087036;-64.64691 +21635;6;-0.38933498;-0.2752855;0.08292188 +21635;7;0.913437;-0.3652814;0.17944998;0.0;0.39909822;0.89032716;-0.21917607;0.0;-0.079708256 +21635;0;-0.859787;2.7793427;10.028931 +21636;3;-0.40156555;0.073638916;0.034835815 +21636;12;0.19563103;0.07140108;0.20441401;0.95647556 +21640;0;-0.802475;2.765091;10.033691 +21640;2;0.22752613;1.0399108;-1.0472574; +21640;3;-0.3887329;0.05958557;0.04460144 +21641;0;-0.8215637;2.7603455;10.08139 +21641;1;-0.5567582;3.9413927;8.966133 +21641;12;0.19457048;0.07136547;0.20458698;0.9566575 +21641;3;-0.37345886;0.046157837;0.054382324 +21643;0;-0.7594757;2.741333;10.114777 +21643;1;-0.5583559;3.9233315;8.973952 +21643;3;-0.3545227;0.033325195;0.0635376 +21645;4;14.743042;2.4093628;-64.64691 +21645;6;-0.46958655;-0.26395586;0.07494513 +21645;7;0.88041234;-0.43684492;0.18450129;0.0;0.46866786;0.86086994;-0.19812493;0.0;-0.07228173 +21645;0;-0.71170044;2.7270813;10.10524 +21646;3;-0.33009338;0.024154663;0.07392883 +21646;12;0.19358112;0.071263306;0.20478848;0.95682263 +21647;0;-0.6687012;2.7793427;10.124298 +21648;1;-0.55842996;3.9069982;8.9810705 +21648;3;-0.30137634;0.017440796;0.08493042 +21650;0;-0.6639252;2.7365875;10.13385 +21650;12;0.19269878;0.07111228;0.20501862;0.9569627 +21650;3;-0.2696228;0.013763428;0.094696045 +21652;0;-0.64004517;2.7556;10.10524 +21652;1;-0.557502;3.8931623;8.987135 +21653;3;-0.23602295;0.013168335;0.10447693 +21653;5;999.5989 +21654;4;14.292908;3.4591675;-65.24658 +21654;6;-0.455993;-0.26570988;0.063253455 +21654;7;0.8887193;-0.42490047;0.17215586;0.0;0.4543764;0.8663163;-0.20745671;0.0;-0.060992967 +21655;0;-0.6113739;2.7888489;10.05278 +21655;3;-0.19998169;0.012542725;0.11424255 +21655;12;0.19195974;0.070947535;0.2052816;0.95706713 +21657;0;-0.59706116;2.7888489;9.990768 +21657;1;-0.5560432;3.8823733;8.991891 +21657;2;0.10080844;1.1478589;-1.1093149; +21658;3;-0.16394043;0.015609741;0.122802734 +21659;0;-0.5874939;2.822113;9.919235 +21660;12;0.19138525;0.070800126;0.2055768;0.9571297 +21660;3;-0.12484741;0.019882202;0.1295166 +21662;0;-0.5445099;2.8743744;9.847702 +21662;1;-0.55444753;3.8749192;8.995204 +21663;3;-0.08451843;0.024765015;0.13684082 +21664;4;13.392639;3.3096313;-63.597107 +21664;6;-0.43625453;-0.283583;0.055236842 +21664;7;0.8984311;-0.40567082;0.16808537;0.0;0.4359038;0.8701406;-0.22987658;0.0;-0.053003673 +21664;0;-0.49195862;2.9076233;9.785706 +21665;3;-0.044815063;0.030273438;0.14356995 +21665;12;0.19098966;0.070688285;0.20589246;0.95714915 +21666;0;-0.46328735;2.9646301;9.733231 +21667;1;-0.5529067;3.8710868;8.996949 +21667;3;-0.0063476562;0.036376953;0.14967346 +21669;0;-0.42507935;3.021637;9.680771 +21669;12;0.1907833;0.07063091;0.20624052;0.95711964 +21669;3;0.031539917;0.048599243;0.15760803 +21671;1;-0.55166376;3.8708026;8.997148 +21671;0;-0.37252808;3.0834198;9.585388 +21672;3;0.063308716;0.05897522;0.16067505 +21673;4;14.442444;1.9592285;-64.34631 +21673;6;-0.50250757;-0.31100544;0.03884461 +21673;7;0.86999285;-0.4585193;0.18130764;0.0;0.49167618;0.83433455;-0.24927947;0.0;-0.036971793 +21674;0;-0.3534088;3.1214142;9.532913 +21674;3;0.09262085;0.06997681;0.16494751 +21674;12;0.1907597;0.07063711;0.20661396;0.95704335 +21677;0;-0.3152008;3.16893;9.413681 +21677;1;-0.55111665;3.8735292;8.996008 +21677;3;0.11828613;0.08157349;0.16677856 +21677;2;-0.13448143;0.90589;-0.7051172; +21679;0;-0.2817688;3.2306824;9.308762 +21680;12;0.19088745;0.07072024;0.20700797;0.9569266 +21680;3;0.1408844;0.093185425;0.16860962 +21681;0;-0.24832153;3.3019562;9.19429 +21681;1;-0.5513771;3.878759;8.993738 +21681;3;0.15982056;0.101745605;0.17166138 +21683;4;12.792969;3.0090332;-63.597107 +21683;6;-0.4255059;-0.34467024;0.02700167 +21683;7;0.9067325;-0.38850468;0.16401339;0.0;0.4209401;0.85726136;-0.2965004;0.0;-0.02541053 +21683;0;-0.25309753;3.325714;9.122772 +21684;3;0.17326355;0.10723877;0.17044067 +21684;12;0.19113821;0.07087601;0.20739792;0.9567805 +21685;0;-0.26742554;3.4444885;9.027374 +21686;1;-0.55229807;3.8857608;8.990659 +21686;3;0.18058777;0.11273193;0.17105103 +21688;0;-0.28652954;3.4729767;8.927231 +21688;12;0.19147496;0.07109555;0.20781378;0.9566066 +21688;3;0.18730164;0.1164093;0.17227173 +21690;0;-0.26264954;3.5014954;8.879532 +21691;1;-0.553657;3.893703;8.987138 +21691;3;0.18913269;0.117630005;0.17532349 +21691;5;999.5989 +21693;4;14.892578;2.859497;-64.497375 +21693;6;-0.45599177;-0.3754626;0.029570589 +21693;7;0.89265794;-0.4096772;0.1879535;0.0;0.4498948;0.83528066;-0.31607145;0.0;-0.027506636 +21693;0;-0.25309753;3.5394897;8.831833 +21694;12;0.19185327;0.071346804;0.20823278;0.9564211 +21694;3;0.18913269;0.117630005;0.1796112 +21695;1;-0.5550106;3.902024;8.983445 +21696;0;-0.26742554;3.5965118;8.750748 +21696;2;-0.31809163;0.5042784;-0.03628254; +21696;3;0.18424988;0.117630005;0.18510437 +21699;12;0.19225232;0.07160751;0.2086652;0.95622706 +21699;0;-0.25787354;3.6725311;8.73645 +21700;3;0.17692566;0.1182251;0.19242859 +21700;1;-0.5561773;3.9102075;8.979814 +21701;0;-0.29130554;3.7342834;8.650604 +21701;3;0.16775513;0.120666504;0.19732666 +21705;4;13.693237;2.708435;-65.54718 +21705;6;-0.3814474;-0.40730795;0.03366187 +21705;7;0.9226379;-0.3418095;0.17862141;0.0;0.3844274;0.8521973;-0.35493016;0.0;-0.030902175 +21705;0;-0.3295288;3.8197937;8.612442 +21706;3;0.1579895;0.120666504;0.20343018 +21706;12;0.19264522;0.07186317;0.2091129;0.9560311 +21706;1;-0.5573287;3.9178803;8.9763975 +21708;0;-0.34864807;3.8673248;8.526611 +21708;3;0.14698792;0.117004395;0.20770264 +21709;0;-0.36297607;3.8958282;8.46936 +21709;12;0.19300634;0.07211875;0.20960176;0.9558319 +21709;3;0.13905334;0.11212158;0.2119751 +21711;1;-0.5580628;3.9248412;8.97331 +21711;0;-0.3534088;3.8910675;8.421677 +21711;3;0.1274414;0.109680176;0.21626282 +21713;4;14.442444;3.0090332;-63.146973 +21713;6;-0.38081816;-0.4324781;0.041939583 +21713;7;0.9210131;-0.3374595;0.194566;0.0;0.38766706;0.84288657;-0.37317082;0.0;-0.03806704 +21713;0;-0.37728882;3.9670868;8.378754 +21714;3;0.11462402;0.104782104;0.21992493 +21714;12;0.19333185;0.07234809;0.21011251;0.9556366 +21719;0;-0.3438568;4.000351;8.35968 +21719;1;-0.5583238;3.9310222;8.970588 +21719;2;-0.2536862;0.10352588;0.43676853; +21719;3;0.10118103;0.0993042;0.22358704 +21720;0;-0.3390808;4.043091;8.335815 +21720;12;0.19361949;0.072545715;0.2106427;0.95544666 +21720;3;0.08834839;0.09379578;0.22602844 +21720;0;-0.3104248;4.100113;8.311981 +21720;1;-0.5579405;3.936216;8.968334 +21720;3;0.07246399;0.088912964;0.22480774 +21720;9;2AEC2AEBC4E1;-79;-2147483648 +21722;4;14.143372;3.6087036;-64.34631 +21722;6;-0.3524208;-0.45797867;0.03732932 +21722;7;0.9321905;-0.3096003;0.18753307;0.0;0.36041704;0.8418215;-0.40179121;0.0;-0.033474684 +21722;0;-0.3199768;4.1286316;8.316757 +21722;3;0.055358887;0.08401489;0.22419739 +21722;12;0.19386116;0.07270039;0.21117924;0.9552675 +21724;1;-0.5571107;3.9401908;8.96664 +21724;0;-0.3104248;4.176132;8.278595 +21724;3;0.038864136;0.080963135;0.22358704 +21727;0;-0.3056488;4.190384;8.292908 +21729;12;0.19404155;0.072819;0.21172446;0.95510113 +21729;3;0.026031494;0.07913208;0.22053528 +21729;0;-0.3343048;4.2283936;8.292908 +21729;3;0.009536743;0.077301025;0.21748352 +21729;1;-0.5560546;3.9428725;8.965528 +21729;5;999.5989 +21731;4;13.243103;3.7597656;-64.19678 +21731;6;-0.31466302;-0.4711924;0.040290322 +21731;7;0.9444699;-0.27576953;0.17868318;0.0;0.32663193;0.8472788;-0.41884387;0.0;-0.035890076 +21732;0;-0.3056488;4.2473907;8.254761 +21732;3;-0.004501343;0.07546997;0.21382141 +21733;12;0.19415613;0.07290982;0.21226627;0.95495063 +21734;0;-0.30085754;4.2426453;8.226135 +21734;1;-0.55493355;3.9443269;8.964956 +21734;2;-0.2680003;-0.19802189;0.6623535; +21735;3;-0.017318726;0.07608032;0.20770264 +21736;0;-0.3295288;4.214142;8.2118225 +21737;12;0.19420403;0.0729806;0.21280022;0.95481664 +21737;3;-0.028930664;0.07485962;0.20343018 +21738;1;-0.55402994;3.944636;8.964876 +21739;0;-0.35820007;4.2378845;8.226135 +21739;3;-0.0393219;0.073028564;0.19915771 +21742;4;14.292908;2.558899;-62.547302 +21742;6;-0.35524392;-0.47532684;0.043516662 +21742;7;0.9297496;-0.30926093;0.19980812;0.0;0.3661549;0.8336265;-0.41351813;0.0;-0.03868033 +21742;0;-0.38685608;4.2188873;8.245209 +21742;12;0.19419062;0.07304364;0.21330738;0.95470136 +21743;3;-0.05152893;0.07180786;0.19242859 +21746;0;-0.39640808;4.2473907;8.249985 +21747;1;-0.5532493;3.9439518;8.965226 +21747;3;-0.06008911;0.06997681;0.18815613 +21747;0;-0.39640808;4.2616425;8.316757 +21747;12;0.19412555;0.07309517;0.21379782;0.95460093 +21747;3;-0.06680298;0.07119751;0.18449402 +21748;1;-0.5525842;3.9424522;8.965926 +21748;0;-0.41552734;4.2711487;8.311981 +21749;3;-0.074142456;0.07180786;0.17900085 +21750;4;14.143372;1.9592285;-65.097046 +21750;6;-0.32999673;-0.47416243;0.049949788 +21750;7;0.9374763;-0.28829035;0.19500501;0.0;0.34520295;0.8416715;-0.4152395;0.0;-0.04442062 +21750;0;-0.38685608;4.252136;8.316757 +21751;3;-0.08085632;0.07424927;0.17532349 +21751;12;0.19401702;0.07313814;0.21427178;0.95451343 +21753;0;-0.45373535;4.214142;8.297668 +21753;1;-0.5522246;3.9403076;8.966891 +21753;2;-0.19085789;-0.27354336;0.68161106; +21753;3;-0.085739136;0.07485962;0.17288208 +21755;0;-0.47763062;4.2711487;8.311981 +21755;3;-0.09063721;0.07791138;0.16860962 +21756;12;0.19387259;0.073187895;0.21472439;0.95443726 +21758;0;-0.48239136;4.209381;8.369217 +21758;1;-0.5522168;3.937674;8.968048 +21758;3;-0.09429932;0.07913208;0.16616821 +21760;4;14.892578;2.2598267;-64.94751 +21760;6;-0.33965948;-0.4653474;0.057575066 +21760;7;0.932703;-0.2977391;0.2035107;0.0;0.35696036;0.842609;-0.40322384;0.0;-0.05142444 +21760;0;-0.44418335;4.1523743;8.435989 +21761;3;-0.09674072;0.08401489;0.1637268 +21761;12;0.19369441;0.073240116;0.21516277;0.9543707 +21762;0;-0.43940735;4.190384;8.426437 +21762;1;-0.5524847;3.934581;8.96939 +21762;3;-0.10040283;0.08830261;0.1637268 +21765;0;-0.47283936;4.176132;8.478897 +21765;12;0.1934945;0.07330279;0.21559487;0.95430887 +21766;3;-0.101623535;0.09135437;0.1612854 +21767;0;-0.45851135;4.1618805;8.502762 +21767;3;-0.10223389;0.09806824;0.16067505 +21767;1;-0.5531861;3.9312122;8.970823 +21768;5;999.5989 +21770;4;13.842773;2.2598267;-63.29651 +21770;6;-0.3329771;-0.4546183;0.053872813 +21770;7;0.93597376;-0.29365864;0.19421063;0.0;0.34873027;0.8490811;-0.3967978;0.0;-0.04837747 +21770;12;0.19327456;0.07338123;0.21602635;0.95424986 +21770;0;-0.43940735;4.1571198;8.512299 +21771;3;-0.10467529;0.101745605;0.16189575 +21772;1;-0.5543141;3.9277017;8.972291 +21772;2;-0.12550074;-0.22965479;0.51524925; +21772;0;-0.44895935;4.1381226;8.517059 +21772;3;-0.10652161;0.10662842;0.16311646 +21774;0;-0.44895935;4.1286316;8.564758 +21774;12;0.1930412;0.07348129;0.21646017;0.9541911 +21775;3;-0.105895996;0.113342285;0.1625061 +21777;0;-0.4298401;4.090622;8.579071 +21777;1;-0.5558382;3.9240043;8.973814 +21778;3;-0.10652161;0.1182251;0.16067505 +21779;4;13.392639;2.708435;-64.64691 +21779;6;-0.32105103;-0.44444063;0.050061475 +21779;7;0.9409261;-0.28490743;0.1829914;0.0;0.33558446;0.8567195;-0.39168203;0.0;-0.045179192 +21780;0;-0.43940735;4.0621033;8.6410675 +21781;12;0.19279389;0.0735935;0.21687254;0.9541388 +21781;3;-0.105895996;0.12310791;0.16067505 +21782;1;-0.5578455;3.9202108;8.9753475 +21782;0;-0.4202881;4.0716095;8.669678 +21782;3;-0.10652161;0.12678528;0.16189575 +21784;0;-0.39163208;4.0763702;8.6410675 +21784;12;0.19253753;0.073734775;0.21731581;0.95407885 +21784;3;-0.10652161;0.13166809;0.16189575 +21787;0;-0.40119934;4.0716095;8.669678 +21787;1;-0.5601509;3.9164238;8.976857 +21787;3;-0.105895996;0.1347351;0.1625061 +21789;4;14.442444;1.9592285;-62.39624 +21789;6;-0.38444847;-0.43865287;0.04624316 +21789;7;0.9186509;-0.33954012;0.20197256;0.0;0.39284727;0.83924085;-0.37595984;0.0;-0.041850153 +21790;0;-0.41073608;4.0478516;8.717377 +21790;3;-0.105895996;0.13839722;0.1637268 +21790;12;0.19227453;0.07389422;0.21776588;0.95401686 +21791;0;-0.36775208;4.0336;8.712601 +21792;1;-0.5627369;3.9126015;8.978362 +21792;2;-0.17829168;-0.13614178;0.31654072; +21792;3;-0.10406494;0.1377716;0.1637268 +21794;0;-0.3438568;4.009842;8.726913 +21794;12;0.19200733;0.07406585;0.21822281;0.953953 +21795;3;-0.10406494;0.13899231;0.1637268 +21796;9;52ADB5BC186F;-88;-2147483648 +21797;0;-0.36297607;3.9860992;8.769836 +21797;1;-0.5653388;3.9088;8.979855 +21797;3;-0.10284424;0.14083862;0.16433716 +21798;0;-0.32476807;3.9765778;8.807983 +21799;3;-0.09979248;0.14143372;0.16677856 +21799;4;13.693237;1.6586304;-64.64691 +21799;6;-0.38010892;-0.42382455;0.036855318 +21799;7;0.9223714;-0.33819464;0.18669587;0.0;0.38484138;0.8464621;-0.367966;0.0;-0.033586856 +21800;12;0.19173948;0.07424014;0.21868187;0.9538882 +21801;13;67.79799 +21802;0;-0.3295288;3.9813385;8.81752 +21802;3;-0.09613037;0.14021301;0.16677856 +21802;1;-0.56798583;3.9050713;8.981309 +21803;0;-0.3295288;3.9575806;8.850922 +21804;12;0.19147655;0.0744165;0.21913055;0.9538243 +21804;3;-0.09185791;0.13961792;0.16921997 +21806;0;-0.32476807;3.9813385;8.822296 +21806;1;-0.57053405;3.901647;8.9826355 +21806;3;-0.08879089;0.13839722;0.16921997 +21806;5;999.5955 +21808;4;13.842773;1.8096924;-64.19678 +21808;6;-0.38595018;-0.42366523;0.036795575 +21808;7;0.920121;-0.34315792;0.18873246;0.0;0.39019573;0.8445329;-0.36675802;0.0;-0.033534847 +21808;0;-0.3295288;3.9718475;8.865219 +21808;3;-0.08268738;0.1365509;0.17349243 +21809;12;0.19123065;0.07459567;0.2195985;0.953752 +21810;1;-0.5729157;3.8985658;8.983822 +21810;2;-0.26833087;-0.056628704;0.1498251; +21811;0;-0.3295288;3.9670868;8.912918 +21811;3;-0.077194214;0.1353302;0.17288208 +21812;0;-0.3438568;3.9813385;8.931976 +21813;12;0.19100326;0.074771844;0.22007143;0.95367473 +21813;3;-0.07046509;0.13595581;0.17654419 +21816;1;-0.57516944;3.8960035;8.98479 +21816;0;-0.3390808;3.9955902;8.960602 +21816;3;-0.06253052;0.13717651;0.17900085 +21816;9;2AEC2AEBC4E1;-63;-2147483648 +21818;4;13.693237;3.0090332;-65.54718 +21819;6;-0.3616644;-0.4191785;0.03782325 +21819;7;0.92919445;-0.32319802;0.17927802;0.0;0.36797357;0.8543335;-0.36702824;0.0;-0.034540415 +21819;0;-0.3295288;3.9718475;8.965378 +21819;3;-0.05581665;0.13839722;0.18144226 +21819;12;0.19080813;0.074938565;0.22050197;0.95360136 +21820;0;-0.32476807;4.0050964;9.003525 +21820;1;-0.57739025;3.8940725;8.985484 +21820;3;-0.048477173;0.14389038;0.18693542 +21822;0;-0.3056488;4.0050964;9.013062 +21822;12;0.19064307;0.07512339;0.22099078;0.9535065 +21822;3;-0.04298401;0.1487732;0.18998718 +21824;0;-0.29130554;3.9908295;9.017838 +21824;1;-0.57980055;3.892733;8.985909 +21825;3;-0.03627014;0.15428162;0.1960907 +21827;4;14.743042;1.9592285;-63.597107 +21827;6;-0.42939407;-0.41644698;0.03229203 +21827;7;0.90330684;-0.3807379;0.19767469;0.0;0.42797756;0.83150905;-0.35415792;0.0;-0.029526962 +21827;0;-0.2960968;3.9955902;9.017838 +21827;3;-0.030761719;0.16099548;0.20343018 +21828;12;0.1905042;0.07533068;0.22150344;0.953399 +21829;0;-0.3152008;4.0145874;9.03215 +21829;1;-0.58247584;3.891967;8.986068 +21830;2;-0.29453403;-0.07945037;-0.01899147; +21830;3;-0.022827148;0.16526794;0.2107544 +21832;0;-0.3534088;4.0668488;8.994003 +21832;12;0.19039257;0.07556691;0.22204097;0.9532776 +21832;3;-0.014877319;0.1683197;0.21687317 +21834;0;-0.2960968;4.057358;8.970154 +21834;1;-0.58530694;3.891962;8.985887 +21834;3;-0.0075683594;0.17138672;0.21931458 +21840;4;14.143372;3.0090332;-63.597107 +21840;6;-0.3920136;-0.4245751;0.03299713 +21840;7;0.9184465;-0.3481293;0.1877821;0.0;0.3944013;0.84209067;-0.36787355;0.0;-0.030061984 +21840;0;-0.24832153;4.0383606;8.970154 +21840;3;-0.002670288;0.17260742;0.22053528 +21840;0;-0.22442627;4.0336;8.965378 +21840;1;-0.5881229;3.892548;8.985449 +21840;12;0.1903161;0.075817995;0.22259517;0.95314366 +21840;3;3.8146973E-4;0.16894531;0.22114563 +21841;0;-0.19099426;4.095352;9.036911 +21842;12;0.19026907;0.07608452;0.22318175;0.95299464 +21842;3;0.004043579;0.16343689;0.22175598 +21844;0;-0.19099426;4.085861;9.036911 +21844;1;-0.5905914;3.8934834;8.984881 +21844;3;0.0046539307;0.15916443;0.21931458 +21845;5;999.5955 +21846;4;13.542175;2.859497;-65.69672 +21846;6;-0.38742736;-0.42454022;0.02113176 +21846;7;0.92238915;-0.34426904;0.17514905;0.0;0.38578182;0.8436917;-0.3733051;0.0;-0.019254422 +21846;0;-0.18621826;4.100113;9.046463 +21846;3;0.005874634;0.15550232;0.2156372 +21847;12;0.19024296;0.07633964;0.22376804;0.95284194 +21848;0;-0.12890625;4.095352;9.065521 +21848;1;-0.5927017;3.894539;8.984285 +21849;2;-0.39629602;-0.15384221;-0.038618088; +21849;3;0.0064849854;0.1506195;0.21014404 +21851;0;-0.10499573;4.133362;9.0607605 +21851;12;0.1902296;0.076573186;0.22434162;0.952691 +21852;3;0.00894165;0.14633179;0.20709229 +21854;1;-0.59452367;3.895691;8.983665 +21855;0;-0.10978699;4.100113;9.08461 +21855;3;0.011383057;0.13899231;0.20037842 +21856;4;14.593506;2.558899;-63.29651 +21856;6;-0.45255244;-0.423928;0.012084354 +21856;7;0.89709485;-0.3985561;0.19071974;0.0;0.44170088;0.81972516;-0.36462465;0.0;-0.011014381 +21856;0;-0.07156372;4.1143646;9.022598 +21857;3;0.013214111;0.13044739;0.19487 +21857;12;0.19022588;0.076788016;0.2248812;0.95254725 +21858;0;-0.07156372;4.11911;9.056 +21858;1;-0.5959063;3.8970265;8.982995 +21859;3;0.017486572;0.12432861;0.19059753 +21861;0;-0.07635498;4.1286316;9.079834 +21861;12;0.19023794;0.07697973;0.22539835;0.9524071 +21861;3;0.021759033;0.117630005;0.18571472 +21863;0;-0.06678772;4.1143646;9.0607605 +21863;1;-0.5968714;3.8986392;8.98223 +21863;3;0.022979736;0.109680176;0.18266296 +21867;4;14.593506;2.558899;-63.29651 +21867;6;-0.4595705;-0.4262364;0.0073709604 +21868;7;0.89486694;-0.4038768;0.18999097;0.0;0.44628242;0.8160546;-0.36726937;0.0;-0.0067114066 +21868;0;-0.023803711;4.1381226;9.056 +21868;3;0.023590088;0.10418701;0.17778015 +21868;12;0.1902731;0.07714649;0.22588661;0.9522709 +21868;0;-0.042907715;4.166626;9.027374 +21868;1;-0.5973255;3.9004357;8.9814205 +21868;2;-0.5586213;-0.20361114;-0.086714745; +21869;3;0.027862549;0.101119995;0.18144226 +21872;12;0.19032668;0.07728758;0.22634958;0.95213884 +21872;0;-0.042907715;4.1951294;9.03215 +21872;3;0.030929565;0.0993042;0.1783905 +21873;0;-0.023803711;4.2188873;9.041687 +21873;1;-0.5974941;3.9025562;8.980488 +21873;3;0.035812378;0.097457886;0.1783905 +21875;4;14.892578;2.558899;-64.19678 +21875;6;-0.46319783;-0.43657437;0.0026326564 +21875;7;0.8941278;-0.4049028;0.19128318;0.0;0.44780555;0.810717;-0.37710488;0.0;-0.0023857248 +21875;0;-0.009475708;4.199875;9.017838 +21876;3;0.041915894;0.097457886;0.17593384 +21876;12;0.19040056;0.077413335;0.22679745;0.9520073 +21878;0;-0.019012451;4.2188873;9.008301 +21879;1;-0.59756684;3.9050882;8.9793825 +21879;3;0.046813965;0.096847534;0.17715454 +21880;0;-0.023803711;4.252136;9.003525 +21880;12;0.19049804;0.077542104;0.22724637;0.9518702 +21880;3;0.053527832;0.096847534;0.17900085 +21882;0;-0.01423645;4.233139;8.984451 +21882;1;-0.59759974;3.9081528;8.978046 +21882;3;0.06085205;0.096847534;0.17778015 +21883;5;999.5955 +21884;4;14.892578;2.558899;-64.19678 +21884;6;-0.4622283;-0.44031236;0.0015845641 +21884;7;0.8947587;-0.4034089;0.19148909;0.0;0.44654763;0.8096888;-0.38078764;0.0;-0.0014334255 +21885;0;-0.01423645;4.223633;8.974915 +21885;3;0.066970825;0.09623718;0.17715454 +21885;12;0.19062199;0.077674754;0.22769505;0.9517274 +21887;0;-0.033355713;4.252136;9.008301 +21890;1;-0.59763384;3.9117973;8.976458 +21890;12;0.19077931;0.07781633;0.22813928;0.9515779 +21890;2;-0.60870415;-0.29035592;-0.044398308; +21890;3;0.07368469;0.09562683;0.17900085 +21890;0;-0.033355713;4.3043976;8.974915 +21890;3;0.07917786;0.097457886;0.18388367 +21892;0;0.0048675537;4.3281555;9.003525 +21892;1;-0.5975813;3.916098;8.974586 +21892;3;0.087127686;0.09989929;0.18815613 +21894;4;14.743042;2.708435;-64.64691 +21894;6;-0.45188254;-0.44810322;-5.406275E-4 +21894;7;0.89972883;-0.3935487;0.18869948;0.0;0.43644914;0.810807;-0.39000538;0.0;4.8725161E-4 +21894;0;-0.023803711;4.366165;8.970154 +21894;3;0.090789795;0.104782104;0.19181824 +21895;12;0.19097275;0.07795948;0.22857338;0.9514231 +21897;0;-0.06678772;4.366165;8.941528 +21897;1;-0.59765047;3.9210052;8.972438 +21897;3;0.09689331;0.10662842;0.1954956 +21899;0;-0.06678772;4.389923;8.941528 +21899;12;0.19119231;0.078126125;0.22904338;0.9512524 +21900;3;0.09996033;0.11090088;0.19732666 +21901;0;-0.033355713;4.3614197;8.893829 +21901;1;-0.5978755;3.926359;8.970081 +21902;3;0.10177612;0.11151123;0.19976807 +21903;4;14.743042;2.708435;-64.64691 +21904;6;-0.43852124;-0.45592508;0.0037504155 +21904;7;0.90467304;-0.38122988;0.19034314;0.0;0.42609322;0.8128997;-0.39703754;0.0;-0.0033673185 +21904;0;-0.038131714;4.389923;8.946289 +21904;3;0.10055542;0.11273193;0.20159912 +21904;12;0.19143166;0.07830761;0.2295295;0.95107204 +21906;0;-0.057235718;4.432678;8.927231 +21906;1;-0.5981545;3.9318657;8.96765 +21906;2;-0.5938512;-0.4144652;0.0061206818; +21907;3;0.10055542;0.11029053;0.20098877 +21909;0;-0.009475708;4.4279175;8.927231 +21909;12;0.19167876;0.07849676;0.23002632;0.95088667 +21909;3;0.10055542;0.10723877;0.20098877 +21912;1;-0.5982375;3.9373937;8.9652195 +21912;0;-0.028564453;4.503952;8.960602 +21912;3;0.09996033;0.10418701;0.20098877 +21913;4;14.743042;1.9592285;-65.54718 +21913;6;-0.43583807;-0.4657549;0.0031877721 +21913;7;0.9059075;-0.37720186;0.19248438;0.0;0.42346588;0.8099569;-0.4057664;0.0;-0.0028482147 +21914;0;-0.009475708;4.503952;8.970154 +21914;3;0.09811401;0.10296631;0.19976807 +21914;12;0.19193137;0.07867265;0.23049836;0.95070684 +21916;0;-0.06201172;4.52771;8.998749 +21916;3;0.095062256;0.0993042;0.19976807 +21916;1;-0.5981257;3.9428804;8.962815 +21918;0;-0.08590698;4.53244;8.974915 +21919;12;0.19218078;0.07884474;0.2309902;0.9505229 +21919;3;0.09384155;0.096847534;0.19976807 +21920;0;-0.08111572;4.5514526;8.974915 +21921;1;-0.5978479;3.948191;8.960495 +21921;3;0.094451904;0.09257507;0.19976807 +21921;5;999.5955 +21923;4;14.743042;1.9592285;-65.54718 +21923;6;-0.4227643;-0.46931922;0.009037803 +21923;7;0.9102439;-0.36592168;0.19379689;0.0;0.41399387;0.8133541;-0.4087349;0.0;-0.0080604935 +21923;0;-0.07156372;4.53244;8.936752 +21923;3;0.09384155;0.08769226;0.19671631 +21924;12;0.19242372;0.07900253;0.2314788;0.95034164 +21925;0;-0.11456299;4.522949;8.951065 +21926;2;-0.5757565;-0.5396478;-0.014839172; +21926;1;-0.5972656;3.9534764;8.958203 +21926;3;0.0920105;0.0821991;0.1960907 +21928;0;-0.10499573;4.522949;8.946289 +21928;12;0.19266821;0.07914464;0.23195988;0.95016307 +21928;3;0.09017944;0.07608032;0.1954956 +21930;0;-0.100234985;4.5419617;8.989227 +21930;1;-0.5962661;3.9586058;8.956004 +21930;3;0.08773804;0.07058716;0.19425964 +21932;4;16.093445;1.6586304;-64.34631 +21933;6;-0.4659161;-0.46782747;0.011150106 +21933;7;0.89109606;-0.4009705;0.21253346;0.0;0.45370558;0.7974135;-0.39784783;0.0;-0.0099518215 +21933;0;-0.052444458;4.546707;9.008301 +21933;3;0.08529663;0.0675354;0.19120789 +21933;12;0.19291152;0.07925818;0.23242807;0.9499898 +21935;0;-0.052444458;4.5847015;9.022598 +21935;1;-0.5948205;3.9635336;8.953921 +21935;3;0.08100891;0.065704346;0.18876648 +21937;0;-0.052444458;4.5752106;9.08461 +21938;3;0.07917786;0.06324768;0.18632507 +21939;12;0.19314957;0.07934682;0.23288895;0.94982105 +21940;0;-0.047683716;4.5847015;9.0607605 +21940;1;-0.5932704;3.9681451;8.951981 +21940;3;0.0773468;0.06324768;0.18144226 +21943;4;16.693115;1.6586304;-65.097046 +21943;6;-0.4865578;-0.46842673;0.005262613 +21943;7;0.88282436;-0.41721743;0.21575601;0.0;0.46967968;0.7887285;-0.3966211;0.0;-0.0046957014 +21943;0;-0.057235718;4.556198;9.070297 +21943;3;0.074295044;0.06385803;0.17900085 +21943;12;0.1933733;0.079423636;0.23333712;0.9496591 +21945;1;-0.59183943;3.9725084;8.95014 +21945;0;-0.07635498;4.546707;9.098923 +21945;2;-0.5614507;-0.5663798;-0.095788; +21945;3;0.070632935;0.06385803;0.17715454 +21948;0;-0.10499573;4.5086975;9.108459 +21948;3;0.06758118;0.06324768;0.17778015 +21948;12;0.19358186;0.07950085;0.23376852;0.9495041 +21950;1;-0.5905058;3.9765048;8.948454 +21950;0;-0.100234985;4.5086975;9.11322 +21950;3;0.063308716;0.06385803;0.17593384 +21952;4;15.492249;2.859497;-64.497375 +21952;6;-0.44200513;-0.4594088;0.010998411 +21952;7;0.9017551;-0.3834012;0.19960314;0.0;0.43213508;0.8101753;-0.3960752;0.0;-0.009857841 +21952;0;-0.12411499;4.522949;9.117996 +21952;3;0.0602417;0.06324768;0.17593384 +21953;12;0.19377416;0.07957367;0.23418003;0.94935733 +21954;0;-0.16233826;4.470688;9.132294 +21955;1;-0.5892534;3.9801536;8.946914 +21955;3;0.05596924;0.06324768;0.17715454 +21959;0;-0.20533752;4.480179;9.098923 +21959;3;0.05230713;0.061416626;0.18022156 +21959;12;0.1939444;0.079650104;0.23460306;0.9492117 +21962;0;-0.22921753;4.470688;9.11322 +21962;1;-0.58799374;3.9834611;8.945524 +21962;3;0.04864502;0.05958557;0.18205261 +21962;5;999.5863 +21963;4;14.442444;1.9592285;-63.597107 +21963;6;-0.405426;-0.4559515;0.025146898 +21963;7;0.91427726;-0.35411826;0.19671647;0.0;0.40445948;0.82505834;-0.39457723;0.0;-0.022575572 +21964;0;-0.26742554;4.4991913;9.122772 +21964;3;0.045578003;0.056533813;0.18510437 +21964;12;0.19409758;0.079722464;0.23503228;0.9490681 +21966;1;-0.5865225;3.9865105;8.9442625 +21966;0;-0.27697754;4.5086975;9.127518 +21966;3;0.042526245;0.055923462;0.18510437 +21967;2;-0.44127035;-0.49217033;-0.18300152; +21967;0;-0.3152008;4.513443;9.16568 +21967;3;0.039474487;0.052261353;0.19181824 +21967;12;0.19423844;0.07978256;0.23547398;0.9489248 +21973;0;-0.30085754;4.4897003;9.146606 +21973;1;-0.5848406;3.9892697;8.943143 +21973;3;0.03642273;0.049209595;0.1960907 +21973;12;0.19436865;0.07982297;0.23589838;0.9487893 +21975;4;14.593506;2.2598267;-62.547302 +21975;6;-0.3983223;-0.45609483;0.03288095 +21975;7;0.9155985;-0.34822395;0.20104572;0.0;0.40100896;0.8274949;-0.39299357;0.0;-0.02951452 +21975;0;-0.3152008;4.494446;9.132294 +21975;3;0.034591675;0.04737854;0.20037842 +21975;0;-0.3438568;4.522949;9.11322 +21975;1;-0.5827531;3.9918408;8.942131 +21975;3;0.033981323;0.043701172;0.20404053 +21977;12;0.19449174;0.07985122;0.23636734;0.94864494 +21979;17;1;38dead6d7725;9767;1196;-72; +21980;17;1;38dead6d60ff;9710;1023;-68; +21980;17;1;1c1bb5efa29a;-186;1409;-61; +21980;17;1;1c1bb5ecd182;2470;2692;-61; +21980;1;-0.5802607;3.9944568;8.941125 +21985;12;0.19462019;0.079861544;0.236853;0.9484966 +21985;1;-0.57715726;3.9971776;8.94011 +21987;2;-0.27777803;-0.518682;-0.17718792; +21988;12;0.19475996;0.07984267;0.23734753;0.9483459 +21988;1;-0.5734185;4.000113;8.939037 +21989;0;-0.3534088;4.5419617;9.094147 +21989;3;0.035202026;0.03942871;0.21014404 +21990;0;-0.38208008;4.560959;9.075058 +21990;3;0.035812378;0.033935547;0.2119751 +21990;4;15.342712;1.6586304;-63.597107 +21990;6;-0.39577776;-0.4653557;0.04207737 +21990;7;0.91460305;-0.3445299;0.21166126;0.0;0.40260178;0.8245793;-0.3974681;0.0;-0.037591852 +21990;0;-0.3534088;4.5657043;9.079834 +21990;3;0.03642273;0.02720642;0.2144165 +21990;0;-0.3438568;4.57045;9.051224 +21990;3;0.038864136;0.021102905;0.21504211 +21990;0;-0.3152008;4.546707;9.075058 +21991;3;0.04374695;0.013763428;0.21382141 +21991;0;-0.3056488;4.5799713;9.051224 +21992;12;0.19492282;0.07979004;0.2378169;0.9481993 +21992;3;0.047424316;0.006439209;0.21014404 +21992;4;15.342712;2.708435;-64.34631 +21992;6;-0.39385563;-0.46821114;0.033755954 +21992;7;0.9170654;-0.34245116;0.20425043;0.0;0.39759776;0.8240533;-0.40354934;0.0;-0.030117316 +21992;0;-0.27697754;4.5847015;9.070297 +21992;3;0.051086426;-0.0014953613;0.20587158 +21993;1;-0.5691191;4.0033865;8.937846 +21993;0;-0.27697754;4.5989685;9.08461 +21993;3;0.055358887;-0.00881958;0.20037842 +21995;0;-0.22921753;4.560959;9.103683 +21996;12;0.1951084;0.07971269;0.23828484;0.94805014 +21996;3;0.063308716;-0.017974854;0.1960907 +21998;1;-0.5642792;4.007033;8.93652 +21999;0;-0.24832153;4.603714;9.108459 +21999;3;0.06819153;-0.025924683;0.19059753 +21999;5;999.5863 +22002;4;14.292908;1.8096924;-64.19678 +22002;6;-0.3873904;-0.46783483;0.027255984 +22002;7;0.92091143;-0.3371805;0.19552866;0.0;0.38901216;0.8264073;-0.4070878;0.0;-0.024324229 +22002;12;0.19532567;0.07960971;0.2387212;0.9479043 +22002;0;-0.23876953;4.627472;9.094147 +22002;3;0.07551575;-0.03263855;0.18388367 +22004;1;-0.5589737;4.011211;8.9349785 +22004;2;-0.33256936;-0.56216097;-0.16275597; +22005;0;-0.23876953;4.6084595;9.117996 +22005;3;0.08041382;-0.038146973;0.17778015 +22005;0;-0.23876953;4.627472;9.151382 +22005;3;0.087127686;-0.043029785;0.17288208 +22006;12;0.19557714;0.079482615;0.23912272;0.9477618 +22007;1;-0.55342245;4.01581;8.933258 +22008;0;-0.24832153;4.5657043;9.14183 +22008;3;0.095062256;-0.047912598;0.16921997 +22010;4;15.492249;1.5090942;-65.24658 +22010;6;-0.4204874;-0.4630441;0.02715654 +22010;7;0.9076025;-0.36522013;0.2070553;0.0;0.419127;0.8167599;-0.39652956;0.0;-0.024293886 +22010;0;-0.21966553;4.6084595;9.175232 +22010;3;0.098739624;-0.05340576;0.16616821 +22011;12;0.19585823;0.079338886;0.2394767;0.9476265 +22012;1;-0.54754627;4.0209494;8.931309 +22012;0;-0.20054626;4.6322327;9.170456 +22012;3;0.10362244;-0.05708313;0.1625061 +22018;12;0.19617394;0.07918396;0.23981953;0.9474874 +22018;0;-0.18144226;4.61322;9.189545 +22018;3;0.107284546;-0.060134888;0.1612854 +22018;1;-0.5413988;4.0263925;8.929232 +22019;0;-0.16711426;4.594223;9.227692 +22019;3;0.110946655;-0.061965942;0.15823364 +22019;4;14.143372;1.9592285;-64.34631 +22019;6;-0.40179387;-0.46187955;0.018108102 +22019;7;0.9170545;-0.35009232;0.19090964;0.0;0.3984324;0.82392234;-0.40299344;0.0;-0.016209787 +22019;0;-0.15278625;4.5847015;9.246765 +22019;3;0.11399841;-0.062576294;0.15760803 +22020;12;0.19650897;0.07901594;0.24014424;0.94734967 +22022;0;-0.138443;4.5752106;9.284912 +22022;1;-0.53510106;4.032088;8.92704 +22022;2;-0.38240004;-0.5535531;-0.2805519; +22022;3;0.11643982;-0.06440735;0.15516663 +22025;12;0.19686113;0.07884242;0.24045925;0.9472112 +22025;0;-0.12411499;4.5894623;9.318314 +22025;3;0.12010193;-0.0650177;0.15516663 +22026;0;-0.07635498;4.5989685;9.351685 +22026;1;-0.52873325;4.0379567;8.924767 +22027;3;0.12194824;-0.063186646;0.15333557 +22028;4;14.743042;1.9592285;-61.647034 +22028;6;-0.45622873;-0.45703655;0.008164655 +22028;7;0.8961031;-0.3953479;0.20174061;0.0;0.4437855;0.8055821;-0.39254546;0.0;-0.007326588 +22029;0;-0.06201172;4.65123;9.375534 +22029;3;0.122543335;-0.062576294;0.15211487 +22029;12;0.19722764;0.078662455;0.24074991;0.9470761 +22031;0;-0.047683716;4.6892242;9.385086 +22031;1;-0.5224364;4.044033;8.922385 +22031;3;0.1237793;-0.062576294;0.15028381 +22033;0;7.6293945E-5;4.7319946;9.40892 +22034;12;0.1976044;0.0784916;0.24105006;0.94693536 +22034;3;0.1262207;-0.06074524;0.1478424 +22036;1;-0.5161217;4.0503144;8.919904 +22036;0;0.062194824;4.7747498;9.40892 +22036;3;0.12805176;-0.055862427;0.14906311 +22037;5;999.5863 +22043;4;15.04364;1.9592285;-62.69684 +22043;6;-0.47478303;-0.46959734;-0.0066101016 +22043;7;0.89074;-0.40765977;0.20098735;0.0;0.45447513;0.7931158;-0.4054871;0.0;0.005894519 +22043;0;0.10997009;4.8365173;9.404144 +22043;3;0.12866211;-0.05279541;0.14967346 +22043;12;0.19799434;0.07832078;0.24134496;0.9467929 +22044;0;0.1386261;4.869766;9.4804535 +22044;1;-0.5100354;4.0567765;8.917316 +22044;2;-0.5521175;-0.6474223;-0.48299313; +22045;3;0.12927246;-0.046081543;0.14967346 +22045;0;0.18640137;4.8887787;9.4852295 +22045;12;0.19838797;0.0781654;0.2416424;0.94664747 +22045;3;0.12866211;-0.03630066;0.14967346 +22046;0;0.20550537;4.9267883;9.571075 +22046;1;-0.5044192;4.063264;8.914682 +22046;3;0.1262207;-0.023483276;0.14967346 +22047;4;14.892578;2.2598267;-63.746643 +22047;6;-0.4826535;-0.47529048;-0.021468205 +22047;7;0.8901215;-0.41268682;0.19332162;0.0;0.45532334;0.787588;-0.41519374;0.0;0.0190872 +22048;0;0.22460938;4.9457855;9.628311 +22048;3;0.122543335;-0.009429932;0.15211487 +22048;12;0.19877774;0.07803155;0.24192046;0.9465058 +22050;0;0.22460938;4.94104;9.690308 +22050;1;-0.49980488;4.069512;8.912091 +22050;3;0.11462402;0.0070648193;0.15150452 +22052;0;0.20550537;4.9647827;9.70462 +22052;12;0.1991383;0.07795594;0.24224061;0.9463542 +22053;3;0.10543823;0.026611328;0.15211487 +22055;0;0.20072937;4.98378;9.75708 +22055;1;-0.49662378;4.075131;8.909701 +22055;3;0.0932312;0.045532227;0.15272522 +22068;2;-0.7329763;-0.86309767;-0.7813473; +22068;1;-0.4950796;4.079739;8.907679 +22068;12;0.19944592;0.077948876;0.24258098;0.9462028 +22068;4;15.492249;3.4591675;-64.19678 +22068;6;-0.48205304;-0.4721534;-0.020569786 +22068;7;0.89019436;-0.41287726;0.19257821;0.0;0.4552125;0.7891036;-0.41242805;0.0;0.018317973 +22068;0;0.1720581;4.9885406;9.790451 +22068;3;0.08041382;0.064468384;0.15638733 +22068;0;0.1338501;5.0027924;9.819077 +22068;3;0.06452942;0.08401489;0.1625061 +22068;0;0.04786682;4.9885406;9.852463 +22068;3;0.049865723;0.1023407;0.16433716 +22068;12;0.1996762;0.07801892;0.2429489;0.94605416 +22068;0;-0.023803711;4.9790497;9.885849 +22068;1;-0.49516132;4.0830493;8.9061575 +22068;3;0.03276062;0.121292114;0.16921997 +22068;4;15.04364;1.05896;-63.89618 +22068;6;-0.46466547;-0.46656555;0.0024078526 +22068;7;0.89348364;-0.4002276;0.20372769;0.0;0.44909072;0.79842246;-0.40104753;0.0;-0.0021504953 +22068;0;-0.143219;4.9457855;9.933533 +22068;3;0.011383057;0.1365509;0.17288208 +22068;12;0.19981325;0.078160286;0.24334465;0.9459118 +22069;0;-0.21487427;4.9315186;9.976471 +22069;1;-0.4968467;4.0847836;8.905268 +22069;3;-0.0087890625;0.1487732;0.17532349 +22071;0;-0.3199768;4.907776;9.990768 +22072;12;0.19984293;0.07837085;0.24379294;0.9457726 +22072;3;-0.028320312;0.16038513;0.17900085 +22074;0;-0.41552734;4.8555145;10.05278 +22074;1;-0.4997314;4.0847077;8.905142 +22074;3;-0.049697876;0.16770935;0.18266296 +22075;5;999.5863 +22076;4;15.04364;0.7598877;-62.39624 +22076;6;-0.41783997;-0.44962293;0.041311055 +22076;7;0.905904;-0.36545646;0.21396144;0.0;0.42184654;0.82312936;-0.3801364;0.0;-0.037194613 +22077;0;-0.5445099;4.827011;10.071854 +22077;3;-0.07292175;0.17138672;0.18571472 +22077;12;0.19975734;0.07862338;0.24427249;0.94564605 +22078;0;-0.67349243;4.803253;10.090927 +22079;1;-0.5034047;4.0827265;8.905843 +22079;2;-0.26169252;-0.8101783;-1.0840588; +22079;3;-0.09552002;0.17138672;0.18815613 +22081;0;-0.73558044;4.760498;10.162476 +22081;12;0.19955936;0.07889287;0.24478039;0.94553405 +22081;3;-0.118118286;0.16770935;0.18998718 +22083;0;-0.864563;4.717743;10.210159 +22083;1;-0.50720674;4.078696;8.907474 +22084;3;-0.14073181;0.16160583;0.19425964 +22086;4;15.942383;1.2084961;-63.29651 +22086;6;-0.35973355;-0.43148196;0.08447523 +22086;7;0.92023104;-0.31976068;0.22567195;0.0;0.38379782;0.85020417;-0.36034966;0.0;-0.07664158 +22086;0;-0.9219055;4.636963;10.224472 +22086;3;-0.16209412;0.1512146;0.19976807 +22087;12;0.19924937;0.0791407;0.2453007;0.9454438 +22088;0;-1.0508728;4.5752106;10.224472 +22088;3;-0.18348694;0.1377716;0.20343018 +22088;1;-0.51052004;4.0726347;8.910058 +22097;17;1;38dead6d7725;11271;1239;-71; +22098;17;1;38dead6d60ff;9764;3047;-68; +22098;17;1;1c1bb5efa29a;-298;2236;-65; +22099;17;1;1c1bb5ecd182;4019;3442;-62; +22099;0;-1.1559601;4.4991913;10.26738 +22099;12;0.19883625;0.0793398;0.24584381;0.94537306 +22099;3;-0.20059204;0.12556458;0.20709229 +22099;0;-1.2037506;4.4849396;10.300781 +22099;1;-0.5128524;4.0647244;8.913535 +22099;3;-0.21769714;0.10784912;0.2107544 +22099;4;15.04364;0.7598877;-63.146973 +22099;6;-0.2818903;-0.40816826;0.116332486 +22099;7;0.9412232;-0.25531986;0.22115724;0.0;0.32054493;0.8816231;-0.346398;0.0;-0.10653503 +22099;0;-1.2945099;4.380417;10.300781 +22099;12;0.19833873;0.07946142;0.24639983;0.9453226 +22100;3;-0.23051453;0.09135437;0.21504211 +22100;0;-1.3375092;4.356659;10.334152 +22100;1;-0.5138411;4.055333;8.917754 +22100;3;-0.24334717;0.073028564;0.21809387 +22100;2;0.5138875;-0.4837494;-1.3435383; +22101;0;-1.3948212;4.313904;10.2864685 +22101;12;0.19778235;0.079493396;0.2469626;0.9452896 +22101;3;-0.2506714;0.052261353;0.22114563 +22103;0;-1.4808044;4.2854004;10.3246155 +22103;1;-0.51327384;4.0448575;8.922544 +22103;3;-0.2543335;0.033935547;0.22297668 +22105;4;14.593506;0.9094238;-62.997437 +22105;6;-0.21390517;-0.38983494;0.14245318 +22105;7;0.9558576;-0.19635086;0.21859218;0.0;0.26285216;0.9038911;-0.33747527;0.0;-0.13131997 +22105;0;-1.5285797;4.252136;10.348465 +22105;3;-0.2574005;0.014389038;0.22358704 +22106;12;0.19719052;0.07942549;0.24750142;0.945278 +22107;0;-1.5715637;4.185623;10.338928 +22108;1;-0.51114887;4.0339823;8.9275875 +22108;3;-0.25679016;-0.0039367676;0.22480774 +22110;0;-1.5476837;4.095352;10.367554 +22110;12;0.19659577;0.079271704;0.2480557;0.9452696 +22110;3;-0.2518921;-0.02104187;0.22602844 +22112;0;-1.4330444;4.000351;10.353241 +22112;1;-0.5073685;4.023004;8.932756 +22112;3;-0.24700928;-0.04119873;0.21626282 +22114;5;999.5913 +22115;4;15.492249;1.2084961;-63.746643 +22115;6;-0.26378208;-0.36553678;0.13754112 +22115;7;0.9435152;-0.24350753;0.22468467;0.0;0.30558544;0.901628;-0.30607912;0.0;-0.12804943 +22115;0;-1.4330444;4.009842;10.358002 +22115;3;-0.2390747;-0.063186646;0.20343018 +22116;12;0.19602174;0.0790263;0.24859887;0.94526666 +22117;0;-1.4282684;4.028839;10.443863 +22118;1;-0.50213087;4.01243;8.937806 +22118;2;0.9345523;-0.12031889;-1.4233685; +22118;3;-0.22929382;-0.08151245;0.19732666 +22120;0;-1.3996124;4.0668488;10.496323 +22120;3;-0.21524048;-0.09251404;0.18754578 +22121;12;0.195495;0.07870355;0.24908628;0.94527435 +22122;0;-1.3852692;4.0383606;10.510635 +22122;1;-0.4956923;4.0027;8.942527 +22122;3;-0.19752502;-0.09617615;0.1796112 +22124;4;15.942383;1.8096924;-64.497375 +22124;6;-0.28487188;-0.36395282;0.13104165 +22124;7;0.9383975;-0.26262587;0.2245831;0.0;0.32326397;0.89683455;-0.30197352;0.0;-0.12210785 +22125;0;-1.4330444;3.9718475;10.48201 +22125;3;-0.17797852;-0.09739685;0.17532349 +22125;12;0.19503134;0.07832;0.24950437;0.9452917 +22127;0;-1.4521484;3.9433289;10.453384 +22128;1;-0.48920757;3.994332;8.946625 +22128;3;-0.1572113;-0.10044861;0.17105103 +22131;0;-1.4808044;3.9053192;10.362778 +22131;12;0.19464482;0.07794792;0.24988621;0.94530123 +22132;3;-0.13339233;-0.102890015;0.16738892 +22133;1;-0.48276544;3.9877443;8.949913 +22133;0;-1.5046997;3.8863068;10.338928 +22133;3;-0.110183716;-0.10411072;0.16555786 +22136;4;14.743042;1.6586304;-62.69684 +22136;6;-0.2283278;-0.3561133;0.14452262 +22136;7;0.95252657;-0.21214767;0.21837248;0.0;0.27289644;0.9129336;-0.30344665;0.0;-0.13498408 +22136;0;-1.5046997;3.8863068;10.3246155 +22136;3;-0.085739136;-0.103500366;0.16494751 +22136;12;0.19435485;0.07759732;0.2502384;0.9452966 +22137;2;0.9405815;0.04978323;-1.4653368; +22137;1;-0.47632584;3.9831862;8.952288 +22137;0;-1.4808044;3.8910675;10.300781 +22137;3;-0.06008911;-0.102890015;0.16494751 +22139;0;-1.4760437;3.9148254;10.248322 +22139;12;0.19417518;0.07727206;0.25057185;0.94527185 +22140;3;-0.03564453;-0.10105896;0.16677856 +22142;1;-0.46993446;3.9808364;8.9536705 +22142;0;-1.4473724;3.9290771;10.238785 +22142;3;-0.011230469;-0.094955444;0.16799927 +22144;4;14.292908;3.1585693;-63.746643 +22144;6;-0.19787754;-0.36311802;0.14043126 +22144;7;0.9610603;-0.18376997;0.20637785;0.0;0.24339941;0.9165525;-0.3173146;0.0;-0.13084324 +22144;0;-1.4473724;3.9290771;10.172012 +22144;3;0.013824463;-0.08944702;0.17166138 +22144;12;0.19412404;0.076949306;0.25074574;0.9452626 +22150;0;-1.4091492;3.933838;10.148163 +22151;1;-0.46386668;3.9806464;8.954071 +22151;3;0.038253784;-0.08029175;0.17715454 +22151;0;-1.3804932;3.933838;10.100464 +22151;3;0.062683105;-0.07052612;0.18205261 +22151;12;0.19416878;0.07670608;0.25107703;0.9451851 +22152;1;-0.4582813;3.982644;8.953471 +22152;0;-1.3566132;3.9670868;10.005081 +22152;3;0.086517334;-0.06135559;0.18754578 +22152;5;999.5913 +22155;4;15.342712;1.9592285;-63.597107 +22155;6;-0.25423363;-0.37438095;0.1347705 +22156;7;0.94672215;-0.23408316;0.22118402;0.0;0.29677984;0.9008171;-0.31693938;0.0;-0.12505615 +22156;0;-1.3709412;3.9813385;9.933533 +22156;3;0.106674194;-0.051574707;0.19303894 +22156;12;0.1943222;0.076526955;0.25142917;0.9450746 +22156;0;-1.3757172;3.9908295;9.871536 +22156;1;-0.4533346;3.9867346;8.951901 +22156;2;0.918761;0.05576563;-1.1470966; +22156;3;0.1274414;-0.041809082;0.20159912 +22160;0;-1.3183899;3.9955902;9.761841 +22161;12;0.19457467;0.076415;0.2518055;0.9449315 +22161;3;0.14698792;-0.0332489;0.21382141 +22161;1;-0.44881117;3.9926589;8.949489 +22161;0;-1.2945099;3.9575806;9.695084 +22161;3;0.16348267;-0.027145386;0.21992493 +22164;4;15.04364;1.6586304;-62.69684 +22165;6;-0.252875;-0.3844777;0.1327372 +22165;7;0.9472608;-0.23192342;0.22115272;0.0;0.2960494;0.89751345;-0.3268402;0.0;-0.12268564 +22165;0;-1.2419586;3.9433289;9.609222 +22165;3;0.17692566;-0.030197144;0.22419739 +22165;12;0.19491372;0.07635649;0.2522096;0.9447585 +22169;0;-1.2085114;3.843567;9.575851 +22169;1;-0.44431394;3.9999835;8.946442 +22169;3;0.18730164;-0.038146973;0.22480774 +22169;12;0.19531998;0.07632796;0.25265905;0.9445569 +22169;0;-1.1368561;3.8388062;9.561539 +22169;3;0.19586182;-0.047302246;0.22358704 +22170;1;-0.43899563;4.008131;8.943058 +22171;0;-1.0222168;3.7628021;9.523392 +22171;3;0.20257568;-0.054641724;0.21870422 +22172;4;14.442444;1.3595581;-64.34631 +22172;6;-0.28875443;-0.3743317;0.10692807 +22172;7;0.9420121;-0.26503956;0.20583339;0.0;0.32054034;0.8922184;-0.31811985;0.0;-0.099333994 +22173;0;-0.91711426;3.7770538;9.4423065 +22173;3;0.2074585;-0.058914185;0.2119751 +22173;12;0.1957838;0.07626705;0.25310537;0.9443462 +22175;1;-0.43293533;4.0169153;8.939411 +22175;0;-0.8120117;3.796051;9.404144 +22175;2;0.6519674;0.17005777;-0.64185524; +22175;3;0.21235657;-0.0650177;0.20709229 +22178;0;-0.75468445;3.7580414;9.308762 +22178;12;0.19629396;0.07617587;0.25352743;0.9441344 +22178;3;0.21784973;-0.06806946;0.20098877 +22180;1;-0.4266128;4.0259895;8.935632 +22180;0;-0.73080444;3.7390442;9.256302 +22180;3;0.22029114;-0.071746826;0.19364929 +22182;4;15.193176;0.9094238;-63.29651 +22182;6;-0.3881047;-0.38282546;0.07878866 +22182;7;0.9116302;-0.35104093;0.21377662;0.0;0.40447468;0.85862434;-0.31490356;0.0;-0.07300979 +22182;0;-0.68782043;3.6535187;9.184769 +22182;3;0.2233429;-0.074798584;0.18754578 +22183;12;0.1968233;0.07606912;0.25390318;0.9439318 +22184;1;-0.42009652;4.0353165;8.931733 +22184;0;-0.65914917;3.5727692;9.175232 +22184;3;0.22395325;-0.07723999;0.18144226 +22188;12;0.19736853;0.075952575;0.2542597;0.94373137 +22188;0;-0.63049316;3.5109863;9.108459 +22188;3;0.2257843;-0.08029175;0.17532349 +22189;1;-0.41356197;4.044561;8.9278555 +22192;12;0.19791433;0.07582914;0.25458366;0.9435397 +22194;1;-0.4070404;4.0537105;8.924005 +22194;0;-0.6018219;3.449234;9.027374 +22194;3;0.22518921;-0.08151245;0.17227173 +22194;5;999.5913 +22194;4;15.342712;1.05896;-63.89618 +22194;6;-0.43075567;-0.36422995;0.06656782 +22194;7;0.8967435;-0.39016512;0.20885925;0.0;0.43816411;0.8490415;-0.29519612;0.0;-0.06215494 +22194;0;-0.6018219;3.4112244;8.965378 +22194;3;0.22395325;-0.0821228;0.16799927 +22194;0;-0.5874939;3.3969727;8.965378 +22194;2;0.21646759;0.5110369;-0.21008873; +22194;3;0.22518921;-0.082733154;0.16311646 +22196;0;-0.5349426;3.3922272;8.922455 +22196;12;0.19845867;0.0757;0.25488797;0.94335353 +22197;3;0.22822571;-0.0821228;0.16189575 +22199;0;-0.5206146;3.3161926;8.893829 +22199;1;-0.40055558;4.0628834;8.920126 +22199;3;0.23190308;-0.0796814;0.16004944 +22201;4;14.442444;1.6586304;-63.146973 +22201;6;-0.42284766;-0.35633758;0.058469888 +22201;7;0.90200037;-0.38458052;0.19619645;0.0;0.42824757;0.8546377;-0.29359582;0.0;-0.05476564 +22202;0;-0.49195862;3.259201;8.81752 +22202;12;0.1990058;0.07556067;0.25513095;0.9431837 +22202;3;0.23617554;-0.07662964;0.15882874 +22203;1;-0.3942657;4.072262;8.916128 +22204;0;-0.47763062;3.235443;8.769836 +22204;3;0.2416687;-0.071746826;0.16004944 +22215;0;-0.47763062;3.2259216;8.750748 +22215;12;0.19956084;0.075444475;0.25541216;0.94299966 +22215;3;0.24839783;-0.066848755;0.16067505 +22215;0;-0.47763062;3.202179;8.741211 +22216;1;-0.38833204;4.0820713;8.911902 +22216;3;0.2575531;-0.060134888;0.16189575 +22216;4;14.292908;0.9094238;-62.547302 +22216;6;-0.44832277;-0.35066795;0.05458696 +22216;7;0.8917089;-0.40707612;0.19784878;0.0;0.44969952;0.84633297;-0.2854661;0.0;-0.05123953 +22216;0;-0.45373535;3.2069397;8.65538 +22216;3;0.26609802;-0.05218506;0.1612854 +22216;1;-0.38289988;4.0926;8.907308 +22216;12;0.20013452;0.07535408;0.25569773;0.9428079 +22216;2;0.06846821;0.86231136;0.1277113; +22216;0;-0.43940735;3.16893;8.598129 +22216;3;0.27650452;-0.04425049;0.1637268 +22216;0;-0.45851135;3.2069397;8.540909 +22216;12;0.20073958;0.07530299;0.25598922;0.94260424 +22216;3;0.28749084;-0.035705566;0.16616821 +22219;17;1;38dead6d7725;7126;2985;-73; +22219;17;1;38dead6d60ff;6960;4156;-71; +22220;17;1;1c1bb5efa29a;1112;693;-58; +22220;17;1;1c1bb5ecd182;3499;1223;-63; +22221;1;-0.37810996;4.104014;8.902259 +22221;0;-0.44895935;3.1594238;8.49321 +22221;3;0.29849243;-0.027145386;0.16616821 +22221;4;14.442444;1.6586304;-63.146973 +22221;6;-0.43635368;-0.35567707;0.05281182 +22221;7;0.8972663;-0.39618516;0.19480893;0.0;0.43870786;0.8495744;-0.29284614;0.0;-0.04948337 +22221;0;-0.44895935;3.1499176;8.483673 +22222;3;0.3113098;-0.01737976;0.16738892 +22222;12;0.20138343;0.07528923;0.25624433;0.94239855 +22222;0;-0.45851135;3.16893;8.46936 +22223;1;-0.37404013;4.116369;8.896725 +22223;3;0.32170105;-0.006378174;0.17044067 +22225;0;-0.44418335;3.1926727;8.416901 +22225;12;0.20206632;0.075339966;0.2565556;0.9421637 +22226;3;0.33392334;0.005844116;0.17288208 +22227;0;-0.48239136;3.2164307;8.345367 +22227;1;-0.37082532;4.129784;8.890639 +22228;3;0.34429932;0.016220093;0.17410278 +22229;5;999.5913 +22230;4;15.342712;0.30975342;-63.89618 +22230;6;-0.45930693;-0.367311;0.057739235 +22230;7;0.8856791;-0.41375548;0.21066296;0.0;0.46116355;0.83656955;-0.29576966;0.0;-0.053857885 +22230;0;-0.47763062;3.2306824;8.269058 +22230;3;0.35346985;0.028427124;0.17654419 +22231;12;0.20279278;0.07545622;0.25688335;0.94190896 +22232;0;-0.43463135;3.2306824;8.2595215 +22232;1;-0.36848876;4.1441636;8.884044 +22232;2;0.05590889;0.9719658;0.46245766; +22233;3;0.36201477;0.03881836;0.18022156 +22234;0;-0.4298401;3.2639465;8.2070465 +22235;12;0.20355676;0.07563219;0.2572269;0.94163626 +22235;3;0.3687439;0.048599243;0.18510437 +22237;0;-0.45851135;3.2401886;8.178452 +22237;1;-0.36689165;4.159288;8.877039 +22238;3;0.3748474;0.05836487;0.18571472 +22240;4;15.342712;0.009155273;-61.94763 +22240;6;-0.47446024;-0.37667716;0.056004718 +22240;7;0.8787382;-0.42482895;0.21757632;0.0;0.47445732;0.8271756;-0.30111578;0.0;-0.05205112 +22240;0;-0.49195862;3.2544403;8.097366 +22240;3;0.37911987;0.0687561;0.18998718 +22241;12;0.20434678;0.0758659;0.2575885;0.94134736 +22242;0;-0.46806335;3.3779755;8.11644 +22242;1;-0.36608058;4.175007;8.86969 +22243;3;0.38156128;0.07852173;0.19425964 +22244;0;-0.48718262;3.4729767;8.097366 +22245;3;0.38339233;0.08769226;0.20159912 +22245;12;0.20516291;0.07615342;0.25797346;0.9410413 +22247;0;-0.5540619;3.3732147;8.049683 +22247;1;-0.36594012;4.191202;8.862055 +22247;3;0.38461304;0.09806824;0.20770264 +22249;4;14.143372;0.7598877;-62.39624 +22249;6;-0.37330577;-0.39597794;0.06872189 +22249;7;0.9192697;-0.33647528;0.20427336;0.0;0.3884964;0.859076;-0.33325496;0.0;-0.063354276 +22249;0;-0.5683899;3.3304443;7.9495087 +22249;3;0.38217163;0.10784912;0.21260071 +22250;12;0.20598133;0.07649131;0.25839072;0.94072044 +22251;0;-0.49195862;3.3399658;7.901825 +22251;1;-0.36641103;4.207282;8.854413 +22252;2;0.095719814;0.89903593;0.7671814; +22252;3;0.37728882;0.11273193;0.21809387 +22254;0;-0.42507935;3.4112244;7.939972 +22254;12;0.20679101;0.076859646;0.25884378;0.94038826 +22254;3;0.37179565;0.11456299;0.22236633 +22256;0;-0.49195862;3.5394897;7.9208984 +22256;1;-0.366993;4.2231526;8.84683 +22256;3;0.36140442;0.117630005;0.22970581 +22261;4;15.04364;0.30975342;-62.69684 +22261;6;-0.40231884;-0.41951856;0.06202926 +22261;7;0.9084993;-0.3575996;0.21622095;0.0;0.41403356;0.84036434;-0.3498055;0.0;-0.056614082 +22262;1;-0.3677213;4.2384777;8.839468 +22262;12;0.20759004;0.07724446;0.25930843;0.94005257 +22262;0;-0.5062866;3.6345215;7.892288 +22262;3;0.34979248;0.12495422;0.23641968 +22262;0;-0.54927063;3.7010345;7.887512 +22262;3;0.33329773;0.12922668;0.24313354 +22264;0;-0.5779419;3.6725311;7.811203 +22264;12;0.20834851;0.0776388;0.2598239;0.9397099 +22264;3;0.31437683;0.1353302;0.25047302 +22267;0;-0.59706116;3.6012573;7.7969055 +22267;1;-0.3687157;4.2524624;8.832707 +22267;3;0.29605103;0.1377716;0.25535583 +22270;5;999.5913 +22270;4;14.892578;0.45928955;-64.497375 +22270;6;-0.34296626;-0.4315799;0.07642753 +22270;7;0.92827165;-0.30544707;0.21216474;0.0;0.3653794;0.85540754;-0.36711857;0.0;-0.06935202 +22270;0;-0.6018219;3.5822601;7.782593 +22271;12;0.2090245;0.07803263;0.26038095;0.9393729 +22271;3;0.2722168;0.1347351;0.2632904 +22271;1;-0.36961636;4.264738;8.826749 +22271;0;-0.5874939;3.639267;7.7969055 +22271;3;0.24839783;0.13105774;0.27001953 +22271;2;0.14179975;0.69083786;0.9603386; +22275;12;0.20961566;0.07840577;0.26097503;0.9390452 +22275;0;-0.6257019;3.753296;7.863678 +22275;3;0.22090149;0.12922668;0.28102112 +22278;1;-0.36997157;4.275082;8.821729 +22278;0;-0.6687012;3.8103027;7.9304504 +22278;3;0.19158936;0.12922668;0.2901764 +22281;4;15.492249;0.1586914;-63.29651 +22281;6;-0.34745935;-0.44651645;0.08412171 +22282;7;0.9245613;-0.30712542;0.22552262;0.0;0.3734209;0.84805673;-0.37597436;0.0;-0.0757847 +22282;0;-0.68782043;3.8055573;7.9590607 +22282;3;0.1579895;0.12983704;0.30056763 +22282;0;-0.73558044;3.862564;7.944748 +22282;3;0.123168945;0.13166809;0.3097229 +22282;12;0.21010536;0.07872771;0.2615943;0.93873644 +22283;1;-0.36996973;4.282947;8.817913 +22284;0;-0.7403717;3.8197937;7.939972 +22284;12;0.21046348;0.079009086;0.26228395;0.93844014 +22284;3;0.08834839;0.13044739;0.31887817 +22285;1;-0.36968753;4.2879205;8.815508 +22286;0;-0.75468445;3.8530579;7.9685974 +22286;3;0.051696777;0.12861633;0.3292694 +22288;4;15.342712;-0.29144287;-63.597107 +22288;6;-0.32183433;-0.44863787;0.09442566 +22288;7;0.93149525;-0.28500506;0.226028;0.0;0.35369366;0.8547765;-0.37981293;0.0;-0.084954806 +22288;0;-0.74513245;3.9195862;8.016281 +22289;3;0.01626587;0.12495422;0.34088135 +22289;12;0.21066973;0.0792417;0.26302958;0.9381655 +22290;0;-0.7976837;3.933838;8.049683 +22290;1;-0.36881462;4.289958;8.814553 +22290;2;0.32137388;0.46914864;0.8425293; +22291;3;-0.017944336;0.121292114;0.35125732 +22293;12;0.21072087;0.07941103;0.26383272;0.93791413 +22296;0;-0.7738037;3.938568;8.111679 +22296;3;-0.053970337;0.12007141;0.36164856 +22296;0;-0.8120117;3.9908295;8.130753 +22296;1;-0.36726534;4.2890725;8.815048 +22296;3;-0.08757019;0.1164093;0.37202454 +22298;4;15.193176;0.9094238;-63.29651 +22298;6;-0.29434568;-0.45432618;0.09953914 +22298;7;0.93960285;-0.26068372;0.22178917;0.0;0.33041343;0.859912;-0.38907376;0.0;-0.089293964 +22298;0;-0.845459;4.0621033;8.178452 +22299;3;-0.11933899;0.11273193;0.38058472 +22300;12;0.21063013;0.07950268;0.26463825;0.9376998 +22300;0;-0.874115;4.0478516;8.2595215 +22300;1;-0.3651398;4.285422;8.816913 +22300;3;-0.15049744;0.11151123;0.3885193 +22302;0;-0.89323425;3.9955902;8.345367 +22302;3;-0.18226624;0.11273193;0.3946228 +22303;12;0.21038504;0.07954194;0.26555237;0.937493 +22304;0;-0.92666626;4.024109;8.41214 +22305;1;-0.362646;4.278955;8.820156 +22305;3;-0.21340942;0.11151123;0.40135193 +22306;5;999.5892 +22307;4;16.693115;0.30975342;-63.89618 +22307;6;-0.32651922;-0.4438505;0.10971584 +22307;7;0.926388;-0.28966922;0.24061808;0.0;0.36335498;0.855389;-0.36916527;0.0;-0.09888625 +22308;0;-0.93621826;4.024109;8.46936 +22308;3;-0.24395752;0.11273193;0.4099121 +22308;12;0.20999627;0.07952912;0.266517;0.93730754 +22309;0;-0.97442627;4.019348;8.550446 +22309;1;-0.35995293;4.269864;8.82467 +22309;2;0.49212876;0.2812481;0.5045366; +22309;3;-0.2732849;0.11273193;0.41539 +22313;0;-1.0174255;4.009842;8.6362915 +22313;3;-0.2995453;0.11395264;0.42089844 +22314;12;0.20946698;0.07947203;0.2675181;0.9371456 +22314;0;-1.0269775;4.028839;8.693527 +22314;3;-0.32826233;0.1164093;0.4251709 +22314;1;-0.35715657;4.2582693;8.830384 +22318;4;15.193176;-0.14038086;-64.94751 +22318;6;-0.26443577;-0.4313282;0.11758634 +22318;7;0.9457557;-0.23742664;0.2217539;0.0;0.30690205;0.876835;-0.37009668;0.0;-0.106570765 +22318;0;-1.0222168;4.019348;8.784149 +22318;3;-0.35757446;0.1182251;0.4312744 +22319;12;0.20881173;0.07936063;0.26849598;0.9370216 +22319;0;-1.0747681;3.9670868;8.850922 +22319;1;-0.3543502;4.2441077;8.837313 +22319;3;-0.3862915;0.121292114;0.43434143 +22321;0;-1.0938568;4.000351;8.903381 +22322;12;0.20801225;0.0792314;0.26957768;0.9368998 +22322;3;-0.41133118;0.12310791;0.43678284 +22323;0;-1.0699768;3.952835;8.974915 +22324;1;-0.35169527;4.2276006;8.845327 +22324;3;-0.4363861;0.12678528;0.43922424 +22325;4;15.942383;-0.74157715;-63.746643 +22325;6;-0.31479946;-0.41227156;0.11865856 +22325;7;0.9294856;-0.28368318;0.23575498;0.0;0.35255164;0.87118894;-0.34166837;0.0;-0.10846157 +22327;0;-0.98876953;3.8863068;9.056 +22327;3;-0.46020508;0.12310791;0.44044495 +22328;12;0.20708495;0.07906833;0.2706828;0.9368004 +22328;0;-0.99354553;3.872055;9.117996 +22328;1;-0.34897846;4.2088256;8.854383 +22328;2;0.6617397;0.26691246;-0.035809517; +22329;3;-0.4840393;0.12007141;0.44166565 +22330;0;-0.9983368;3.8340607;9.203827 +22331;12;0.2060396;0.078872465;0.27180865;0.9367214 +22331;3;-0.5060272;0.11395264;0.4441223 +22333;0;-1.0030975;3.8388062;9.308762 +22334;17;1;38dead6d7725;11057;1179;-69; +22334;17;1;38dead6d60ff;6203;3224;-69; +22335;17;1;1c1bb5efa29a;-754;1454;-60; +22335;17;1;1c1bb5ecd182;4096;1011;-62; +22336;1;-0.3459089;4.187942;8.8644 +22336;3;-0.5261841;0.104782104;0.4441223 +22336;4;14.892578;0.1586914;-63.746643 +22336;6;-0.31125385;-0.38910812;0.10734422 +22336;7;0.9340236;-0.28335944;0.21750249;0.0;0.3431811;0.88079;-0.32624507;0.0;-0.09912937 +22336;0;-0.98399353;3.7675476;9.394608 +22336;3;-0.54389954;0.09440613;0.4429016 +22337;12;0.20489554;0.078606345;0.27286664;0.93668705 +22337;0;-0.97442627;3.7865448;9.4804535 +22338;1;-0.34209666;4.165211;8.875252 +22338;3;-0.56100464;0.08157349;0.4398346 +22340;0;-0.9648895;3.7580414;9.532913 +22340;12;0.20366266;0.078288905;0.27400455;0.93665034 +22341;3;-0.575058;0.06385803;0.4373932 +22342;0;-0.9696655;3.6962738;9.613998 +22342;1;-0.33727115;4.1409473;8.886783 +22343;3;-0.587265;0.04309082;0.43251038 +22344;5;999.5892 +22345;4;15.492249;-0.440979;-62.547302 +22345;6;-0.3876639;-0.36535344;0.10051983 +22345;7;0.907568;-0.353076;0.22728348;0.0;0.40931115;0.86468995;-0.29116252;0.0;-0.09372724 +22345;0;-0.94099426;3.6535187;9.685532 +22345;3;-0.5946045;0.022323608;0.4251709 +22346;12;0.2023651;0.077888384;0.27512446;0.9366367 +22347;0;-0.92666626;3.6677704;9.747543 +22347;1;-0.3309428;4.1155505;8.898811 +22348;3;-0.597641;-2.746582E-4;0.41967773 +22348;2;0.6160277;0.39227724;-0.61061; +22349;0;-0.91233826;3.5965118;9.795227 +22354;12;0.20103748;0.07738419;0.2762073;0.9366458 +22354;3;-0.5958252;-0.02470398;0.41357422 +22354;0;-0.883667;3.5870209;9.881073 +22354;1;-0.322935;4.0897455;8.910994 +22354;3;-0.5897064;-0.046081543;0.40623474 +22354;4;15.04364;-0.29144287;-64.34631 +22354;6;-0.39851633;-0.34695035;0.08919299 +22354;7;0.90622085;-0.364929;0.21351989;0.0;0.41442364;0.86672115;-0.27757454;0.0;-0.08376717 +22355;0;-0.86935425;3.5727692;10.014618 +22355;3;-0.5799408;-0.06990051;0.40257263 +22355;12;0.19972344;0.07676669;0.27719876;0.9366848 +22357;0;-0.835907;3.548996;10.08139 +22357;1;-0.3132083;4.0642977;8.922976 +22357;3;-0.5640564;-0.090667725;0.39891052 +22359;0;-0.7785797;3.525238;10.1577 +22359;12;0.19845708;0.076064564;0.27818257;0.9367196 +22360;3;-0.54267883;-0.10411072;0.3940277 +22361;0;-0.68304443;3.515747;10.10524 +22361;1;-0.30185112;4.0400887;8.934354 +22362;3;-0.5176239;-0.11265564;0.3903656 +22364;4;14.892578;0.45928955;-64.94751 +22364;6;-0.4442857;-0.33410788;0.067490436 +22364;7;0.8913569;-0.4060457;0.20151827;0.0;0.4488026;0.8529894;-0.26643038;0.0;-0.06371004 +22364;0;-0.6687012;3.4872284;10.100464 +22364;3;-0.4870758;-0.118774414;0.38790894 +22365;12;0.19728763;0.07529153;0.27912492;0.93674874 +22366;0;-0.6161499;3.4682465;10.095703 +22366;1;-0.289798;4.0179996;8.944709 +22367;2;0.46923783;0.50984097;-1.098299; +22367;3;-0.45654297;-0.12365723;0.38180542 +22369;0;-0.5827179;3.4729767;10.071854 +22369;12;0.19624439;0.07451111;0.28003308;0.9367591 +22369;3;-0.42233276;-0.12609863;0.3775177 +22371;0;-0.5349426;3.449234;10.162476 +22371;1;-0.27747777;3.9985514;8.95381 +22371;3;-0.38690186;-0.12365723;0.3738556 +22373;4;16.842651;-0.74157715;-64.19678 +22373;6;-0.5881509;-0.32678768;0.052590467 +22373;7;0.8214557;-0.52546144;0.22158685;0.0;0.568095;0.78793895;-0.23752947;0.0;-0.04978434 +22374;0;-0.5062866;3.425476;10.21492 +22374;3;-0.3520813;-0.115722656;0.37202454 +22374;12;0.19534525;0.07375127;0.28090304;0.93674684 +22376;0;-0.46806335;3.4682465;10.167236 +22376;1;-0.26545867;3.9820356;8.961531 +22376;3;-0.31726074;-0.10227966;0.37080383 +22379;0;-0.45373535;3.4919891;10.100464 +22379;12;0.1946033;0.07305231;0.28174976;0.9367017 +22379;3;-0.27755737;-0.08395386;0.37141418 +22381;0;-0.5301666;3.4919891;10.152924 +22381;1;-0.25466162;3.968672;8.967771 +22381;3;-0.23968506;-0.058914185;0.37141418 +22383;5;999.5892 +22383;0;-0.49671936;3.5347595;9.928772 +22383;4;15.942383;-1.1901855;-61.79657 +22384;6;-0.5746012;-0.34162575;0.0499866 +22384;7;0.8292627;-0.5120919;0.22379732;0.0;0.55687255;0.79090077;-0.25371057;0.0;-0.04707833 +22384;12;0.19400796;0.07246793;0.28259066;0.9366173 +22384;3;-0.2012024;-0.025924683;0.376297 +22385;0;-0.40119934;3.5965118;9.752304 +22385;1;-0.24598031;3.9587998;8.972375 +22386;2;0.22957641;0.49926186;-1.1112328; +22386;3;-0.16453552;0.0040130615;0.38424683 +22388;0;-0.38685608;3.6535187;9.599686 +22388;12;0.19356772;0.07204666;0.28344807;0.9364817 +22388;3;-0.12484741;0.027832031;0.3903656 +22391;0;-0.39163208;3.663025;9.4470825 +22391;1;-0.2394687;3.952393;8.975374 +22391;3;-0.09185791;0.04675293;0.3915863 +22393;4;15.342712;0.30975342;-63.89618 +22393;6;-0.49346694;-0.36960483;0.041431624 +22393;7;0.87285256;-0.44169435;0.2074476;0.0;0.48645315;0.8212226;-0.29825592;0.0;-0.0386227 +22393;0;-0.38685608;3.70578;9.451843 +22393;3;-0.06008911;0.057144165;0.3915863 +22394;12;0.1932683;0.07179994;0.2843386;0.9362925 +22395;0;-0.37728882;3.7010345;9.385086 +22395;1;-0.23447861;3.9490738;8.976968 +22396;3;-0.03504944;0.06692505;0.3909607 +22397;0;-0.34864807;3.729538;9.365997 +22398;3;-0.013656616;0.076690674;0.38974 +22398;12;0.19310364;0.07168365;0.28525358;0.9360571 +22400;0;-0.30085754;3.8103027;9.270599 +22400;1;-0.230302;3.9480886;8.977509 +22401;3;0.0034332275;0.08157349;0.38546753 +22402;4;14.593506;0.45928955;-63.29651 +22402;6;-0.4704734;-0.38977596;0.032441482 +22402;7;0.8852977;-0.41930756;0.20106976;0.0;0.46405572;0.8244971;-0.32381603;0.0;-0.03000292 +22403;0;-0.24832153;3.8863068;9.189545 +22403;3;0.018096924;0.085250854;0.38058472 +22403;12;0.19305386;0.07164603;0.28616634;0.9357917 +22405;0;-0.20054626;3.9765778;9.065521 +22405;1;-0.22663672;3.9488757;8.977257 +22405;2;0.08286773;0.2158339;-0.38467693; +22405;3;0.02848816;0.08830261;0.3757019 +22407;0;-0.19099426;4.0478516;8.927231 +22408;12;0.1930905;0.07166214;0.28706187;0.93550855 +22408;3;0.038253784;0.08708191;0.36714172 +22409;0;-0.11933899;4.0716095;8.831833 +22410;1;-0.22328585;3.9508882;8.976454 +22412;3;0.046188354;0.08647156;0.3579712 +22416;4;14.892578;1.5090942;-64.19678 +22416;6;-0.4596918;-0.43194166;0.013511547 +22416;7;0.893598;-0.40292275;0.19782814;0.0;0.44870052;0.81387854;-0.3691474;0.0;-0.012270201 +22417;12;0.1931913;0.0716866;0.28782958;0.93524987 +22417;1;-0.22016376;3.9535742;8.975348 +22417;0;-0.13366699;4.085861;8.73645 +22417;3;0.048034668;0.08401489;0.34576416 +22417;0;-0.11933899;4.043091;8.631531 +22417;3;0.04864502;0.07974243;0.33476257 +22418;0;-0.100234985;4.0621033;8.569519 +22418;3;0.046188354;0.07546997;0.32255554 +22418;12;0.19331706;0.071745336;0.28864977;0.93496656 +22421;0;-0.08111572;4.057358;8.474136 +22421;1;-0.21710323;3.9563246;8.974212 +22423;3;0.041915894;0.07241821;0.30911255 +22424;0;-0.042907715;4.123871;8.393066 +22424;3;0.035202026;0.069366455;0.29566956 +22424;4;15.04364;-0.29144287;-62.39624 +22424;6;-0.4948256;-0.45669252;0.0051122364 +22424;7;0.8789695;-0.4262107;0.213909;0.0;0.4768559;0.78986025;-0.38565418;0.0;-0.004588294 +22424;5;999.5892 +22425;12;0.19345261;0.07179712;0.2894144;0.9346982 +22425;0;-0.0046844482;4.142868;8.397842 +22425;1;-0.21415582;3.9588199;8.973182 +22425;3;0.029708862;0.064468384;0.28224182 +22425;2;-0.13579603;-0.08845115;0.33824253; +22427;0;0.0048675537;4.1476135;8.321533 +22428;3;0.022369385;0.060195923;0.27001953 +22428;12;0.19357501;0.07183748;0.29011896;0.9344513 +22429;0;0.03831482;4.1618805;8.254761 +22429;1;-0.21127284;3.960832;8.9723625 +22430;3;0.011383057;0.05836487;0.2596283 +22431;4;15.792847;-0.59051514;-62.39624 +22431;6;-0.5287048;-0.4669812;-0.0046415087 +22431;7;0.86450577;-0.45040837;0.22307402;0.0;0.50260574;0.7710115;-0.39106095;0.0;0.004144534 +22432;0;0.062194824;4.185623;8.2165985 +22432;3;0.0034332275;0.05470276;0.247406 +22433;12;0.19367753;0.07185959;0.29075852;0.93422943 +22434;0;0.071746826;4.166626;8.164139 +22434;1;-0.20850417;3.9621022;8.971866 +22435;3;-0.0075683594;0.051651;0.23825073 +22436;0;0.16729736;4.190384;7.98291 +22437;12;0.19374499;0.07186412;0.2913532;0.93402994 +22438;3;-0.017944336;0.043701172;0.23274231 +22440;1;-0.20559439;3.9626284;8.971701 +22443;12;0.19376796;0.07185226;0.29190487;0.9338537 +22443;0;0.10517883;4.209381;8.021057 +22443;3;-0.033203125;0.017440796;0.22970581 +22446;2;-0.23759782;-0.1926508;0.8028927; +22448;4;16.693115;0.7598877;-63.146973 +22448;6;-0.52986676;-0.48324803;-0.013112088 +22448;7;0.8658795;-0.44754308;0.2235126;0.0;0.5001179;0.76406693;-0.40753368;0.0;0.011610295 +22448;0;-0.11456299;4.190384;8.173676 +22448;3;-0.052139282;-0.0069885254;0.22358704 +22448;0;-0.21487427;4.2283936;8.106903 +22448;1;-0.20148203;3.9617794;8.972169 +22448;3;-0.07229614;-0.016159058;0.21626282 +22448;0;-0.12411499;4.252136;8.03537 +22448;12;0.19375183;0.071741626;0.29241943;0.9337046 +22449;1;-0.19641368;3.959402;8.9733305 +22449;3;-0.0900116;-0.020431519;0.20831299 +22449;0;0.10041809;4.290146;8.03537 +22450;3;-0.10101318;-0.019821167;0.20404053 +22451;4;15.942383;-0.74157715;-61.79657 +22451;6;-0.53264266;-0.49037194;-0.012496359 +22451;7;0.8643893;-0.44796997;0.22837238;0.0;0.50270224;0.7599507;-0.4120258;0.0;0.011023472 +22452;0;0.18640137;4.266403;8.049683 +22456;17;1;38dead6d7725;11569;841;-70; +22456;17;1;38dead6d60ff;11053;3330;-70; +22458;17;1;1c1bb5efa29a;1221;753;-57; +22458;17;1;1c1bb5ecd182;3962;2255;-62; +22459;12;0.19367412;0.07153673;0.29289868;0.9335863 +22459;3;-0.10774231;-0.011260986;0.20526123 +22459;1;-0.1913436;3.9559853;8.974947 +22459;0;0.1577301;4.233139;8.049683 +22459;3;-0.113845825;0.0015716553;0.21136475 +22459;0;0.09562683;4.199875;8.044907 +22459;3;-0.12055969;0.015609741;0.2107544 +22460;12;0.1935367;0.0713261;0.29336894;0.9334832 +22460;1;-0.18732199;3.9519053;8.97683 +22460;0;0.052627563;4.166626;8.073517 +22460;3;-0.12910461;0.025985718;0.20526123 +22461;4;14.593506;0.1586914;-62.547302 +22461;6;-0.48046628;-0.47642452;-0.0065184506 +22461;7;0.8881424;-0.41072312;0.2061789;0.0;0.45953202;0.7880281;-0.40968546;0.0;0.005792517 +22461;0;0.1481781;4.176132;8.09259 +22461;3;-0.13705444;0.036987305;0.19732666 +22462;12;0.19334885;0.071157366;0.29386973;0.93337744 +22462;5;999.58075 +22463;2;-0.30177087;-0.24452162;0.90707874; +22463;1;-0.1844075;3.947177;8.97897 +22463;0;0.1481781;4.180893;8.08783 +22463;3;-0.14561462;0.045532227;0.19181824 +22467;0;0.119506836;4.1713715;8.11644 +22467;3;-0.15293884;0.053482056;0.18876648 +22467;12;0.19311167;0.07103278;0.29435605;0.9332828 +22467;0;0.1434021;4.1951294;8.140289 +22467;1;-0.18248503;3.941654;8.981436 +22468;3;-0.1572113;0.060806274;0.18266296 +22472;4;14.292908;1.2084961;-62.547302 +22472;6;-0.47947618;-0.47579193;-0.01761452 +22472;7;0.89082086;-0.41007644;0.19564146;0.0;0.45408493;0.7886916;-0.41445455;0.0;0.015657268 +22472;12;0.1928332;0.0709051;0.2946703;0.9332509 +22472;0;0.1720581;4.2046356;8.154587 +22472;3;-0.16209412;0.065704346;0.17654419 +22472;0;0.1529541;4.166626;8.202286 +22472;3;-0.16516113;0.0663147;0.17044067 +22472;1;-0.18132754;3.9356906;8.984073 +22474;0;0.1481781;4.11911;8.269058 +22475;12;0.19250332;0.07083943;0.2951308;0.9331785 +22475;3;-0.16760254;0.065704346;0.1637268 +22477;0;0.07652283;4.1523743;8.316757 +22477;1;-0.18060687;3.9293032;8.986883 +22477;3;-0.17126465;0.0663147;0.15760803 +22479;4;14.892578;0.1586914;-65.24658 +22479;6;-0.48745325;-0.463053;-0.0092007825 +22479;7;0.88541603;-0.41905385;0.20107763;0.0;0.46472633;0.79048675;-0.39894867;0.0;0.008231759 +22479;0;0.009643555;4.142868;8.35968 +22479;3;-0.17616272;0.0687561;0.15394592 +22480;12;0.19214946;0.0707877;0.29556412;0.9331182 +22481;0;-0.028564453;4.1618805;8.378754 +22481;1;-0.18034957;3.9225702;8.989829 +22482;2;-0.30192918;-0.21404147;0.7350035; +22482;3;-0.17919922;0.06997681;0.15211487 +22484;0;-0.042907715;4.185623;8.407364 +22484;12;0.1917748;0.07074495;0.29597285;0.93306893 +22484;3;-0.18287659;0.07058716;0.15150452 +22487;1;-0.18036358;3.915549;8.992888 +22487;0;-0.07635498;4.209381;8.431213 +22487;3;-0.18409729;0.07058716;0.15272522 +22492;4;14.892578;1.5090942;-63.29651 +22492;6;-0.44947416;-0.46304035;0.00905598 +22492;7;0.8988813;-0.38873938;0.2022231;0.0;0.43811738;0.80583334;-0.39835396;0.0;-0.008102261 +22492;0;-0.12890625;4.199875;8.483673 +22493;12;0.19138774;0.07068892;0.296274;0.93305707 +22493;1;-0.18039909;3.9082515;8.996062 +22493;3;-0.1877594;0.06814575;0.15333557 +22493;0;-0.100234985;4.180893;8.579071 +22494;3;-0.19081116;0.06814575;0.15272522 +22494;0;-0.16233826;4.180893;8.6792145 +22495;12;0.19097637;0.07064741;0.29667842;0.9330161 +22495;3;-0.19386292;0.06997681;0.15333557 +22496;0;-0.19099426;4.1713715;8.73645 +22496;1;-0.1805125;3.900568;8.999393 +22496;3;-0.19752502;0.07241821;0.15638733 +22500;12;0.190547;0.07060346;0.29708302;0.9329784 +22500;4;14.593506;-0.74157715;-64.19678 +22500;6;-0.45262736;-0.4453668;0.021858288 +22501;7;0.8949686;-0.39466944;0.20800747;0.0;0.44569272;0.8115767;-0.3777579;0.0;-0.0197245 +22501;0;-0.18621826;4.214142;8.78891 +22501;3;-0.20303345;0.076690674;0.15638733 +22501;0;-0.22442627;4.223633;8.807983 +22501;3;-0.2060852;0.0821991;0.15516663 +22501;1;-0.18084398;3.8925521;9.002857 +22501;5;999.58075 +22501;2;-0.0641247;-0.27655578;0.3765831; +22503;0;-0.26264954;4.2378845;8.879532 +22503;12;0.19009589;0.070568234;0.29749814;0.93294084 +22503;3;-0.21096802;0.088912964;0.15577698 +22505;0;-0.3343048;4.1143646;8.989227 +22505;1;-0.18179838;3.8840644;9.006503 +22505;3;-0.21524048;0.09623718;0.15516663 +22507;4;14.743042;1.05896;-63.89618 +22507;6;-0.41897917;-0.42897686;0.037172362 +22508;7;0.9065849;-0.36996615;0.20304875;0.0;0.42066795;0.83073366;-0.3645819;0.0;-0.033796456 +22508;0;-0.26264954;4.057358;8.908142 +22508;3;-0.22013855;0.11029053;0.14845276 +22508;12;0.18961509;0.07052856;0.29780284;0.9329445 +22510;0;-0.19099426;4.1571198;8.874756 +22510;1;-0.18349463;3.8751318;9.010316 +22510;3;-0.22685242;0.11578369;0.14112854 +22512;0;-0.16711426;4.214142;8.822296 +22513;12;0.18910348;0.07054229;0.29822448;0.9329126 +22513;3;-0.23478699;0.117630005;0.13500977 +22515;0;-0.26742554;4.266403;8.912918 +22515;1;-0.18601692;3.8657973;9.014274 +22515;3;-0.24090576;0.11456299;0.12890625 +22517;4;15.792847;-0.59051514;-64.34631 +22517;6;-0.46773124;-0.44626847;0.029995264 +22517;7;0.886356;-0.40670666;0.22127533;0.0;0.46221337;0.8051764;-0.3715506;0.0;-0.027053589 +22518;0;-0.3534088;4.2283936;9.041687 +22518;3;-0.24395752;0.109680176;0.122802734 +22518;12;0.18854864;0.0705913;0.2986219;0.9328941 +22520;0;-0.39163208;4.190384;9.132294 +22520;1;-0.1887766;3.855808;9.018494 +22520;2;0.06810132;-0.30153513;0.06179142; +22520;3;-0.24639893;0.10784912;0.118515015 +22522;0;-0.4298401;4.123871;9.184769 +22522;12;0.18795761;0.07063008;0.29899108;0.9328921 +22522;3;-0.24884033;0.1035614;0.11668396 +22524;0;-0.44418335;4.1048584;9.14183 +22524;1;-0.19150163;3.8454487;9.022858 +22525;3;-0.25006104;0.09989929;0.11607361 +22527;4;14.892578;0.9094238;-63.29651 +22527;6;-0.41216007;-0.4215977;0.04854983 +22527;7;0.9072224;-0.36551234;0.20820221;0.0;0.418314;0.8360267;-0.35506707;0.0;-0.044281226 +22528;0;-0.46328735;4.100113;9.098923 +22528;12;0.18736087;0.07064341;0.29927313;0.9329207 +22528;3;-0.24884033;0.09135437;0.11302185 +22529;0;-0.46806335;4.1571198;9.089371 +22530;1;-0.19390678;3.835003;9.02725 +22530;3;-0.24700928;0.07791138;0.106918335 +22532;0;-0.45373535;4.1571198;9.132294 +22532;12;0.18676183;0.07064917;0.29961205;0.9329316 +22532;3;-0.24334717;0.06385803;0.102630615 +22534;0;-0.44895935;4.1048584;9.256302 +22534;1;-0.19538856;3.8247614;9.031563 +22534;3;-0.24029541;0.053482056;0.09591675 +22536;4;15.492249;1.2084961;-63.746643 +22536;6;-0.42736298;-0.41697204;0.048465118 +22536;7;0.90086114;-0.37896016;0.21175066;0.0;0.4318415;0.8320873;-0.34805706;0.0;-0.044295255 +22537;0;-0.4202881;4.1143646;9.327835 +22537;3;-0.2354126;0.05104065;0.090408325 +22538;12;0.18618618;0.070602745;0.29991585;0.9329526 +22538;5;999.58075 +22539;0;-0.35820007;4.085861;9.394608 +22539;1;-0.19619109;3.8147187;9.035792 +22540;2;0.21850356;-0.27831554;-0.17872334; +22540;3;-0.23173523;0.050430298;0.086746216 +22541;0;-0.38685608;4.1286316;9.404144 +22541;12;0.18563749;0.070520185;0.300185;0.9329816 +22542;3;-0.22380066;0.049209595;0.08369446 +22544;0;-0.40119934;4.090622;9.399368 +22544;1;-0.19704157;3.8051062;9.039825 +22544;3;-0.21585083;0.047973633;0.078201294 +22546;4;15.492249;1.2084961;-63.746643 +22546;6;-0.44482774;-0.41014692;0.04265776 +22546;7;0.8945466;-0.3946141;0.20991926;0.0;0.44526055;0.8278182;-0.34126264;0.0;-0.039107956 +22546;0;-0.36297607;4.100113;9.370773 +22547;3;-0.20547485;0.04737854;0.07270813 +22547;12;0.18511462;0.070436366;0.30039695;0.93302363 +22548;0;-0.36297607;4.095352;9.327835 +22548;1;-0.19794208;3.7962444;9.043531 +22549;3;-0.19203186;0.045532227;0.065979004 +22551;0;-0.36297607;4.0811005;9.323074 +22551;12;0.18462911;0.07037112;0.3006197;0.933053 +22551;3;-0.17616272;0.044311523;0.062316895 +22553;0;-0.3438568;4.0668488;9.375534 +22553;1;-0.19891863;3.7885067;9.046754 +22554;3;-0.16149902;0.040649414;0.058044434 +22556;4;14.892578;-0.14038086;-63.746643 +22556;6;-0.45840558;-0.40903214;0.03665954 +22556;7;0.889706;-0.40601376;0.20874844;0.0;0.45529354;0.82278204;-0.34020185;0.0;-0.03362782 +22556;0;-0.34864807;4.019348;9.375534 +22556;3;-0.14376831;0.03942871;0.054382324 +22557;12;0.1842001;0.070321545;0.30081183;0.9330796 +22560;0;-0.3534088;4.0621033;9.365997 +22561;1;-0.19982535;3.782082;9.049422 +22561;2;0.14494655;-0.27327037;-0.3293991; +22561;3;-0.12788391;0.040039062;0.04826355 +22561;0;-0.3199768;4.0668488;9.365997 +22562;12;0.18384571;0.07028719;0.30097875;0.93309826 +22569;3;-0.11077881;0.04248047;0.04460144 +22569;1;-0.2009049;3.7771451;9.05146 +22569;0;-0.2960968;4.095352;9.370773 +22569;3;-0.09490967;0.04309082;0.037887573 +22569;12;0.18356894;0.070275694;0.30108854;0.9331181 +22569;4;14.892578;-0.14038086;-63.746643 +22569;6;-0.46645305;-0.41183665;0.031587396 +22569;7;0.88703805;-0.41211858;0.20813863;0.0;0.46078822;0.81848854;-0.3431479;0.0;-0.028941467 +22569;0;-0.28652954;4.100113;9.342148 +22569;3;-0.07841492;0.04737854;0.033599854 +22569;1;-0.20230354;3.7736375;9.052891 +22569;0;-0.25787354;4.057358;9.313538 +22569;3;-0.061309814;0.05104065;0.029327393 +22571;17;1;38dead6d7725;9391;1909;-69; +22572;17;1;38dead6d60ff;9559;3815;-68; +22572;17;1;1c1bb5efa29a;236;1005;-60; +22573;17;1;1c1bb5ecd182;4559;759;-62; +22573;12;0.18335819;0.07030561;0.30120167;0.93312085 +22573;0;-0.2722168;4.0668488;9.299225 +22573;3;-0.044204712;0.057754517;0.025054932 +22573;1;-0.20424353;3.7716098;9.053692 +22573;0;-0.25787354;4.090622;9.289688 +22573;3;-0.03137207;0.065078735;0.022003174 +22576;4;16.392517;1.3595581;-62.69684 +22576;6;-0.5021057;-0.4146497;0.02775199 +22576;7;0.8708534;-0.44048822;0.21813874;0.0;0.49088633;0.8022883;-0.3396531;0.0;-0.025396956 +22577;0;-0.26264954;4.095352;9.21814 +22577;3;-0.017944336;0.07119751;0.017730713 +22577;12;0.18321855;0.07038493;0.30129382;0.93311256 +22577;5;999.58075 +22578;0;-0.24354553;4.1286316;9.213379 +22578;1;-0.20689495;3.770874;9.053939 +22578;2;0.047364563;-0.2921207;-0.258461; +22579;3;-0.0063476562;0.076690674;0.014053345 +22581;0;-0.23876953;4.133362;9.175232 +22581;12;0.18313481;0.070518404;0.30137095;0.933094 +22581;3;0.0034332275;0.080963135;0.011001587 +22583;0;-0.23399353;4.142868;9.108459 +22583;3;0.013214111;0.0821991;0.009170532 +22583;1;-0.21011718;3.7712038;9.053727 +22584;4;16.392517;1.3595581;-62.69684 +22584;6;-0.4952954;-0.42674512;0.025684046 +22584;7;0.87448597;-0.4326664;0.21925813;0.0;0.48448715;0.8009234;-0.3518436;0.0;-0.023378072 +22585;0;-0.25787354;4.123871;9.11322 +22585;12;0.18309689;0.07069498;0.30142352;0.93307114 +22586;3;0.021148682;0.0846405;0.007949829 +22587;0;-0.22921753;4.1523743;9.11322 +22588;1;-0.2136159;3.772352;9.053167 +22593;3;0.027862549;0.0846405;0.0073394775 +22593;0;-0.21487427;4.185623;9.070297 +22595;12;0.18309899;0.07089782;0.30147502;0.9330386 +22595;3;0.034591675;0.08401489;0.0061187744 +22596;1;-0.21719956;3.7742188;9.052304 +22596;0;-0.26264954;4.209381;9.013062 +22596;3;0.037643433;0.0846405;0.0073394775 +22596;12;0.18313617;0.07111773;0.3015203;0.93299997 +22597;4;16.392517;1.3595581;-63.89618 +22597;6;-0.47201383;-0.4367638;0.029132744 +22597;7;0.884674;-0.41199782;0.21819611;0.0;0.46546227;0.80704457;-0.36335096;0.0;-0.026394187 +22597;0;-0.21966553;4.214142;8.979691 +22597;3;0.042526245;0.08157349;0.0073394775 +22597;1;-0.22065057;3.7765265;9.051258 +22597;0;-0.19577026;4.2378845;8.974915 +22598;2;-0.009265244;-0.37474298;-0.027677536; +22598;3;0.0443573;0.07913208;0.005508423 +22600;0;-0.18621826;4.2378845;8.931976 +22600;12;0.1831977;0.07133712;0.3015651;0.93295676 +22601;3;0.047424316;0.076690674;0.0042877197 +22601;0;-0.19099426;4.2616425;8.931976 +22602;1;-0.22388981;3.7791312;9.050092 +22602;3;0.04925537;0.07424927;0.0048980713 +22604;4;16.392517;1.3595581;-63.89618 +22604;6;-0.47963965;-0.44508946;0.021379946 +22604;7;0.8827111;-0.41650048;0.21759672;0.0;0.46951962;0.800727;-0.37200466;0.0;-0.019295473 +22604;0;-0.18144226;4.2188873;8.960602 +22604;3;0.04864502;0.07119751;0.0030670166 +22606;12;0.18327704;0.07154667;0.301586;0.93291837 +22609;0;-0.16233826;4.299652;8.936752 +22609;1;-0.22691222;3.7818778;9.048868 +22609;3;0.04925537;0.069366455;1.5258789E-5 +22609;0;-0.17666626;4.2949066;8.903381 +22610;12;0.18337023;0.07175148;0.30161753;0.932874 +22610;3;0.04864502;0.06692505;1.5258789E-5 +22611;0;-0.17666626;4.3091583;8.927231 +22611;1;-0.22979087;3.78467;9.047628 +22612;3;0.04864502;0.064468384;-0.005493164 +22613;4;15.193176;0.45928955;-63.29651 +22613;6;-0.4611608;-0.44963396;0.019787008 +22613;7;0.89153457;-0.4007589;0.21108869;0.0;0.452602;0.80652577;-0.38035175;0.0;-0.01781914 +22616;0;-0.16233826;4.3329163;8.855682 +22617;3;0.046813965;0.060806274;-0.006713867 +22617;12;0.18346772;0.07194706;0.30163795;0.93283325 +22617;5;999.58966 +22617;1;-0.23252545;3.7874625;9.046391 +22617;2;-0.07673332;-0.47569013;0.122979164; +22617;0;-0.171875;4.3281555;8.860458 +22617;3;0.047424316;0.05958557;-0.009155273 +22622;0;-0.12890625;4.3329163;8.86998 +22622;12;0.18356693;0.07213109;0.30164266;0.9327979 +22622;1;-0.2350737;3.7901895;9.045181 +22622;3;0.045578003;0.055923462;-0.012817383 +22622;0;-0.11933899;4.3376617;8.879532 +22622;3;0.045578003;0.053482056;-0.01586914 +22623;4;15.942383;1.2084961;-63.746643 +22623;6;-0.47744825;-0.45437068;0.0134389745 +22623;7;0.8853799;-0.4128908;0.21359695;0.0;0.46471137;0.79805434;-0.38360482;0.0;-0.012075058 +22623;0;-0.11933899;4.342407;8.917694 +22623;3;0.04374695;0.05104065;-0.01953125 +22624;12;0.18366848;0.072297394;0.3016063;0.93277687 +22625;0;-0.11933899;4.3329163;8.908142 +22625;3;0.041915894;0.048599243;-0.021972656 +22625;1;-0.23749512;3.7928061;9.044022 +22628;12;0.1837667;0.07245809;0.3015817;0.932753 +22628;0;-0.10499573;4.3519135;8.884293 +22628;3;0.042526245;0.04675293;-0.022598267 +22630;0;-0.11933899;4.375656;8.884293 +22630;1;-0.23978859;3.7953537;9.042892 +22630;3;0.043136597;0.045532227;-0.02381897 +22632;4;16.242981;0.1586914;-62.997437 +22632;6;-0.50168306;-0.45760673;0.0134317735 +22632;7;0.87384164;-0.43142307;0.22422071;0.0;0.48606133;0.78656524;-0.3808669;0.0;-0.012049449 +22632;0;-0.10978699;4.370926;8.874756 +22633;3;0.041915894;0.044311523;-0.026870728 +22633;12;0.18386401;0.072609514;0.30154514;0.9327339 +22635;1;-0.24201494;3.797925;9.041754 +22636;2;-0.14562237;-0.53623724;0.14219284; +22636;0;-0.11456299;4.3946686;8.903381 +22637;3;0.043136597;0.044921875;-0.029312134 +22642;0;-0.100234985;4.370926;8.893829 +22642;12;0.18396349;0.07275564;0.30150062;0.9327172 +22642;1;-0.24433242;3.8005602;9.040584 +22643;3;0.046188354;0.04675293;-0.029907227 +22643;0;-0.09068298;4.380417;8.922455 +22643;3;0.048034668;0.048599243;-0.03112793 +22643;4;15.193176;2.2598267;-62.097168 +22643;6;-0.45905417;-0.4563554;0.010163106 +22643;7;0.8944412;-0.39775553;0.2043659;0.0;0.44709247;0.80473113;-0.39053315;0.0;-0.009122903 +22643;0;-0.13366699;4.366165;8.927231 +22643;3;0.048034668;0.051651;-0.033569336 +22643;12;0.18407522;0.07288059;0.30131373;0.9327459 +22644;1;-0.24692073;3.8033166;9.039354 +22645;0;-0.11456299;4.380417;8.946289 +22645;3;0.051086426;0.054092407;-0.034805298 +22647;0;-0.11933899;4.342407;8.989227 +22647;12;0.1841784;0.07304447;0.30125502;0.9327317 +22647;3;0.05291748;0.057144165;-0.036636353 +22649;1;-0.24981357;3.806171;9.038074 +22649;0;-0.143219;4.342407;8.994003 +22650;3;0.05596924;0.05836487;-0.03968811 +22651;4;15.342712;1.05896;-62.39624 +22652;6;-0.47088632;-0.44975278;0.015922487 +22652;7;0.8879132;-0.40856025;0.21139653;0.0;0.4597873;0.802544;-0.38015583;0.0;-0.014338462 +22652;0;-0.12411499;4.3376617;8.998749 +22652;3;0.057800293;0.06324768;-0.04273987 +22652;12;0.18428335;0.0732251;0.30119047;0.9327176 +22653;5;999.58966 +22654;0;-0.12411499;4.3281555;8.994003 +22654;1;-0.2530172;3.8092115;9.036702 +22654;2;-0.1551227;-0.5276091;0.06973076; +22654;3;0.05718994;0.065704346;-0.044570923 +22656;0;-0.147995;4.3043976;9.036911 +22657;12;0.18439241;0.07342249;0.30111519;0.9327048 +22657;3;0.059020996;0.0687561;-0.045791626 +22659;0;-0.171875;4.290146;9.0607605 +22660;3;0.057800293;0.07119751;-0.046417236 +22660;1;-0.25661457;3.8122246;9.035331 +22661;4;15.342712;1.05896;-63.146973 +22661;6;-0.46633077;-0.442143;0.018966883 +22661;7;0.8894148;-0.40637577;0.20928477;0.0;0.45677954;0.80732876;-0.3735944;0.0;-0.01714194 +22661;0;-0.16233826;4.290146;9.041687 +22662;3;0.05718994;0.073028564;-0.048858643 +22662;12;0.18450102;0.07362408;0.30096468;0.932716 +22663;0;-0.21009827;4.3043976;9.046463 +22664;1;-0.26049876;3.8152063;9.033961 +22664;3;0.05657959;0.07608032;-0.050079346 +22666;0;-0.2722168;4.266403;9.0607605 +22666;12;0.18459685;0.07385515;0.30087882;0.9327065 +22666;3;0.05596924;0.07791138;-0.0519104 +22668;0;-0.2960968;4.256897;9.065521 +22668;1;-0.26480973;3.818088;9.0326185 +22668;3;0.05718994;0.07852173;-0.05496216 +22671;4;15.193176;-0.14038086;-62.547302 +22671;6;-0.4582795;-0.43880358;0.032650255 +22671;7;0.89020115;-0.40049255;0.21713495;0.0;0.45460817;0.8118513;-0.36637267;0.0;-0.029551739 +22671;0;-0.3152008;4.256897;9.027374 +22671;3;0.05657959;0.07913208;-0.05618286 +22671;12;0.18468331;0.074102566;0.30078653;0.9326995 +22673;0;-0.3534088;4.256897;9.11322 +22673;1;-0.2693183;3.8209612;9.031269 +22673;2;-0.049021244;-0.4391911;-0.03364563; +22673;3;0.05718994;0.07608032;-0.058013916 +22676;0;-0.38685608;4.223633;9.156143 +22676;12;0.18476388;0.07435753;0.30068472;0.93269616 +22676;3;0.059020996;0.073638916;-0.05923462 +22678;0;-0.38208008;4.2616425;9.170456 +22678;1;-0.273769;3.8238108;9.02993 +22678;3;0.0602417;0.073028564;-0.060455322 +22680;4;15.942383;0.9094238;-62.547302 +22680;6;-0.4523173;-0.43469146;0.04164016 +22680;7;0.8909952;-0.39640525;0.22133785;0.0;0.45244005;0.81578916;-0.36025834;0.0;-0.03775671 +22681;0;-0.39163208;4.223633;9.151382 +22681;3;0.062683105;0.07058716;-0.060455322 +22681;12;0.18485035;0.07460162;0.30055034;0.93270284 +22683;0;-0.39640808;4.2473907;9.11322 +22683;1;-0.27812997;3.826805;9.028527 +22683;3;0.062683105;0.0675354;-0.05923462 +22685;0;-0.45851135;4.214142;9.13707 +22685;12;0.18494356;0.07484922;0.30043304;0.93270224 +22685;3;0.06575012;0.06324768;-0.061676025 +22688;0;-0.48239136;4.2188873;9.146606 +22688;3;0.06758118;0.060195923;-0.06350708 +22690;4;15.04364;0.7598877;-62.69684 +22690;6;-0.40665984;-0.4316433;0.052691113 +22690;7;0.90845716;-0.3592643;0.21362323;0.0;0.41523173;0.8342067;-0.36287993;0.0;-0.04783611 +22690;1;-0.2823113;3.8298852;9.027092 +22690;0;-0.49671936;4.190384;9.184769 +22696;3;0.070632935;0.057144165;-0.06472778 +22696;5;999.58966 +22696;12;0.18504359;0.07508715;0.3003118;0.9327024 +22696;0;-0.5253906;4.1618805;9.175232 +22696;3;0.07246399;0.055923462;-0.06472778 +22696;2;0.13330686;-0.36733413;-0.13677788; +22696;1;-0.28631708;3.8331003;9.025601 +22696;0;-0.5683899;4.180893;9.227692 +22696;3;0.07673645;0.054092407;-0.065338135 +22696;12;0.18515453;0.07531746;0.300178;0.93270487 +22698;0;-0.5827179;4.1951294;9.237228 +22698;1;-0.29025912;3.8365302;9.024017 +22698;3;0.08163452;0.051651;-0.06411743 +22700;4;15.942383;0.45928955;-64.19678 +22700;6;-0.4103478;-0.42555633;0.06300014 +22700;7;0.9047944;-0.36334753;0.22209366;0.0;0.42197013;0.8351957;-0.35268855;0.0;-0.057343163 +22700;0;-0.5827179;4.185623;9.208603 +22701;3;0.08956909;0.05104065;-0.06472778 +22701;12;0.18528284;0.07553861;0.30000222;0.93271804 +22703;17;1;38dead6d7725;12499;928;-69; +22703;17;1;38dead6d60ff;10808;2996;-70; +22704;17;1;1c1bb5efa29a;-2291;3794;-58; +22704;17;1;1c1bb5ecd182;2991;1548;-59; +22705;0;-0.5922699;4.209381;9.21814 +22705;3;0.09811401;0.05104065;-0.062286377 +22705;1;-0.29404402;3.840449;9.022228 +22705;0;-0.64482117;4.1951294;9.232452 +22705;3;0.10421753;0.050430298;-0.05923462 +22705;12;0.18543519;0.075768635;0.29986057;0.93271464 +22707;0;-0.65914917;4.180893;9.222916 +22707;3;0.11216736;0.052871704;-0.058013916 +22707;1;-0.2978162;3.8450186;9.020157 +22709;4;15.942383;1.2084961;-63.746643 +22709;6;-0.38827446;-0.42465073;0.071347326 +22709;7;0.91208965;-0.34496635;0.22156449;0.0;0.40481278;0.8433576;-0.35337588;0.0;-0.0649553 +22709;0;-0.65914917;4.2046356;9.251541 +22709;3;0.12072754;0.055923462;-0.05557251 +22710;12;0.18562147;0.07600874;0.29972354;0.93270206 +22711;0;-0.68304443;4.176132;9.227692 +22712;1;-0.3016934;3.8502417;9.017801 +22712;2;0.30036873;-0.32415962;-0.21825504; +22712;3;0.12927246;0.057144165;-0.05067444 +22714;0;-0.69737244;4.185623;9.270599 +22714;12;0.18583809;0.07626745;0.29959396;0.93267953 +22714;3;0.13720703;0.060195923;-0.048233032 +22716;0;-0.67349243;4.190384;9.242004 +22716;1;-0.3056329;3.856178;9.015132 +22717;3;0.14393616;0.065078735;-0.044570923 +22719;4;15.942383;0.45928955;-63.746643 +22719;6;-0.39411792;-0.42468798;0.07274439 +22719;7;0.9093942;-0.3498827;0.2249093;0.0;0.4106294;0.8413133;-0.35153303;0.0;-0.066223875 +22721;0;-0.68304443;4.2046356;9.237228 +22721;3;0.15249634;0.0675354;-0.040908813 +22722;12;0.1860947;0.07653603;0.29944113;0.9326554 +22722;0;-0.7021332;4.2616425;9.21814 +22722;1;-0.3097835;3.8628237;9.012144 +22722;3;0.1567688;0.06997681;-0.03968811 +22725;12;0.18637975;0.076840565;0.2993418;0.9326053 +22725;0;-0.7403717;4.2473907;9.232452 +22725;3;0.16470337;0.07485962;-0.038467407 +22729;1;-0.31419253;3.8700368;9.008896 +22730;0;-0.7499237;4.2854004;9.227692 +22730;3;0.16960144;0.07852173;-0.038467407 +22731;4;16.54358;1.2084961;-63.29651 +22731;6;-0.38349688;-0.43351358;0.08109062 +22731;7;0.91158324;-0.33955362;0.23177423;0.0;0.40449035;0.84157676;-0.35796127;0.0;-0.07350875 +22731;0;-0.74513245;4.323395;9.189545 +22731;3;0.17448425;0.08157349;-0.03968811 +22731;12;0.18669133;0.077168316;0.29925057;0.93254524 +22731;5;999.58966 +22732;2;0.3827737;-0.36265707;-0.22859764; +22732;1;-0.31894085;3.8778214;9.005381 +22734;12;0.18702447;0.07752281;0.29916027;0.9324781 +22735;0;-0.76901245;4.3519135;9.19429 +22735;3;0.17753601;0.08279419;-0.03907776 +22735;0;-0.7642517;4.3329163;9.184769 +22735;3;0.17814636;0.08647156;-0.040298462 +22736;1;-0.32394066;3.8858213;9.001754 +22736;0;-0.8215637;4.3043976;9.189545 +22737;3;0.17875671;0.09074402;-0.04396057 +22738;4;15.492249;0.1586914;-62.097168 +22738;6;-0.35296136;-0.43652385;0.08916495 +22738;7;0.9216113;-0.3132628;0.22912672;0.0;0.3796323;0.8503608;-0.3643705;0.0;-0.08069664 +22739;0;-0.888443;4.2711487;9.14183 +22739;3;0.17814636;0.09013367;-0.044570923 +22740;12;0.18736604;0.077887364;0.2990236;0.9324229 +22741;0;-0.92666626;4.2616425;9.075058 +22741;1;-0.32946166;3.8938541;8.998081 +22741;3;0.17570496;0.085250854;-0.04763794 +22744;0;-0.9457855;4.313904;9.098923 +22744;12;0.18770216;0.07828426;0.29892227;0.9323546 +22744;3;0.17263794;0.076690674;-0.049453735 +22746;1;-0.33467206;3.9017322;8.994475 +22746;0;-0.9553375;4.389923;9.094147 +22746;3;0.16653442;0.0675354;-0.048233032 +22748;4;15.193176;0.9094238;-63.29651 +22748;6;-0.28736344;-0.44758335;0.10466583 +22748;7;0.9409312;-0.2555062;0.2221824;0.0;0.32523513;0.8645294;-0.38315943;0.0;-0.09418361 +22748;0;-0.95054626;4.4279175;9.089371 +22748;3;0.16043091;0.05470276;-0.046417236 +22749;12;0.18803857;0.078659095;0.29880795;0.9322918 +22751;1;-0.33897665;3.909288;8.991033 +22751;2;0.54163086;-0.4313953;-0.13644314; +22751;0;-0.92666626;4.5419617;9.089371 +22752;3;0.15431213;0.04309082;-0.04701233 +22753;12;0.18837358;0.078981094;0.2986896;0.932235 +22753;0;-0.91233826;4.5419617;9.079834 +22753;3;0.14942932;0.03086853;-0.045791626 +22755;0;-0.9457855;4.556198;9.051224 +22755;1;-0.34220684;3.916414;8.987809 +22755;3;0.14271545;0.018051147;-0.04763794 +22758;4;16.392517;1.05896;-61.94763 +22758;6;-0.32487118;-0.4641702;0.10411472 +22758;7;0.9277096;-0.28541464;0.24061053;0.0;0.3615506;0.84741974;-0.38879415;0.0;-0.092930585 +22758;0;-0.98876953;4.560959;9.046463 +22758;3;0.13720703;0.0046081543;-0.04701233 +22759;12;0.18870291;0.07923802;0.29853514;0.9321961 +22760;0;-0.9983368;4.5419617;9.056 +22760;1;-0.34443516;3.9230244;8.98484 +22761;3;0.13110352;-0.010650635;-0.046417236 +22762;0;-1.0030975;4.57045;9.056 +22762;12;0.18901996;0.079436995;0.2983975;0.93215895 +22763;3;0.125;-0.02897644;-0.048233032 +22767;0;-0.93621826;4.670227;9.051224 +22767;1;-0.34528652;3.929183;8.982116 +22768;3;0.12132263;-0.0491333;-0.048233032 +22768;4;15.342712;1.3595581;-62.69684 +22768;6;-0.28203702;-0.47418278;0.103069015 +22768;7;0.9423184;-0.24760544;0.22522806;0.0;0.32195887;0.8545159;-0.40760893;0.0;-0.09153475 +22768;0;-0.859787;4.7224884;9.075058 +22768;3;0.118881226;-0.06867981;-0.045181274 +22768;5;999.5892 +22768;12;0.18934205;0.07955339;0.2982491;0.9321311 +22772;0;-0.7881317;4.7985077;9.127518 +22772;2;0.5695826;-0.67197084;-0.09477806; +22772;1;-0.344243;3.9351203;8.979557 +22772;3;0.11399841;-0.08456421;-0.045181274 +22772;0;-0.69737244;4.8982697;9.16568 +22772;12;0.18968327;0.0795681;0.29808775;0.9321121 +22773;3;0.11216736;-0.09739685;-0.04273987 +22774;0;-0.63526917;4.950531;9.151382 +22774;1;-0.3415559;3.9408958;8.977126 +22774;3;0.10972595;-0.10777283;-0.041519165 +22776;4;14.442444;-0.59051514;-63.146973 +22776;6;-0.324072;-0.4948709;0.06930666 +22776;7;0.9351982;-0.28022727;0.21651116;0.0;0.3488414;0.8342215;-0.42706457;0.0;-0.060943116 +22777;0;-0.6018219;4.9885406;9.16568 +22777;3;0.106674194;-0.11816406;-0.04273987 +22778;12;0.19007264;0.07942131;0.29753816;0.9322209 +22779;0;-0.5445099;5.0455627;9.222916 +22780;1;-0.33776966;3.9465346;8.974792 +22780;3;0.10421753;-0.12731934;-0.044570923 +22781;0;-0.5015106;5.0930634;9.313538 +22782;12;0.1904386;0.0792933;0.2973672;0.93221164 +22782;3;0.10118103;-0.13404846;-0.048858643 +22784;1;-0.33318058;3.9519608;8.972575 +22785;0;-0.44895935;5.164322;9.351685 +22785;3;0.09811401;-0.13710022;-0.050079346 +22786;4;15.193176;0.9094238;-61.79657 +22786;6;-0.37570468;-0.5040701;0.04797156 +22786;7;0.9206807;-0.3212911;0.2216284;0.0;0.38805157;0.8145486;-0.431192;0.0;-0.04198894 +22786;0;-0.34864807;5.240341;9.40892 +22788;3;0.09751892;-0.13343811;-0.048858643 +22793;12;0.19080982;0.07911743;0.29718035;0.93221027 +22793;1;-0.32822284;3.9572887;8.970409 +22794;2;0.15963209;-1.1229773;-0.31098366; +22794;0;-0.24354553;5.3496094;9.427994 +22794;3;0.09567261;-0.12243652;-0.045181274 +22794;12;0.19118261;0.07891992;0.29698828;0.9322119 +22794;0;-0.171875;5.387619;9.470917 +22794;3;0.09689331;-0.103500366;-0.03968811 +22795;0;-0.171875;5.4636383;9.523392 +22795;1;-0.32393983;3.9626422;8.968202 +22795;3;0.094451904;-0.0796814;-0.034194946 +22796;4;15.792847;-0.29144287;-61.647034 +22796;6;-0.44779262;-0.5207919;0.018045709 +22796;7;0.8973708;-0.37557513;0.2316656;0.0;0.4409996;0.78190166;-0.4406236;0.0;-0.015652457 +22796;0;-0.19099426;5.47789;9.599686 +22796;3;0.0932312;-0.055252075;-0.026870728 +22796;12;0.19154114;0.078762725;0.2968019;0.9322109 +22798;0;-0.20533752;5.5253906;9.637848 +22798;1;-0.32142088;3.9679058;8.965964 +22798;3;0.08834839;-0.029586792;-0.020751953 +22801;12;0.19186053;0.078706354;0.29668352;0.9321876 +22801;0;-0.24354553;5.5158997;9.70462 +22801;3;0.08467102;-0.0051574707;-0.014038086 +22803;1;-0.32085863;3.972833;8.963803 +22803;0;-0.24354553;5.544403;9.75708 +22803;3;0.07673645;0.01499939;-0.0073242188 +22805;4;16.693115;1.6586304;-63.597107 +22805;6;-0.42857727;-0.5166085;0.02495572 +22805;7;0.9041527;-0.36134413;0.22790013;0.0;0.4266583;0.7908601;-0.43875182;0.0;-0.021696731 +22805;0;-0.25787354;5.601425;9.771393 +22806;3;0.06512451;0.03149414;6.2561035E-4 +22806;5;999.5892 +22806;12;0.19212957;0.07875188;0.29661858;0.93214905 +22807;0;-0.23399353;5.6726837;9.819077 +22807;1;-0.3217733;3.9771724;8.961845 +22808;2;-0.122092634;-1.5380485;-0.70295334; +22808;3;0.050476074;0.043701172;0.010391235 +22810;0;-0.22921753;5.6964264;9.876312 +22810;3;0.034591675;0.05104065;0.016494751 +22811;12;0.19234079;0.07887025;0.29660675;0.9320992 +22812;0;-0.25787354;5.7439423;9.966934 +22812;1;-0.32340607;3.9803343;8.960382 +22812;3;0.01687622;0.05531311;0.025054932 +22814;4;16.242981;0.1586914;-62.997437 +22814;6;-0.43080866;-0.5226659;0.025867132 +22814;7;0.9029326;-0.3618518;0.23189664;0.0;0.42919758;0.78731877;-0.4426271;0.0;-0.022411153 +22815;0;-0.24354553;5.7059326;10.048004 +22815;3;-0.005126953;0.05531311;0.030548096 +22816;12;0.1924743;0.07900982;0.29662254;0.9320548 +22818;17;1;38dead6d7725;12541;288;-74; +22819;17;1;38dead6d60ff;9950;1218;-69; +22819;17;1;1c1bb5efa29a;1991;348;-54; +22819;17;1;1c1bb5ecd182;2884;1842;-65; +22819;1;-0.32510757;3.9818304;8.959657 +22819;0;-0.27697754;5.701187;10.114777 +22820;3;-0.03137207;0.05104065;0.033599854 +22820;0;-0.25787354;5.610916;10.152924 +22820;3;-0.054595947;0.044311523;0.03237915 +22820;12;0.19251336;0.0791375;0.2967075;0.93200886 +22822;0;-0.25309753;5.568161;10.248322 +22822;1;-0.32637325;3.9810703;8.959948 +22822;3;-0.085739136;0.032104492;0.028717041 +22824;4;16.392517;-0.29144287;-63.597107 +22824;6;-0.45505512;-0.49757552;0.024691466 +22824;7;0.8927839;-0.38621768;0.23189004;0.0;0.44996265;0.7893188;-0.4177435;0.0;-0.021695232 +22824;0;-0.21966553;5.468399;10.3198395 +22824;3;-0.113845825;0.019882202;0.025665283 +22825;12;0.19243988;0.079205625;0.29681075;0.93198544 +22827;0;-0.24354553;5.4066315;10.434326 +22827;1;-0.3267881;3.977638;8.961457 +22827;2;-0.09452069;-1.6288309;-1.1870699; +22827;3;-0.14620972;0.008285522;0.023223877 +22829;0;-0.26264954;5.2830963;10.53923 +22829;12;0.19224043;0.07918396;0.29690233;0.93199927 +22830;3;-0.17860413;-2.746582E-4;0.018341064 +22831;0;-0.3438568;5.154831;10.691864 +22832;1;-0.3264605;3.971193;8.964327 +22832;3;-0.20974731;-0.006378174;0.014053345 +22834;4;16.392517;0.7598877;-63.146973 +22834;6;-0.46924022;-0.44904464;0.032149523 +22834;7;0.88514113;-0.40737778;0.22487429;0.0;0.46442068;0.8034899;-0.37244773;0.0;-0.028957302 +22834;0;-0.39163208;5.0455627;10.758636 +22834;3;-0.24395752;-0.013092041;0.0116119385 +22835;12;0.19189955;0.0790647;0.29694536;0.93206584 +22836;0;-0.44418335;4.9030304;10.792007 +22836;1;-0.32582536;3.9616716;8.968562 +22836;3;-0.27511597;-0.021652222;0.0073394775 +22839;0;-0.45851135;4.7985077;10.820633 +22840;12;0.1914053;0.078880005;0.29701158;0.93216205 +22840;3;-0.3056488;-0.0332489;0.0061187744 +22841;0;-0.46806335;4.6654816;10.873093 +22841;1;-0.32459983;3.9491594;8.974123 +22841;3;-0.3325348;-0.0491333;0.0048980713 +22843;4;15.792847;-0.29144287;-63.597107 +22843;6;-0.48030925;-0.4049903;0.0430213 +22843;7;0.87820166;-0.42467615;0.2200269;0.0;0.47665405;0.81511116;-0.32923308;0.0;-0.039528944 +22843;0;-0.48239136;4.513443;10.978027 +22843;3;-0.3581848;-0.0662384;0.0030670166 +22844;12;0.19076553;0.078609824;0.2970684;0.93229795 +22844;5;999.5892 +22845;0;-0.45851135;4.366165;11.111557 +22846;1;-0.32213372;3.9339275;8.980899 +22846;2;0.076217234;-0.9012172;-1.842988; +22846;3;-0.38323975;-0.0796814;0.002456665 +22848;0;-0.45851135;4.252136;11.254623 +22848;12;0.19000623;0.07822719;0.29711652;0.9324698 +22849;3;-0.4021759;-0.087631226;0.0030670166 +22850;0;-0.46328735;4.142868;11.412018 +22851;1;-0.3185575;3.916326;8.988716 +22851;3;-0.4217224;-0.09373474;0.0030670166 +22853;4;16.242981;-0.440979;-63.29651 +22853;6;-0.5687034;-0.34796852;0.040574163 +22853;7;0.83445764;-0.5062639;0.21766338;0.0;0.5497513;0.7921008;-0.26523584;0.0;-0.038131986 +22853;0;-0.47763062;4.0336;11.516937 +22854;3;-0.4351654;-0.0967865;0.0048980713 +22854;12;0.1891454;0.07774612;0.29714555;0.9326758 +22855;1;-0.3145021;3.896934;8.997283 +22855;0;-0.5253906;3.9575806;11.545563 +22856;3;-0.44432068;-0.10105896;0.0048980713 +22858;0;-0.5062866;3.7770538;11.58371 +22858;12;0.1881998;0.07721477;0.2971922;0.9328963 +22860;3;-0.44493103;-0.10839844;0.005508423 +22862;1;-0.3100258;3.8765783;9.0062275 +22862;0;-0.5062866;3.6725311;11.569412 +22863;3;-0.44004822;-0.11206055;0.008560181 +22864;4;16.693115;1.05896;-62.69684 +22864;6;-0.6047355;-0.30709833;0.043732885 +22864;7;0.8143521;-0.54194504;0.20766877;0.0;0.57887316;0.78416455;-0.22358897;0.0;-0.04167355 +22864;0;-0.55882263;3.5774994;11.5598755 +22864;3;-0.42599487;-0.119384766;0.009780884 +22864;12;0.18721373;0.076647945;0.29724017;0.93312615 +22865;1;-0.30506152;3.8565414;9.014995 +22866;0;-0.54927063;3.4729767;11.593246 +22866;2;0.18552545;0.0040659904;-2.493517; +22866;3;-0.40522766;-0.12672424;0.012832642 +22868;0;-0.5636139;3.4112244;11.617096 +22869;12;0.186253;0.07606183;0.2972897;0.93335056 +22870;3;-0.37528992;-0.1309967;0.015899658 +22871;0;-0.5779419;3.3637238;11.636185 +22873;3;-0.34230042;-0.1322174;0.015899658 +22873;1;-0.29945633;3.8382168;9.023 +22874;12;0.1853925;0.07547214;0.29733065;0.9335567 +22874;4;16.992188;1.05896;-62.39624 +22874;6;-0.6425534;-0.281075;0.049626864 +22874;7;0.7913369;-0.57572603;0.20573154;0.0;0.6095199;0.7691523;-0.19206885;0.0;-0.047659833 +22875;0;-0.5540619;3.2639465;11.650482 +22875;3;-0.303833;-0.1322174;0.017120361 +22875;0;-0.5445099;3.2401886;11.621872 +22875;1;-0.2936491;3.8226712;9.029788 +22877;3;-0.2574005;-0.13160706;0.015274048 +22878;0;-0.5540619;3.145172;11.569412 +22878;12;0.18468006;0.0749213;0.29736912;0.93373 +22878;3;-0.20669556;-0.12731934;0.012832642 +22880;1;-0.2881246;3.810869;9.034953 +22880;0;-0.802475;3.0596466;11.58371 +22881;3;-0.1535492;-0.118774414;0.011001587 +22882;4;15.04364;2.4093628;-62.69684 +22882;6;-0.52259487;-0.25764555;0.06916566 +22882;7;0.8556656;-0.4826554;0.18676274;0.0;0.51319623;0.8379252;-0.18577191;0.0;-0.06682937 +22882;0;-0.64004517;3.078659;11.469254 +22883;3;-0.097351074;-0.10961914;0.0116119385 +22883;12;0.1841584;0.07444797;0.29738507;0.93386585 +22884;5;999.5892 +22884;0;-0.6161499;3.0501556;11.378647 +22885;1;-0.28327334;3.803714;9.03812 +22885;3;-0.03504944;-0.10533142;0.015274048 +22885;2;0.3088345;0.61374474;-2.5330687; +22887;0;-0.5683899;3.021637;11.273712 +22888;3;0.027267456;-0.09251404;0.018341064 +22888;12;0.18386865;0.07408107;0.29738367;0.93395257 +22889;1;-0.27898157;3.8019066;9.039015 +22889;0;-0.59706116;3.0644073;11.1306305 +22890;3;0.0932312;-0.07785034;0.023223877 +22894;4;15.942383;-0.14038086;-61.79657 +22894;6;-0.6540346;-0.26828974;0.05358991 +22894;7;0.7838577;-0.58662844;0.20355354;0.0;0.61878866;0.76524377;-0.17748895;0.0;-0.051648036 +22894;0;-0.5922699;3.045395;11.044785 +22894;3;0.1579895;-0.062576294;0.026275635 +22894;12;0.18384692;0.07383611;0.29737324;0.9339796 +22894;0;-0.60661316;3.0834198;10.844482 +22894;1;-0.27582645;3.805808;9.037469 +22894;3;0.22029114;-0.04486084;0.023834229 +22896;0;-0.6018219;3.0549011;10.696625 +22897;12;0.18410014;0.073748685;0.29737574;0.9339357 +22898;3;0.28076172;-0.028366089;0.018951416 +22900;1;-0.2741878;3.815202;9.033558 +22900;0;-0.55882263;3.0644073;10.486786 +22900;3;0.3369751;-0.0149383545;0.013442993 +22902;4;15.492249;0.9094238;-61.79657 +22902;6;-0.58506155;-0.2839189;0.05323791 +22902;7;0.8242652;-0.53014135;0.19883949;0.0;0.563895;0.80030185;-0.20381209;0.0;-0.051082395 +22902;0;-0.5110626;3.0501556;10.276932 +22902;3;0.39317322;-2.746582E-4;0.009170532 +22902;12;0.1846141;0.073825724;0.29736385;0.93383205 +22904;0;-0.5397186;3.135666;10.090927 +22905;1;-0.27394405;3.8296816;9.027436 +22905;3;0.44326782;0.010726929;0.0018463135 +22905;2;0.28419143;0.77922726;-1.7097797; +22907;0;-0.49195862;3.1594238;9.966934 +22907;12;0.18537208;0.07405682;0.29732132;0.933677 +22907;3;0.48724365;0.02293396;-0.004272461 +22909;1;-0.27497083;3.8486354;9.0193405 +22909;0;-0.5110626;3.1831818;9.790451 +22909;3;0.5245056;0.032104492;-0.010375977 +22912;4;15.942383;0.9094238;-63.29651 +22913;6;-0.5487766;-0.31395078;0.052152775 +22913;7;0.84360564;-0.4961464;0.20534901;0.0;0.5346693;0.8114615;-0.23592171;0.0;-0.049581114 +22913;0;-0.46328735;3.244934;9.671219 +22913;3;0.55810547;0.040649414;-0.017715454 +22913;12;0.18634485;0.07441593;0.29721776;0.93348783 +22917;0;-0.44895935;3.235443;9.4852295 +22917;3;0.5831604;0.045532227;-0.022598267 +22917;1;-0.2770315;3.871001;9.009701 +22917;0;-0.45373535;3.2544403;9.332611 +22917;12;0.18747644;0.0748843;0.2971059;0.9332594 +22917;3;0.603302;0.047973633;-0.03175354 +22919;0;-0.46806335;3.2734528;9.151382 +22919;1;-0.27980596;3.8956957;8.998965 +22919;3;0.616745;0.04737854;-0.037857056 +22921;4;16.392517;0.7598877;-63.597107 +22921;6;-0.5306329;-0.34310424;0.051102206 +22921;7;0.85266453;-0.47658244;0.21408471;0.0;0.52023953;0.81221676;-0.26392165;0.0;-0.048102766 +22921;0;-0.46328735;3.3399658;8.922455 +22922;3;0.6265259;0.041870117;-0.04273987 +22922;12;0.18872364;0.0754237;0.29695857;0.9330115 +22922;5;999.5892 +22922;0;-0.44895935;3.3827057;8.803207 +22923;1;-0.28274593;3.9218144;8.987521 +22923;2;0.17264512;0.6787205;-0.4103794; +22923;3;0.63446045;0.03149414;-0.04701233 +22925;0;-0.46328735;3.449234;8.65538 +22925;12;0.19004539;0.0759884;0.29677454;0.9327559 +22925;3;0.6399536;0.018051147;-0.050079346 +22928;1;-0.28501266;3.948781;8.975635 +22934;17;1;38dead6d7725;8811;1482;-76; +22934;17;1;38dead6d60ff;8996;1540;-72; +22935;17;1;1c1bb5efa29a;1068;1080;-55; +22936;17;1;1c1bb5ecd182;3497;2571;-66; +22936;12;0.19142538;0.07652171;0.29652932;0.93250793 +22936;0;-0.46328735;3.4777374;8.512299 +22937;3;0.6424103;0.0033874512;-0.053131104 +22937;4;16.093445;1.05896;-62.39624 +22937;6;-0.4718661;-0.38734156;0.054372 +22937;7;0.8800744;-0.4208746;0.21984881;0.0;0.47216192;0.82473373;-0.31125093;0.0;-0.050319128 +22937;0;-0.46806335;3.4872284;8.402588 +22937;3;0.6448517;-0.015533447;-0.05618286 +22937;0;-0.43940735;3.4967346;8.283371 +22937;1;-0.2860743;3.976102;8.963531 +22937;3;0.64424133;-0.033859253;-0.061676025 +22937;0;-0.4202881;3.5205078;8.159363 +22937;12;0.19284451;0.07699943;0.29628396;0.9322542 +22937;3;0.6424103;-0.05340576;-0.065963745 +22937;0;-0.3390808;3.5680084;8.068741 +22937;3;0.63568115;-0.06990051;-0.07145691 +22937;1;-0.28560814;4.003513;8.951336 +22939;4;15.342712;0.009155273;-63.597107 +22939;6;-0.45389724;-0.41602346;0.04199929 +22939;7;0.8905125;-0.40107122;0.21477717;0.0;0.45333472;0.82208496;-0.34447616;0.0;-0.038405593 +22939;0;-0.3438568;3.5870209;7.987671 +22940;3;0.63079834;-0.08517456;-0.077560425 +22940;12;0.1942975;0.0773939;0.29600096;0.9320098 +22941;0;-0.3056488;3.6107635;7.9161377 +22941;1;-0.2838308;4.0305676;8.939243 +22942;2;0.10869226;0.52211666;0.683301; +22942;3;0.6210327;-0.10105896;-0.08427429 +22944;0;-0.22442627;3.5870209;7.882736 +22944;12;0.19575457;0.07770618;0.2956804;0.93178064 +22944;3;0.6130829;-0.11328125;-0.09039307 +22946;0;-0.171875;3.615509;7.8255157 +22946;1;-0.28085813;4.0569053;8.927416 +22946;3;0.6002655;-0.12428284;-0.09466553 +22949;4;15.492249;0.9094238;-61.346436 +22949;6;-0.4872879;-0.4327091;0.021959877 +22949;7;0.8790816;-0.42507577;0.21569918;0.0;0.4762543;0.80216676;-0.36015326;0.0;-0.0199343 +22949;0;-0.11456299;3.6345215;7.777817 +22949;3;0.5861969;-0.13343811;-0.10015869 +22954;12;0.19720487;0.077924676;0.2952542;0.93159163 +22954;0;-0.08590698;3.6440125;7.730133 +22954;1;-0.2770244;4.082252;8.915974 +22954;3;0.5715332;-0.14016724;-0.106277466 +22954;0;-0.028564453;3.6297607;7.682434 +22954;12;0.19861342;0.078091204;0.29486755;0.9314009 +22954;3;0.5587158;-0.14749146;-0.11054993 +22956;0;0.028747559;3.6345215;7.649048 +22956;1;-0.2726074;4.106521;8.904958 +22956;3;0.5434418;-0.15054321;-0.11665344 +22959;4;15.492249;-0.14038086;-64.19678 +22959;6;-0.52124983;-0.44357613;-0.0037583008 +22959;7;0.86799455;-0.4497727;0.2104518;0.0;0.4965621;0.7832724;-0.37404594;0.0;0.0033945746 +22959;0;0.09562683;3.6297607;7.6156616 +22960;3;0.5312195;-0.15237427;-0.12399292 +22961;12;0.19997898;0.07820173;0.29445317;0.93123055 +22961;0;0.10997009;3.5680084;7.6156616 +22961;3;0.51535034;-0.15420532;-0.13009644 +22962;1;-0.26798624;4.129369;8.894527 +22962;5;999.5875 +22962;2;-0.23259988;0.5272374;1.1644106; +22963;0;0.1481781;3.5774994;7.6204376 +22964;12;0.20127304;0.07827384;0.29401723;0.9310834 +22964;3;0.4988556;-0.15359497;-0.13621521 +22966;0;0.1816101;3.5394897;7.601364 +22966;1;-0.26344123;4.1508083;8.884678 +22966;3;0.48480225;-0.14932251;-0.14476013 +22968;4;16.392517;0.30975342;-62.39624 +22968;6;-0.59454864;-0.43567356;-0.023887234 +22968;7;0.8338112;-0.5078105;0.21653499;0.0;0.5516249;0.75101715;-0.362882;0.0;0.021653773 +22968;0;0.24848938;3.525238;7.653824 +22969;3;0.46891785;-0.14260864;-0.1502533 +22969;12;0.20249768;0.07831313;0.29353836;0.9309656 +22970;0;0.26760864;3.515747;7.6347504 +22971;1;-0.259396;4.170826;8.875417 +22971;3;0.4512024;-0.13404846;-0.15698242 +22973;0;0.27236938;3.5205078;7.6299744 +22973;12;0.20364325;0.07835525;0.29305768;0.9308636 +22973;3;0.43348694;-0.12121582;-0.16369629 +22975;1;-0.2563453;4.1893325;8.866786 +22975;0;0.32492065;3.5347595;7.644287 +22976;3;0.4194336;-0.10961914;-0.16918945 +22977;4;15.492249;0.1586914;-63.29651 +22978;6;-0.6028752;-0.4327785;-0.042479455 +22978;7;0.8330643;-0.5147367;0.20260762;0.0;0.55183107;0.747766;-0.36922666;0.0;0.038551424 +22978;0;0.37747192;3.4919891;7.653824 +22978;3;0.4029541;-0.094955444;-0.17346191 +22979;12;0.20469597;0.07841353;0.29256496;0.93078285 +22980;0;0.38703918;3.4634857;7.691971 +22980;1;-0.25447947;4.206376;8.8587675 +22981;2;-0.54558164;0.7010069;1.209527; +22981;3;0.3852234;-0.0809021;-0.17958069 +22982;0;0.37271118;3.4872284;7.730133 +22983;12;0.20565397;0.07850799;0.29206648;0.93072027 +22983;3;0.36750793;-0.06562805;-0.18629456 +22985;0;0.35359192;3.5014954;7.773056 +22985;1;-0.25413314;4.221867;8.851404 +22985;3;0.34857178;-0.047912598;-0.19363403 +22987;4;15.492249;-0.74157715;-61.047363 +22987;6;-0.64892876;-0.42285427;-0.045458093 +22987;7;0.80717814;-0.5511044;0.21153559;0.0;0.5888516;0.72655666;-0.35407537;0.0;0.041439936 +22988;0;0.4109192;3.5062408;7.782593 +22988;3;0.33024597;-0.028366089;-0.2015686 +22988;12;0.20651227;0.078643054;0.2915399;0.93068385 +22990;0;0.3965912;3.5299988;7.777817 +22990;1;-0.25552458;4.2357574;8.844727 +22991;3;0.31315613;-0.009429932;-0.20889282 +22993;0;0.39179993;3.5537567;7.8255157 +22993;3;0.29605103;0.012542725;-0.2150116 +22993;12;0.20725988;0.078842305;0.2910278;0.9306611 +22995;0;0.4300232;3.5299988;7.8207397 +22995;1;-0.2588911;4.2481303;8.838692 +22995;3;0.28138733;0.032104492;-0.22233582 +22997;4;15.342712;-0.59051514;-63.89618 +22997;6;-0.63919926;-0.42342177;-0.054929666 +22997;7;0.8148204;-0.5438704;0.20068052;0.0;0.5775485;0.7316971;-0.36201802;0.0;0.050053556 +22997;0;0.4013672;3.5394897;7.8731995 +22998;3;0.26609802;0.052261353;-0.22843933 +22998;12;0.20789713;0.07911031;0.2905104;0.9306579 +22999;5;999.5875 +23000;0;0.3965912;3.5822601;7.8779755 +23000;1;-0.2642787;4.2591457;8.833229 +23001;2;-0.67557466;0.74637175;1.0173111; +23001;3;0.25022888;0.07180786;-0.2333374 +23002;0;0.37271118;3.5585022;7.9161377 +23002;12;0.20843391;0.07945624;0.28998843;0.9306711 +23002;3;0.23800659;0.09196472;-0.23883057 +23004;0;0.34403992;3.5299988;7.944748 +23004;1;-0.27163127;4.268814;8.828338 +23005;3;0.2245636;0.11029053;-0.24249268 +23007;4;15.342712;-1.0406494;-61.94763 +23007;6;-0.6459384;-0.41777173;-0.04327703 +23007;7;0.8083536;-0.5501777;0.20944916;0.0;0.5873677;0.72985744;-0.34972462;0.0;0.039542656 +23007;0;0.32492065;3.5299988;7.944748 +23007;3;0.21052551;0.12922668;-0.24249268 +23008;12;0.20887253;0.079868175;0.28942755;0.93071216 +23009;0;0.32492065;3.5394897;8.016281 +23009;1;-0.28076702;4.2772827;8.823952 +23010;3;0.19586182;0.14694214;-0.24493408 +23013;12;0.2092175;0.08035903;0.28891596;0.9307514 +23014;0;0.28671265;3.525238;8.030594 +23014;3;0.18119812;0.16526794;-0.24615479 +23015;1;-0.29158837;4.2844644;8.820116 +23015;0;0.24372864;3.5394897;8.030594 +23015;3;0.16714478;0.18054199;-0.24554443 +23017;4;15.942383;-0.440979;-64.94751 +23017;6;-0.6108258;-0.41496575;-0.030340701 +23017;7;0.8258123;-0.5248675;0.20627229;0.0;0.5632614;0.74965143;-0.34750438;0.0;0.02776143 +23017;0;0.23416138;3.5394897;8.073517 +23018;3;0.15431213;0.19337463;-0.24249268 +23018;12;0.20946974;0.08091627;0.28842026;0.9308001 +23019;0;0.1529541;3.5347595;8.125992 +23019;1;-0.3037831;4.290414;8.8168125 +23019;2;-0.60804725;0.7700052;0.7976618; +23020;3;0.13905334;0.20619202;-0.24005127 +23022;0;0.1625061;3.4872284;8.164139 +23023;12;0.2096322;0.08152589;0.2879477;0.9308566 +23023;3;0.122543335;0.21780396;-0.23638916 +23024;0;0.124298096;3.4729767;8.173676 +23025;1;-0.3169796;4.2949734;8.814127 +23025;3;0.106674194;0.2294159;-0.23150635 +23026;4;15.942383;-1.4907837;-64.19678 +23027;6;-0.621264;-0.40174246;-0.015205951 +23027;7;0.8165101;-0.5357201;0.21520953;0.0;0.57716143;0.7484017;-0.3267712;0.0;0.01399473 +23027;12;0.20970847;0.08215953;0.28746405;0.9309333 +23027;0;0.08129883;3.4444885;8.269058 +23027;3;0.09017944;0.23674011;-0.22660828 +23028;0;0.04307556;3.4444885;8.249985 +23028;3;0.07307434;0.24223328;-0.2186737 +23029;1;-0.3310778;4.298089;8.812089 +23033;12;0.20969176;0.08283115;0.28705576;0.9310035 +23033;0;7.6293945E-5;3.4539795;8.335815 +23033;3;0.058410645;0.24835205;-0.21011353 +23033;0;-0.047683716;3.434967;8.373978 +23033;3;0.04008484;0.25079346;-0.20339966 +23034;1;-0.34540838;4.2997565;8.810726 +23036;4;16.842651;-1.4907837;-62.097168 +23036;6;-0.63834596;-0.3892588;0.0056942115 +23036;7;0.80178183;-0.5512914;0.23070276;0.0;0.59759367;0.7430044;-0.3013741;0.0;-0.0052682026 +23036;0;-0.10978699;3.425476;8.435989 +23037;3;0.022979736;0.25201416;-0.19546509 +23037;12;0.20959014;0.083500415;0.28669402;0.93107796 +23037;5;999.5875 +23039;1;-0.3598387;4.299922;8.810068 +23039;0;-0.16711426;3.434967;8.455063 +23039;3;0.007095337;0.25323486;-0.1869049 +23039;2;-0.39030895;0.86813164;0.4932022; +23041;0;-0.22921753;3.4634857;8.521835 +23041;3;-0.009384155;0.2514038;-0.17958069 +23041;12;0.20940764;0.08415928;0.2863737;0.9311583 +23044;0;-0.3056488;3.4729767;8.564758 +23044;1;-0.374141;4.29872;8.810059 +23046;3;-0.025268555;0.2514038;-0.17224121 +23046;4;15.492249;-1.1901855;-61.79657 +23046;6;-0.53708977;-0.3850139;0.03567166 +23046;7;0.8518016;-0.47418234;0.2226772;0.0;0.5228207;0.7963019;-0.3042396;0.0;-0.03305324 +23046;0;-0.3534088;3.4872284;8.621979 +23046;3;-0.04359436;0.2477417;-0.16491699 +23046;12;0.20915736;0.08478316;0.28603145;0.93126315 +23048;1;-0.38814992;4.2960553;8.810752 +23052;12;0.20882289;0.08538817;0.28578916;0.9313573 +23053;1;-0.40153873;4.291746;8.812253 +23056;12;0.20841204;0.08594219;0.2855838;0.9314614 +23058;1;-0.41433287;4.285687;8.814609 +23058;2;-0.0014898777;0.8515396;0.05145645; +23061;0;-0.38685608;3.425476;8.703064 +23061;3;-0.061309814;0.24162292;-0.15635681 +23061;0;-0.47283936;3.4302368;8.812759 +23061;3;-0.08207703;0.23674011;-0.14842224 +23061;0;-0.5206146;3.4682465;8.874756 +23062;12;0.20791318;0.086445756;0.28541848;0.9315769 +23062;3;-0.101623535;0.23246765;-0.13987732 +23062;4;15.792847;-1.3412476;-61.94763 +23062;6;-0.5127035;-0.37196752;0.05859526 +23062;7;0.8594853;-0.45698923;0.22901045;0.0;0.5082406;0.81182855;-0.2874472;0.0;-0.05455694 +23062;0;-0.5683899;3.4397278;8.931976 +23062;3;-0.1230011;0.22880554;-0.13131714 +23062;0;-0.62094116;3.4444885;8.989227 +23062;1;-0.4266305;4.2776027;8.817947 +23067;3;-0.14743042;0.22512817;-0.12336731 +23067;0;-0.69737244;3.4017181;9.08461 +23067;3;-0.16882324;0.22268677;-0.113601685 +23067;0;-0.73558044;3.3969727;9.175232 +23067;3;-0.19142151;0.22085571;-0.1038208 +23067;12;0.20732951;0.08685836;0.28512242;0.93175924 +23068;17;1;38dead6d7725;11272;2258;-69; +23068;17;1;38dead6d60ff;9686;1735;-69; +23069;17;1;1c1bb5efa29a;1663;1984;-56; +23069;17;1;1c1bb5ecd182;1100;2001;-58; +23070;1;-0.43841642;4.267557;8.822237 +23070;12;0.20662923;0.087263525;0.2850495;0.93189937 +23070;4;15.792847;0.30975342;-61.94763 +23070;6;-0.45414016;-0.353543;0.07999913 +23070;7;0.8836268;-0.41155764;0.22321275;0.0;0.46215034;0.8430595;-0.27507767;0.0;-0.07497131 +23070;0;-0.76901245;3.3732147;9.232452 +23070;3;-0.21401978;0.2171936;-0.094055176 +23071;0;-0.845459;3.3304443;9.323074 +23071;3;-0.2366333;0.2135315;-0.085510254 +23071;0;-0.90756226;3.3209534;9.385086 +23071;3;-0.25862122;0.21047974;-0.07572937 +23071;1;-0.44965813;4.2555547;8.827467 +23071;0;-0.93621826;3.3067017;9.4470825 +23071;3;-0.28060913;0.20802307;-0.06472778 +23076;4;15.492249;-0.440979;-62.547302 +23076;6;-0.42271328;-0.335175;0.098778784 +23076;7;0.894226;-0.3874079;0.22422087;0.0;0.43782032;0.8612301;-0.2580623;0.0;-0.093130395 +23076;0;-0.9457855;3.3114624;9.528137 +23076;12;0.20583339;0.08761495;0.2850226;0.93205065 +23076;3;-0.300766;0.20497131;-0.05557251 +23077;1;-0.4602653;4.2417145;8.833579 +23077;2;0.37237236;0.9200454;-0.5281172; +23077;5;999.5875 +23077;0;-0.9696655;3.3114624;9.623535 +23077;3;-0.32337952;0.2000885;-0.04335022 +23078;0;-0.99354553;3.2877045;9.675995 +23078;12;0.20494615;0.08791456;0.28504738;0.9322104 +23079;3;-0.34292603;0.19398499;-0.03175354 +23082;0;-0.99354553;3.268692;9.70462 +23082;1;-0.4700377;4.2260537;8.840568 +23082;3;-0.35940552;0.18725586;-0.021972656 +23083;4;15.942383;0.45928955;-61.346436 +23083;6;-0.4414408;-0.3233098;0.102023154 +23083;7;0.88561124;-0.40510672;0.22711496;0.0;0.45427635;0.85729283;-0.2422436;0.0;-0.09656951 +23083;0;-1.0078735;3.2971954;9.742767 +23083;3;-0.37345886;0.17993164;-0.008544922 +23084;12;0.20398678;0.08812226;0.2849889;0.932419 +23085;0;-1.0365448;3.235443;9.776154 +23086;1;-0.4788114;4.2090025;8.848228 +23086;3;-0.38446045;0.16894531;0.0048980713 +23088;0;-1.0556488;3.2116852;9.804764 +23088;12;0.20294966;0.088297546;0.28511783;0.9325894 +23089;3;-0.3899536;0.15731812;0.018951416 +23090;0;-1.0843201;3.2211914;9.8572235 +23090;1;-0.48622108;4.1910586;8.8563385 +23091;3;-0.39300537;0.14694214;0.029327393 +23092;4;16.242981;-0.440979;-63.29651 +23092;6;-0.44054306;-0.31407404;0.10956208 +23092;7;0.884692;-0.40557098;0.22985289;0.0;0.45442858;0.8602737;-0.23113611;0.0;-0.103994265 +23093;0;-1.0938568;3.1736755;9.885849 +23093;3;-0.39239502;0.1365509;0.04032898 +23093;12;0.2018833;0.08840077;0.28530124;0.93275493 +23095;0;-1.1082001;3.178421;9.923996 +23095;1;-0.49232978;4.1727667;8.8646345 +23095;2;0.53770816;0.9641118;-0.9448204; +23095;3;-0.3887329;0.12617493;0.053771973 +23097;0;-1.1082001;3.202179;9.881073 +23098;3;-0.380188;0.11578369;0.06536865 +23098;12;0.20081788;0.08844219;0.28552765;0.93291175 +23100;0;-1.0938568;3.1641693;9.919235 +23100;1;-0.49700567;4.15511;8.8726635 +23100;3;-0.36735535;0.104782104;0.07759094 +23103;4;15.193176;-0.440979;-61.346436 +23103;6;-0.42494527;-0.3070439;0.10983254 +23103;7;0.8919134;-0.39298952;0.22371794;0.0;0.4399696;0.8684521;-0.22851212;0.0;-0.10448544 +23103;0;-1.0795288;3.1546783;9.923996 +23103;3;-0.3484192;0.09501648;0.090408325 +23103;12;0.19982709;0.08837121;0.28552812;0.933131 +23104;0;-1.0890961;3.1499176;9.952621 +23105;1;-0.5003209;4.138404;8.880282 +23105;3;-0.32582092;0.08708191;0.10447693 +23107;0;-1.0413208;3.1641693;9.971695 +23108;12;0.19887929;0.08831517;0.28583768;0.933244 +23108;3;-0.3026123;0.07913208;0.11790466 +23109;1;-0.50231487;4.123743;8.886987 +23110;0;-1.0413208;3.1879272;9.943069 +23110;3;-0.27633667;0.07546997;0.1307373 +23112;4;16.54358;-0.74157715;-63.746643 +23112;6;-0.475105;-0.30868128;0.104347914 +23112;7;0.869933;-0.4358113;0.23083557;0.0;0.48308265;0.8472146;-0.22103983;0.0;-0.0992356 +23112;0;-1.0174255;3.1926727;9.928772 +23112;3;-0.24945068;0.07424927;0.14479065 +23113;12;0.1980557;0.08823774;0.2861889;0.9333188 +23114;5;999.58966 +23114;0;-1.0030975;3.2211914;9.938309 +23114;1;-0.50340253;4.111386;8.892649 +23114;2;0.54066503;0.96057415;-1.0539532; +23115;3;-0.2195282;0.07180786;0.15638733 +23117;0;-0.9601135;3.2639465;9.876312 +23117;12;0.19736329;0.08816286;0.2865851;0.933351 +23117;3;-0.1865387;0.073638916;0.16921997 +23119;0;-0.91711426;3.2639465;9.833389 +23120;1;-0.50382847;4.1017385;8.8970785 +23120;3;-0.15660095;0.07546997;0.1796112 +23121;4;16.693115;1.05896;-62.69684 +23121;6;-0.47340187;-0.31918994;0.09299631 +23121;7;0.87289125;-0.4328883;0.22509688;0.0;0.47988185;0.8450674;-0.23574254;0.0;-0.08817184 +23121;0;-0.91711426;3.3304443;9.799988 +23122;3;-0.1242218;0.08035278;0.19059753 +23122;12;0.19682734;0.08808955;0.28692552;0.9333665 +23123;0;-0.874115;3.3399658;9.776154 +23124;1;-0.50399345;4.094926;8.900207 +23124;3;-0.09246826;0.085861206;0.20098877 +23126;0;-0.845459;3.4112244;9.714157 +23126;12;0.19643061;0.08808016;0.2874039;0.9333038 +23127;3;-0.06436157;0.09562683;0.21014404 +23128;0;-0.8215637;3.4112244;9.647385 +23129;1;-0.5042362;4.0909386;8.902026 +23129;3;-0.037490845;0.10601807;0.21687317 +23131;4;15.792847;-1.3412476;-62.69684 +23131;6;-0.48139897;-0.33873603;0.08495424 +23131;7;0.8700962;-0.43670872;0.2285128;0.0;0.48634118;0.8359817;-0.25417882;0.0;-0.08003041 +23131;0;-0.826355;3.4634857;9.59491 +23131;3;-0.013656616;0.117630005;0.22480774 +23132;12;0.19617483;0.08813281;0.287921;0.9331932 +23133;0;-0.8072357;3.5109863;9.499542 +23133;1;-0.50506926;4.0893846;8.902693 +23133;2;0.35200304;0.7461953;-0.8302498; +23134;3;0.009536743;0.13166809;0.23214722 +23135;0;-0.802475;3.5727692;9.385086 +23136;12;0.19603607;0.088264525;0.28847066;0.93304026 +23136;3;0.030319214;0.14450073;0.24008179 +23138;0;-0.76901245;3.6202698;9.351685 +23138;1;-0.5066929;4.090009;8.902314 +23139;3;0.046188354;0.15550232;0.2449646 +23141;4;15.942383;0.45928955;-63.29651 +23141;6;-0.42561093;-0.36822504;0.082047895 +23141;7;0.89554256;-0.38520122;0.22276367;0.0;0.43835735;0.84973466;-0.2929062;0.0;-0.07646219 +23141;0;-0.7929077;3.663025;9.203827 +23141;3;0.059631348;0.1658783;0.25047302 +23142;12;0.19603013;0.088399865;0.28867486;0.93296546 +23143;0;-0.76901245;3.6915283;9.098923 +23143;1;-0.50905883;4.09226;8.901144 +23143;3;0.06941223;0.17382812;0.2559662 +23145;0;-0.802475;3.7485352;9.022598 +23145;12;0.19605787;0.08868864;0.28928992;0.9327417 +23146;3;0.0761261;0.1817627;0.260849 +23148;0;-0.7833557;3.8007965;8.922455 +23148;1;-0.5119666;4.095579;8.899451 +23148;3;0.08041382;0.18971252;0.26757812 +23150;4;16.392517;0.30975342;-61.94763 +23150;6;-0.41226327;-0.40131885;0.087571435 +23150;7;0.8990162;-0.36884826;0.23605238;0.0;0.4304507;0.84341973;-0.32148898;0.0;-0.080510594 +23150;0;-0.7929077;3.8483124;8.860458 +23151;3;0.08163452;0.19398499;0.27061462 +23151;12;0.19613038;0.0890283;0.28993192;0.93249476 +23153;5;999.58966 +23153;0;-0.826355;3.872055;8.784149 +23153;3;0.07978821;0.19703674;0.2755127 +23153;1;-0.5152881;4.0994487;8.897477 +23153;2;0.2639895;0.40446758;-0.19683456; +23155;0;-0.835907;3.952835;8.693527 +23155;12;0.19622177;0.08940622;0.29060137;0.9322309 +23155;3;0.07673645;0.20191956;0.2803955 +23157;0;-0.831131;3.9575806;8.631531 +23157;1;-0.5187956;4.103414;8.895446 +23158;3;0.06941223;0.20497131;0.28224182 +23160;4;17.442322;-0.29144287;-63.146973 +23160;6;-0.40301317;-0.42815667;0.09599415 +23160;7;0.90004104;-0.35678974;0.25025412;0.0;0.42699307;0.83684796;-0.3425819;0.0;-0.08719496 +23160;0;-0.850235;4.000351;8.593384 +23160;3;0.062072754;0.20863342;0.28956604 +23161;12;0.19631301;0.08979246;0.29126647;0.93196696 +23162;0;-0.855011;4.028839;8.555222 +23163;1;-0.5225015;4.107006;8.893571 +23163;3;0.05291748;0.2135315;0.29322815 +23165;0;-0.883667;4.109619;8.526611 +23165;12;0.19637716;0.09019505;0.29198673;0.93168914 +23165;3;0.04374695;0.2184143;0.2987213 +23168;1;-0.52645695;4.1100388;8.891936 +23168;0;-0.91233826;4.1286316;8.474136 +23168;3;0.035812378;0.22268677;0.30300903 +23175;4;15.492249;0.1586914;-62.547302 +23176;6;-0.3017546;-0.45109358;0.107248396 +23176;7;0.93546176;-0.26746774;0.23102452;0.0;0.34004527;0.8593071;-0.3820479;0.0;-0.096335515 +23176;0;-0.95054626;4.176132;8.416901 +23176;3;0.024810791;0.22634888;0.3085022 +23176;12;0.19640398;0.09060794;0.29273623;0.93140817 +23176;2;0.33838838;0.0727129;0.3442793; +23176;0;-0.92666626;4.2188873;8.354904 +23176;3;0.01626587;0.22880554;0.3121643 +23176;1;-0.5306188;4.1124687;8.890566 +23176;12;0.19639343;0.0910244;0.29350978;0.9311263 +23176;0;-0.9792175;4.2283936;8.30722 +23176;3;0.00831604;0.22819519;0.31582642 +23177;1;-0.53484756;4.1142516;8.889487 +23177;0;-0.98399353;4.252136;8.302444 +23178;3;-0.001449585;0.22697449;0.32070923 +23182;4;17.292786;-0.74157715;-61.79657 +23182;6;-0.3389255;-0.47050005;0.11796823 +23182;7;0.91881853;-0.29634786;0.260673;0.0;0.38048273;0.8406354;-0.38544115;0.0;-0.10490628 +23183;0;-1.0269775;4.275894;8.316757 +23183;3;-0.012451172;0.22634888;0.3243866 +23183;0;-1.0078735;4.3186646;8.288132 +23183;12;0.19634578;0.09143217;0.29428193;0.93085265 +23183;3;-0.0234375;0.22573853;0.3280487 +23183;1;-0.5388687;4.1153073;8.888755 +23185;0;-1.0604248;4.370926;8.283371 +23185;12;0.1962608;0.09182686;0.29510015;0.9305726 +23185;3;-0.030761719;0.22573853;0.33232117 +23188;17;1;38dead6d7725;4665;5795;-73; +23189;17;1;38dead6d60ff;11325;1209;-71; +23189;17;1;1c1bb5efa29a;2735;866;-54; +23190;17;1;1c1bb5ecd182;2326;944;-57; +23190;0;-1.0795288;4.4089203;8.2642975 +23190;3;-0.038711548;0.22451782;0.33354187 +23190;1;-0.54276586;4.115654;8.888357 +23192;12;0.19613618;0.09220669;0.29593816;0.93029517 +23192;1;-0.5465329;4.115371;8.888258 +23192;2;0.48972815;-0.18924284;0.58762455; +23192;4;16.54358;-0.440979;-62.097168 +23192;6;-0.27703685;-0.48657444;0.12989016 +23192;7;0.9372023;-0.2417635;0.25140104;0.0;0.32945946;0.85023546;-0.4105563;0.0;-0.11449251 +23193;0;-1.1082001;4.413666;8.278595 +23193;3;-0.04725647;0.22146606;0.33415222 +23193;5;999.58966 +23193;0;-1.1225281;4.413666;8.245209 +23193;3;-0.054595947;0.21902466;0.33537292 +23194;0;-1.1320801;4.4089203;8.288132 +23195;12;0.19597822;0.09256941;0.29678583;0.93002236 +23195;3;-0.06253052;0.21658325;0.33720398 +23196;1;-0.5500634;4.11441;8.888486 +23196;0;-1.1559601;4.404175;8.302444 +23197;3;-0.069244385;0.21414185;0.33966064 +23199;4;16.242981;-0.440979;-61.79657 +23199;6;-0.25420782;-0.48375985;0.13834193 +23199;7;0.94248617;-0.22262217;0.24931733;0.0;0.31115416;0.8568029;-0.41118348;0.0;-0.122077264 +23199;0;-1.1559601;4.4421844;8.316757 +23200;3;-0.077194214;0.2135315;0.34088135 +23200;12;0.19581982;0.092842236;0.29732484;0.9298564 +23201;1;-0.55337065;4.11285;8.889002 +23202;0;-1.1798553;4.4231873;8.345367 +23202;3;-0.08207703;0.21414185;0.340271 +23203;0;-1.1989594;4.4611816;8.350128 +23203;12;0.19560063;0.09316272;0.29818818;0.92959404 +23205;3;-0.08695984;0.21231079;0.3439331 +23207;1;-0.556687;4.110847;8.889721 +23207;0;-1.2467346;4.470688;8.340591 +23207;3;-0.0912323;0.21109009;0.34454346 +23208;4;17.74292;1.05896;-61.647034 +23208;6;-0.26794285;-0.48745692;0.14837937 +23208;7;0.9353895;-0.23391218;0.26520073;0.0;0.32861167;0.8520005;-0.4075654;0.0;-0.13061664 +23209;0;-1.2276306;4.470688;8.378754 +23209;3;-0.09429932;0.20925903;0.3475952 +23209;12;0.19535741;0.09347607;0.29905683;0.9293345 +23212;2;0.62432665;-0.3007903;0.53471756; +23212;1;-0.5598022;4.108463;8.890628 +23212;0;-1.2371826;4.4279175;8.41214 +23216;12;0.19509484;0.09377171;0.299935;0.9290769 +23216;3;-0.097351074;0.20619202;0.35125732 +23216;0;-1.2085114;4.432678;8.450302 +23216;3;-0.09918213;0.2025299;0.3561554 +23216;0;-1.2610626;4.404175;8.502762 +23216;1;-0.5625131;4.1057897;8.891691 +23216;3;-0.10467529;0.2013092;0.3610382 +23220;12;0.19483446;0.094021164;0.30070558;0.9288573 +23220;1;-0.5648865;4.102802;8.8929205 +23220;4;16.992188;-1.3412476;-63.146973 +23220;6;-0.2594154;-0.47349095;0.1472388 +23220;7;0.9389217;-0.22829415;0.25750294;0.0;0.31839955;0.8602031;-0.39833683;0.0;-0.1305669 +23220;0;-1.2562866;4.437439;8.540909 +23220;3;-0.10652161;0.19947815;0.36714172 +23221;0;-1.2849579;4.432678;8.602905 +23221;3;-0.1083374;0.1976471;0.3726349 +23222;13;72.956985 +23223;12;0.19454695;0.0942771;0.3016214;0.9285945 +23223;0;-1.2801819;4.3994293;8.65538 +23223;3;-0.1083374;0.20191956;0.379364 +23224;1;-0.5670032;4.0996385;8.894244 +23225;0;-1.2753906;4.380417;8.65538 +23225;3;-0.10774231;0.20986938;0.38729858 +23227;4;16.992188;-1.3412476;-63.146973 +23227;6;-0.26631543;-0.46419573;0.14629956 +23227;7;0.93726456;-0.2353295;0.25720644;0.0;0.32333174;0.8626594;-0.38894114;0.0;-0.13035224 +23227;0;-1.2276306;4.413666;8.70784 +23227;3;-0.10406494;0.22207642;0.3946228 +23227;12;0.19425474;0.094520755;0.30256447;0.92832416 +23229;5;999.58966 +23229;1;-0.56942976;4.0966177;8.895481 +23230;0;-1.2085114;4.389923;8.693527 +23230;2;0.6754271;-0.28630066;0.28086853; +23230;3;-0.10040283;0.233078;0.40074158 +23231;0;-1.1798553;4.3851776;8.741211 +23232;12;0.19395936;0.09479056;0.30354837;0.92803717 +23232;3;-0.09552002;0.24223328;0.4086914 +23234;0;-1.1607513;4.375656;8.76506 +23234;1;-0.5724551;4.0939107;8.896533 +23234;3;-0.09063721;0.2514038;0.41479492 +23236;4;18.792725;-1.0406494;-60.746765 +23236;6;-0.37748706;-0.45955527;0.13166325 +23236;7;0.9000851;-0.3303448;0.28411102;0.0;0.41952628;0.8331483;-0.36036316;0.0;-0.11766253 +23241;0;-1.1177521;4.3376617;8.84137 +23241;3;-0.085739136;0.25872803;0.42089844 +23241;0;-1.1034241;4.313904;8.846146 +23241;1;-0.575862;4.091575;8.897388 +23241;3;-0.08024597;0.2666626;0.4263916 +23241;0;-1.0699768;4.3043976;8.860458 +23241;12;0.19366485;0.09510265;0.3045723;0.9277312 +23242;12;0.19338067;0.09544875;0.30563143;0.92740655 +23242;3;-0.07658386;0.27400208;0.43067932 +23243;0;-1.0222168;4.266403;8.860458 +23244;1;-0.57962286;4.089644;8.898031 +23244;3;-0.07168579;0.2795105;0.43434143 +23246;4;18.792725;-1.0406494;-60.746765 +23246;6;-0.42262837;-0.44616804;0.114860594 +23246;7;0.8857203;-0.37000743;0.28034654;0.0;0.45255986;0.82273453;-0.3439442;0.0;-0.10338889 +23246;0;-0.99354553;4.233139;8.889069 +23246;3;-0.06680298;0.2831726;0.4373932 +23247;12;0.19310711;0.09582421;0.30672002;0.9270654 +23248;1;-0.5836374;4.0880485;8.898502 +23249;2;0.49273062;-0.18671083;0.050596237; +23249;0;-0.99354553;4.2046356;8.874756 +23249;3;-0.06436157;0.28683472;0.44166565 +23251;0;-0.95054626;4.214142;8.941528 +23251;12;0.19284499;0.09622356;0.3078281;0.92671126 +23251;3;-0.06008911;0.28866577;0.4459381 +23253;0;-0.91711426;4.1476135;8.979691 +23253;1;-0.58767915;4.086704;8.898853 +23253;3;-0.057037354;0.29049683;0.44900513 +23255;4;17.892456;-1.1901855;-61.79657 +23255;6;-0.4266356;-0.43072432;0.101779155 +23255;7;0.8880971;-0.37601438;0.2643798;0.0;0.45028868;0.8272138;-0.33609143;0.0;-0.09232342 +23256;0;-0.90278625;4.1618805;8.974915 +23256;3;-0.054595947;0.29110718;0.45510864 +23256;12;0.192597;0.0966217;0.3089057;0.92636275 +23258;0;-0.859787;4.123871;9.013062 +23259;1;-0.59161365;4.0856066;8.899097 +23259;3;-0.053970337;0.29171753;0.4606018 +23261;0;-0.874115;4.133362;8.984451 +23261;12;0.19235645;0.097034186;0.31005195;0.9259866 +23261;3;-0.05152893;0.29110718;0.46611023 +23263;0;-0.8215637;4.0763702;9.013062 +23263;1;-0.595306;4.084637;8.899296 +23263;3;-0.049697876;0.28927612;0.4716034 +23265;4;17.892456;-1.1901855;-61.79657 +23265;6;-0.45658416;-0.4231918;0.09090136 +23265;7;0.8774221;-0.40199116;0.26178926;0.0;0.47252506;0.8183832;-0.32706127;0.0;-0.0827682 +23265;0;-0.7833557;4.0478516;9.036911 +23265;3;-0.049697876;0.28744507;0.4789276 +23266;12;0.19212157;0.09743896;0.31122345;0.92559975 +23267;5;999.5913 +23268;0;-0.7929077;4.0336;9.036911 +23268;3;-0.049087524;0.285614;0.4862671 +23268;1;-0.5985508;4.0837507;8.899485 +23268;2;0.26149893;-0.005722046;-0.11111355; +23270;0;-0.75468445;4.0050964;9.08461 +23271;12;0.19189556;0.09783027;0.31241927;0.9252024 +23271;3;-0.048477173;0.2849884;0.49298096 +23273;0;-0.74513245;3.952835;9.094147 +23273;1;-0.60132855;4.0828567;8.899708 +23273;3;-0.049087524;0.282547;0.5009308 +23275;4;18.193054;-0.74157715;-61.79657 +23275;6;-0.4923934;-0.40880007;0.08175277 +23275;7;0.8629152;-0.43378213;0.25924978;0.0;0.49976245;0.8085914;-0.3105117;0.0;-0.07493268 +23275;0;-0.74513245;3.9480896;9.14183 +23275;3;-0.049697876;0.2819519;0.5094757 +23276;12;0.19168136;0.09818635;0.31355834;0.9248237 +23277;0;-0.6782532;3.9290771;9.170456 +23278;3;-0.04786682;0.2813263;0.5167999 +23278;1;-0.60361433;4.081913;8.899986 +23280;0;-0.6639252;3.8910675;9.146606 +23281;12;0.19146073;0.098540016;0.3148184;0.9244036 +23281;3;-0.046035767;0.282547;0.5265808 +23282;0;-0.68304443;3.9100647;9.14183 +23282;1;-0.6055142;4.08109;8.900234 +23283;3;-0.044815063;0.2831726;0.5332947 +23284;4;18.193054;-0.74157715;-61.79657 +23284;6;-0.5131184;-0.4031595;0.0745778 +23285;7;0.8544466;-0.45153937;0.25696966;0.0;0.5149992;0.8013691;-0.30427575;0.0;-0.06853504 +23285;0;-0.64482117;3.9148254;9.179993 +23285;3;-0.044204712;0.2843933;0.54307556 +23285;12;0.1912496;0.09888651;0.3161138;0.92396814 +23287;0;-0.63526917;3.9195862;9.203827 +23287;1;-0.6071206;4.080422;8.900431 +23287;2;0.084533274;0.17500257;-0.2581997; +23287;3;-0.042373657;0.285614;0.5522461 +23289;0;-0.5683899;3.938568;9.184769 +23290;12;0.19104761;0.099227056;0.31744623;0.9235165 +23290;3;-0.038711548;0.28744507;0.56018066 +23291;0;-0.5206146;3.9433289;9.184769 +23292;1;-0.6083621;4.0800123;8.900534 +23292;3;-0.03564453;0.29049683;0.56811523 +23294;4;18.043518;0.009155273;-62.39624 +23294;6;-0.5258894;-0.4049543;0.0566218 +23294;7;0.8522997;-0.46138224;0.24639724;0.0;0.520461;0.7949268;-0.31178775;0.0;-0.052014448 +23294;0;-0.5683899;3.933838;9.203827 +23294;3;-0.030151367;0.29415894;0.5766754 +23295;12;0.19092423;0.09943411;0.31819537;0.9232619 +23296;0;-0.5540619;3.9005737;9.213379 +23297;1;-0.6095551;4.079942;8.900485 +23297;3;-0.026489258;0.299057;0.5809479 +23300;0;-0.5827179;3.9243164;9.170456 +23300;3;-0.021606445;0.30393982;0.587677 +23301;12;0.1907489;0.09978386;0.31960407;0.9227738 +23301;0;-0.5397186;3.8815765;9.14183 +23301;1;-0.6109077;4.080294;8.90023 +23301;3;-0.014877319;0.30882263;0.5931549 +23306;4;17.292786;-0.74157715;-62.097168 +23306;6;-0.51732475;-0.4009022;0.058969904 +23306;7;0.85626;-0.455343;0.2438886;0.0;0.51368713;0.80023026;-0.30944663;0.0;-0.05426268 +23306;0;-0.5253906;3.9100647;9.108459 +23306;3;-0.008163452;0.3118744;0.59866333 +23309;17;1;38dead6d7725;9325;1911;-72; +23309;17;1;38dead6d60ff;11107;890;-66; +23309;17;1;1c1bb5efa29a;2054;578;-52; +23310;17;1;1c1bb5ecd182;3439;886;-66; +23310;2;-0.06918132;0.1912756;-0.2753191; +23310;12;0.19058986;0.10015308;0.32104078;0.92226774 +23310;1;-0.6123553;4.081272;8.899682 +23310;12;0.19045725;0.100547224;0.32251307;0.9217384 +23310;5;999.5913 +23310;0;-0.5015106;3.9195862;9.08461 +23311;1;-0.61373985;4.0829873;8.8988 +23314;3;-8.392334E-4;0.3143158;0.6060028 +23314;0;-0.48718262;3.952835;9.094147 +23314;3;0.00831604;0.3191986;0.6121063 +23315;0;-0.44895935;3.962326;9.075058 +23315;3;0.015655518;0.32104492;0.6200409 +23315;4;18.34259;-0.59051514;-61.1969 +23315;6;-0.5626821;-0.4112212;0.049431488 +23315;7;0.8342578;-0.48898417;0.2547711;0.0;0.54951113;0.77531356;-0.31132993;0.0;-0.0452921 +23315;0;-0.39640808;3.9718475;9.051224 +23315;12;0.19038634;0.10090528;0.32376832;0.9212737 +23315;3;0.022979736;0.32470703;0.6255493 +23322;0;-0.4298401;4.000351;9.008301 +23322;12;0.19032553;0.10133435;0.32528788;0.9207038 +23322;3;0.02848816;0.3265381;0.6310425 +23322;0;-0.44895935;3.9908295;8.960602 +23322;3;0.035202026;0.32592773;0.63653564 +23323;0;-0.43940735;4.028839;8.898605 +23323;3;0.043136597;0.32348633;0.6408081 +23323;1;-0.61503386;4.0854697;8.897572 +23323;1;-0.6162916;4.088596;8.896049 +23323;4;18.193054;-0.440979;-61.047363 +23323;6;-0.5435122;-0.42468074;0.049339276 +23323;7;0.8443472;-0.47120744;0.25503227;0.0;0.53390867;0.77986854;-0.32672104;0.0;-0.044938244 +23323;0;-0.45851135;4.085861;8.874756 +23323;3;0.047424316;0.31982422;0.6463165 +23325;12;0.19029747;0.10177825;0.32682878;0.92011476 +23330;2;-0.1773144;0.1111722;-0.09728527; +23330;1;-0.6171463;4.0924425;8.89422 +23330;12;0.19030741;0.102216646;0.3283853;0.9195097 +23330;0;-0.42507935;4.090622;8.860458 +23331;1;-0.6173174;4.0967207;8.892239 +23331;3;0.05230713;0.3143158;0.6530304 +23331;0;-0.41073608;4.090622;8.86998 +23331;3;0.055358887;0.3106537;0.6579132 +23331;0;-0.41073608;4.1476135;8.86998 +23331;3;0.058410645;0.30821228;0.66464233 +23334;12;0.19042322;0.10249478;0.3292841;0.91913325 +23334;4;18.043518;-1.3412476;-61.647034 +23334;6;-0.5419598;-0.4369835;0.04627326 +23334;7;0.8456846;-0.46734592;0.2576921;0.0;0.53203475;0.7761973;-0.33831427;0.0;-0.041910112 +23334;0;-0.4202881;4.1476135;8.860458 +23335;3;0.05657959;0.30577087;0.67196655 +23335;0;-0.39640808;4.190384;8.846146 +23335;3;0.05718994;0.3014984;0.67807007 +23335;1;-0.61698246;4.101251;8.890174 +23338;0;-0.37728882;4.209381;8.850922 +23338;12;0.19048367;0.102898896;0.33088407;0.9185008 +23338;3;0.054748535;0.2972107;0.6860199 +23340;0;-0.39640808;4.223633;8.846146 +23340;1;-0.61600554;4.105806;8.888139 +23340;3;0.051696777;0.29171753;0.69395447 +23345;12;0.19055219;0.10328031;0.33250985;0.9178564 +23346;2;-0.21108907;-0.06265783;0.025369644; +23346;1;-0.6143551;4.1102195;8.886212 +23348;12;0.19062133;0.103631854;0.3341642;0.91720134 +23348;4;17.74292;-2.241516;-62.69684 +23348;6;-0.533069;-0.44505927;0.044781435 +23348;7;0.85059416;-0.45867476;0.25711265;0.0;0.5242679;0.7773528;-0.34765744;0.0;-0.04040555 +23350;1;-0.61193687;4.1143875;8.884451 +23350;0;-0.40119934;4.2854004;8.846146 +23351;3;0.046813965;0.28805542;0.700058 +23351;0;-0.4298401;4.3186646;8.78891 +23351;3;0.042526245;0.282547;0.7067871 +23351;5;999.5913 +23351;0;-0.40596008;4.3329163;8.793686 +23351;3;0.038864136;0.27583313;0.7147217 +23351;0;-0.38208008;4.375656;8.731674 +23351;3;0.035812378;0.27278137;0.7214508 +23351;4;16.842651;-0.440979;-61.047363 +23351;6;-0.47933847;-0.46416384;0.043730043 +23351;7;0.87742615;-0.41239637;0.24505629;0.0;0.47811633;0.79342043;-0.3766811;0.0;-0.039090775 +23352;0;-0.3152008;4.4516907;8.497986 +23352;12;0.19127785;0.10282073;0.33048183;0.91848934 +23352;3;0.051696777;0.3002777;0.730011 +23356;1;-0.6093138;4.1188903;8.8825445 +23356;0;-0.16711426;4.4279175;8.769836 +23356;3;0.0773468;0.3332672;0.7434387 +23356;12;0.1913511;0.103133425;0.33220372;0.9178175 +23357;0;-0.24354553;4.4184265;9.075058 +23357;3;0.08773804;0.35769653;0.7617645 +23358;0;-0.4298401;4.437439;8.994003 +23359;1;-0.60876405;4.1248665;8.879808 +23359;3;0.09017944;0.39190674;0.7764282 +23361;4;18.34259;-1.0406494;-61.1969 +23361;6;-0.526851;-0.4578831;0.047755513 +23361;7;0.85279876;-0.45101914;0.26327956;0.0;0.52048135;0.77535367;-0.3576673;0.0;-0.04281995 +23361;0;-0.49195862;4.465927;8.688751 +23361;3;0.095062256;0.4297638;0.78741455 +23362;12;0.1914662;0.10361159;0.3339971;0.9170885 +23364;0;-0.42507935;4.4849396;8.540909 +23364;1;-0.61057174;4.1316314;8.876538 +23364;2;-0.25527173;-0.26485825;0.101861954; +23364;3;0.10606384;0.4590912;0.7965851 +23365;0;-0.43463135;4.4991913;8.517059 +23366;12;0.19156882;0.10423056;0.33588064;0.9163087 +23366;3;0.11828613;0.4768219;0.8100281 +23368;0;-0.45851135;4.560959;8.598129 +23368;1;-0.61433023;4.1393847;8.872666 +23368;3;0.1262207;0.48475647;0.82406616 +23370;4;18.193054;-2.5405884;-60.59723 +23370;6;-0.51283115;-0.48712966;0.05327641 +23370;7;0.85789245;-0.43357426;0.2757423;0.0;0.51166993;0.77000254;-0.38116932;0.0;-0.047057036 +23371;0;-0.48718262;4.5799713;8.693527 +23371;3;0.1274414;0.48658752;0.8393402 +23371;12;0.19170621;0.104919516;0.33753273;0.9155939 +23373;0;-0.5397186;4.6797333;8.650604 +23373;1;-0.61831486;4.147886;8.868419 +23373;3;0.12438965;0.48597717;0.84973145 +23375;0;-0.5349426;4.6892242;8.593384 +23375;12;0.19183902;0.10571503;0.3395466;0.9147297 +23376;3;0.118881226;0.477417;0.8601227 +23378;0;-0.49195862;4.7224884;8.517059 +23378;1;-0.6216484;4.1564374;8.86418 +23378;3;0.11155701;0.46398926;0.8631592 +23380;4;18.34259;-1.6403198;-61.94763 +23380;6;-0.46984354;-0.5055657;0.05769745 +23380;7;0.8775113;-0.39610842;0.27031827;0.0;0.47689462;0.7800956;-0.4049966;0.0;-0.05045153 +23380;0;-0.5397186;4.7414856;8.464584 +23381;3;0.10421753;0.4426117;0.8662262 +23381;12;0.19197546;0.106492415;0.34162202;0.9138376 +23382;0;-0.5206146;4.6892242;8.435989 +23382;1;-0.6235436;4.1644554;8.860283 +23383;2;-0.12468529;-0.45451927;0.2889347; +23383;3;0.09017944;0.4132843;0.86683655 +23383;5;999.5913 +23385;0;-0.55882263;4.6654816;8.536133 +23388;12;0.19210194;0.10718656;0.3436941;0.91295254 +23388;1;-0.62308574;4.171244;8.857121 +23388;3;0.07246399;0.3839569;0.86805725 +23388;0;-0.59706116;4.6892242;8.555222 +23388;3;0.051696777;0.3534088;0.8662262 +23389;4;17.892456;-1.7913818;-62.097168 +23389;6;-0.43981266;-0.50036967;0.069676116 +23389;7;0.8884152;-0.37357283;0.26676163;0.0;0.45495832;0.7939039;-0.40339753;0.0;-0.06108474 +23390;0;-0.55882263;4.670227;8.579071 +23390;3;0.02848816;0.32470703;0.8662262 +23390;12;0.19275889;0.10671707;0.34093645;0.9139025 +23392;0;-0.5349426;4.703491;8.602905 +23392;1;-0.6200534;4.1762495;8.854976 +23392;3;0.004043579;0.2984314;0.86561584 +23394;0;-0.5110626;4.7224884;8.617218 +23395;12;0.19282942;0.1071011;0.3429778;0.91307855 +23395;3;-0.018539429;0.27217102;0.8674469 +23397;0;-0.5349426;4.693985;8.650604 +23397;1;-0.6146858;4.1792235;8.853946 +23397;3;-0.041152954;0.2514038;0.8686676 +23400;4;17.74292;-1.940918;-62.39624 +23400;6;-0.45295516;-0.49635944;0.061760113 +23400;7;0.88458025;-0.38481295;0.2635083;0.0;0.46321929;0.79064924;-0.40037665;0.0;-0.054272514 +23401;0;-0.54927063;4.670227;8.73645 +23401;3;-0.06314087;0.233078;0.8735504 +23401;12;0.1928349;0.107327476;0.34500536;0.9122866 +23402;2;-0.056352615;-0.48184395;0.20700455; +23402;1;-0.60744786;4.1801596;8.854003 +23402;0;-0.5779419;4.6797333;8.803207 +23403;3;-0.085128784;0.21902466;0.8772278 +23404;0;-0.5779419;4.6084595;8.846146 +23404;12;0.19277143;0.107419826;0.34703276;0.9115199 +23405;3;-0.10223389;0.20802307;0.8833313 +23406;0;-0.60661316;4.594223;8.908142 +23407;1;-0.59885406;4.1791863;8.855048 +23407;3;-0.121170044;0.19703674;0.88882446 +23409;4;18.492126;-2.5405884;-62.097168 +23409;6;-0.4902852;-0.47521296;0.06799152 +23409;7;0.86552346;-0.41870204;0.27487758;0.0;0.49721178;0.78444684;-0.3707068;0.0;-0.06041117 +23409;0;-0.6113739;4.546707;8.965378 +23409;3;-0.1376648;0.18849182;0.8961487 +23410;12;0.19290553;0.10690811;0.3467239;0.9116692 +23411;0;-0.6018219;4.4991913;8.998749 +23412;1;-0.58917135;4.176552;8.85694 +23412;3;-0.15110779;0.17871094;0.90226746 +23414;0;-0.6018219;4.4897003;9.051224 +23414;12;0.19270395;0.106814176;0.3487938;0.910933 +23414;3;-0.16271973;0.1658783;0.9089813 +23416;0;-0.64482117;4.470688;9.160919 +23416;3;-0.17553711;0.1524353;0.9156952 +23417;1;-0.5784028;4.1726336;8.859497 +23418;4;19.692993;-2.6901245;-61.1969 +23418;6;-0.5522499;-0.45304242;0.070272356 +23418;7;0.83312243;-0.47168174;0.28883097;0.0;0.54947376;0.76546216;-0.33488238;0.0;-0.063131265 +23419;0;-0.67349243;4.480179;9.189545 +23419;3;-0.18409729;0.1377716;0.92303467 +23420;12;0.19245586;0.106647655;0.35088766;0.91020054 +23421;1;-0.5662942;4.167642;8.862629 +23421;0;-0.6639252;4.437439;9.284912 +23422;2;0.055141628;-0.32387543;-0.19955349; +23422;3;-0.19325256;0.11885071;0.92974854 +23422;5;999.5913 +23423;0;-0.64482117;4.4279175;9.365997 +23423;12;0.19217752;0.10639324;0.35300335;0.90947074 +23424;3;-0.19752502;0.097457886;0.93525696 +23426;0;-0.64482117;4.375656;9.427994 +23426;1;-0.5523578;4.161831;8.866238 +23426;3;-0.19998169;0.07974243;0.9413605 +23428;4;19.993591;-1.940918;-60.446167 +23428;6;-0.57999045;-0.43363786;0.06828797 +23428;7;0.81880635;-0.49729332;0.28680208;0.0;0.5707206;0.75904703;-0.31324968;0.0;-0.061919298 +23428;0;-0.6495819;4.3614197;9.4756775 +23428;3;-0.19998169;0.06385803;0.94441223 +23430;12;0.19190542;0.10601267;0.35502374;0.90878594 +23430;0;-0.5922699;4.299652;9.561539 +23431;3;-0.19325256;0.050430298;0.94563293 +23431;1;-0.53668296;4.1556554;8.870096 +23433;0;-0.5540619;4.2473907;9.609222 +23434;3;-0.18470764;0.041259766;0.94563293 +23434;12;0.19163686;0.10556005;0.3571601;0.9080579 +23435;0;-0.55882263;4.223633;9.652161 +23435;1;-0.51981425;4.1497316;8.873874 +23435;3;-0.17370605;0.038208008;0.9462433 +23438;4;19.543457;-2.8411865;-60.59723 +23438;6;-0.62761027;-0.41186696;0.057831556 +23438;7;0.7944928;-0.5381065;0.28146493;0.0;0.6049593;0.7417442;-0.28955075;0.0;-0.05296586 +23438;0;-0.5349426;4.180893;9.709381 +23440;3;-0.16027832;0.041259766;0.947464 +23440;0;-0.47283936;4.1713715;9.742767 +23440;1;-0.50263906;4.144567;8.877276 +23440;12;0.19140884;0.10505547;0.35928637;0.90732545 +23440;2;0.07801682;-0.11670065;-0.7024431; +23441;3;-0.14376831;0.050430298;0.94807434 +23442;17;1;38dead6d7725;8260;1415;-66; +23443;17;1;38dead6d60ff;9698;667;-64; +23443;17;1;1c1bb5efa29a;2032;1300;-58; +23443;17;1;1c1bb5ecd182;2439;1172;-58; +23443;0;-0.45851135;4.1618805;9.75708 +23443;12;0.19123155;0.10455026;0.3614061;0.90657896 +23443;3;-0.1230011;0.06324768;0.94929504 +23445;0;-0.41552734;4.1571198;9.728455 +23445;1;-0.48611298;4.1407375;8.879983 +23445;3;-0.10284424;0.0821991;0.95114136 +23447;4;18.043518;-3.2913208;-61.94763 +23447;6;-0.61938626;-0.40350106;0.042686626 +23447;7;0.8037661;-0.53391385;0.2624806;0.0;0.5936495;0.7488453;-0.29463693;0.0;-0.039246626 +23447;0;-0.41552734;4.1476135;9.752304 +23448;3;-0.07902527;0.10662842;0.9517517 +23448;12;0.19143015;0.10350411;0.3606861;0.9069438 +23449;0;-0.47283936;4.1381226;9.733231 +23450;1;-0.47108117;4.1386228;8.881779 +23450;3;-0.053375244;0.13105774;0.95480347 +23452;0;-0.47763062;4.123871;9.699844 +23452;12;0.19136667;0.10318101;0.36283362;0.90613705 +23453;3;-0.028320312;0.15794373;0.9566345 +23454;0;-0.5015106;4.1048584;9.666458 +23454;1;-0.45819432;4.138593;8.882466 +23455;3;-0.002670288;0.18359375;0.96151733 +23457;4;18.34259;-2.241516;-59.246826 +23457;6;-0.61892086;-0.40109056;0.051835053 +23457;7;0.8016754;-0.5341129;0.26840302;0.0;0.59585357;0.7498625;-0.2875151;0.0;-0.047699835 +23457;0;-0.5110626;4.0811005;9.571075 +23457;3;0.019927979;0.20558167;0.9657898 +23458;12;0.19136792;0.1030116;0.36499852;0.90528613 +23460;0;-0.5301666;4.0668488;9.523392 +23460;1;-0.44742286;4.140645;8.882059 +23460;2;0.024936736;0.043488026;-0.8088865; +23460;3;0.04374695;0.22390747;0.9712982 +23461;5;999.6772 +23462;0;-0.49671936;4.0716095;9.4470825 +23462;12;0.19143458;0.10299316;0.36717528;0.90439355 +23463;3;0.063308716;0.24040222;0.9749603 +23464;0;-0.5206146;4.0811005;9.375534 +23464;1;-0.4380525;4.1446424;8.880662 +23464;3;0.08041382;0.2532196;0.97862244 +23466;4;19.242859;-4.79126;-61.346436 +23466;6;-0.6582724;-0.4099931;0.0554721 +23466;7;0.7763137;-0.56105137;0.2873295;0.0;0.6282923;0.7254908;-0.28091228;0.0;-0.050848678 +23467;0;-0.47763062;4.0478516;9.313538 +23467;3;0.09751892;0.26483154;0.9792328 +23467;12;0.19157456;0.10308218;0.3693305;0.90347576 +23469;0;-0.45373535;4.043091;9.261063 +23469;1;-0.42964858;4.150137;8.878506 +23469;3;0.110946655;0.27827454;0.9792328 +23471;0;-0.44895935;4.024109;9.242004 +23471;12;0.19176354;0.1032653;0.37154612;0.90250576 +23472;3;0.12194824;0.2886505;0.9816742 +23473;0;-0.46328735;4.028839;9.222916 +23474;1;-0.42222282;4.156761;8.875763 +23474;3;0.12866211;0.30085754;0.9804535 +23476;4;19.392395;-2.241516;-59.547424 +23476;6;-0.6374923;-0.41138527;0.050190017 +23476;7;0.7906386;-0.5455248;0.2780167;0.0;0.6105539;0.73654544;-0.29107508;0.0;-0.04598324 +23476;0;-0.45373535;4.0336;9.075058 +23476;3;0.13417053;0.30758667;0.97984314 +23477;12;0.19199082;0.103526406;0.37376687;0.90151 +23483;99;2 +23484;0;-0.44418335;4.0763702;8.989227 +23484;1;-0.41565955;4.1641097;8.872628 +23484;2;0.0543274;0.1392746;-0.3804102; +23484;3;0.13783264;0.31063843;0.97618103 +23484;0;-0.43940735;4.0716095;8.931976 +23484;12;0.19223711;0.103848115;0.37599006;0.9004954 +23484;3;0.1421051;0.30941772;0.9725189 +23484;1;-0.40943342;4.1718583;8.869277 +23487;0;-0.45851135;4.090622;8.889069 +23488;3;0.14271545;0.30392456;0.96946716 +23488;4;18.492126;-3.1402588;-61.047363 +23488;6;-0.5876236;-0.43078765;0.05153581 +23488;7;0.8192301;-0.50373465;0.27406856;0.0;0.5715517;0.7562228;-0.3185214;0.0;-0.046806626 +23488;0;-0.4202881;4.1523743;8.884293 +23488;3;0.14271545;0.29475403;0.96824646 +23488;12;0.19285147;0.10351706;0.3750573;0.9007911 +23489;0;-0.43940735;4.209381;8.850922 +23489;1;-0.40280458;4.179807;8.865838 +23489;3;0.14271545;0.27949524;0.96517944 +23493;12;0.19313475;0.10384825;0.37724882;0.8997765 +23493;1;-0.39504737;4.187918;8.862358 +23493;0;-0.44418335;4.3329163;8.846146 +23493;3;0.1408844;0.26361084;0.96517944 +23494;0;-0.43463135;4.4611816;8.84137 +23494;3;0.13720703;0.2495575;0.96517944 +23497;4;18.043518;-4.6401978;-59.547424 +23497;6;-0.5804487;-0.46682;0.049119283 +23498;7;0.82309;-0.48972264;0.28756657;0.0;0.56621575;0.74674475;-0.34895825;0.0;-0.04384608 +23498;0;-0.4298401;4.513443;8.865219 +23498;12;0.19345021;0.10412469;0.37941685;0.8987648 +23498;3;0.13417053;0.23428345;0.96640015 +23498;0;-0.40596008;4.5989685;8.893829 +23498;1;-0.38595596;4.1958756;8.8589945 +23498;2;0.04880801;-0.08234882;-0.028491974; +23498;3;0.12927246;0.22084045;0.9700775 +23499;5;999.6772 +23500;0;-0.41073608;4.670227;8.927231 +23501;12;0.19378456;0.10433241;0.38157144;0.8977559 +23501;3;0.1262207;0.21107483;0.97618103 +23502;0;-0.41073608;4.7224884;8.979691 +23502;1;-0.37557244;4.2035613;8.855796 +23503;3;0.12132263;0.2055664;0.9816742 +23504;4;18.94226;-3.440857;-59.396362 +23504;6;-0.57608795;-0.4837279;0.0457087 +23504;7;0.8261479;-0.48224714;0.29140595;0.0;0.56199956;0.74238527;-0.36471996;0.0;-0.040450327 +23505;0;-0.39163208;4.793747;9.051224 +23505;3;0.11399841;0.20739746;0.9902344 +23505;12;0.19419353;0.10435248;0.38317195;0.89698315 +23507;0;-0.38208008;4.8127594;9.108459 +23507;3;0.10484314;0.21412659;0.99816895 +23508;1;-0.3644658;4.210823;8.85281 +23510;12;0.19452682;0.104457244;0.385354;0.8959634 +23510;0;-0.39640808;4.8365173;9.199066 +23510;3;0.095062256;0.22755432;1.0085602 +23512;0;-0.44418335;4.86026;9.251541 +23512;1;-0.35363233;4.2172675;8.850181 +23514;3;0.08407593;0.24221802;1.0183411 +23514;4;17.74292;-5.6915283;-61.1969 +23514;6;-0.5567447;-0.48324436;0.04797498 +23514;7;0.83622795;-0.46791646;0.28596687;0.0;0.5467354;0.7517649;-0.36868688;0.0;-0.042465173 +23514;0;-0.4298401;4.8982697;9.365997 +23514;3;0.06819153;0.26298523;1.0262604 +23515;12;0.19480912;0.10456993;0.3875817;0.8949274 +23516;0;-0.44895935;4.9362793;9.46138 +23517;1;-0.34375972;4.2226443;8.848006 +23517;2;0.07185894;-0.5691967;-0.33173275; +23517;3;0.053527832;0.2862091;1.037262 +23520;0;-0.47283936;4.9315186;9.537689 +23520;12;0.19501127;0.10471933;0.38986817;0.8938721 +23520;3;0.033981323;0.31736755;1.0476532 +23521;0;-0.5540619;4.9267883;9.547226 +23522;1;-0.33563694;4.226574;8.846442 +23522;3;0.013214111;0.34729004;1.0555878 +23524;4;18.34259;-2.6901245;-61.647034 +23524;6;-0.5111552;-0.4757155;0.057968788 +23524;7;0.8577352;-0.43486857;0.274189;0.0;0.5115053;0.7753377;-0.37042376;0.0;-0.051503386 +23524;0;-0.63049316;4.9267883;9.552002 +23524;3;-0.008163452;0.37356567;1.0629272 +23525;12;0.19560766;0.10395224;0.3877263;0.8947625 +23526;0;-0.7499237;4.9267883;9.532913 +23526;1;-0.32983392;4.2287498;8.84562 +23526;3;-0.031982422;0.3967743;1.0702515 +23529;0;-0.826355;4.9267883;9.556763 +23529;3;-0.053970337;0.4175415;1.077591 +23529;12;0.19554958;0.104264766;0.3901722;0.89367497 +23531;0;-0.93621826;4.893524;9.604462 +23531;1;-0.32599032;4.2289424;8.845671 +23531;3;-0.077194214;0.43281555;1.0855255 +23533;4;19.093323;-4.940796;-58.79669 +23533;6;-0.5261762;-0.46931294;0.09717044 +23533;7;0.8386174;-0.44792894;0.30996844;0.0;0.5378045;0.77123815;-0.3405261;0.0;-0.08652799 +23534;0;-1.0174255;4.8650208;9.647385 +23534;3;-0.10223389;0.44503784;1.0934601 +23534;12;0.19534461;0.10463359;0.39266238;0.89258534 +23536;0;-1.0652008;4.8460083;9.685532 +23536;1;-0.32338005;4.2270613;8.846665 +23536;2;0.4610923;-0.6546173;-0.7475996; +23536;3;-0.12850952;0.4529724;1.1001892 +23537;5;999.6772 +23538;0;-1.1798553;4.8127594;9.70462 +23539;12;0.19500513;0.10502416;0.39520788;0.8914896 +23539;3;-0.1559906;0.45848083;1.1093445 +23541;0;-1.2419586;4.7747498;9.714157 +23541;1;-0.32140312;4.2228813;8.848733 +23541;3;-0.18164062;0.45907593;1.1191254 +23543;4;18.792725;-5.6915283;-58.047485 +23543;6;-0.48970222;-0.4536432;0.12716053 +23543;7;0.84920645;-0.42278898;0.31638265;0.0;0.5156108;0.7932166;-0.32396466;0.0;-0.11399128 +23543;0;-1.2992706;4.7082367;9.714157 +23543;3;-0.20852661;0.45663452;1.1282806 +23544;12;0.19454084;0.10538241;0.39772782;0.8904275 +23546;0;-1.3757172;4.6559753;9.699844 +23546;1;-0.31933364;4.216373;8.851912 +23546;3;-0.23602295;0.4493103;1.1386719 +23548;0;-1.3996124;4.603714;9.737991 +23548;12;0.19394848;0.10570575;0.40037274;0.8893323 +23548;3;-0.25801086;0.44015503;1.1508942 +23550;0;-1.4425964;4.52771;9.695084 +23550;1;-0.31644496;4.2075634;8.856206 +23551;3;-0.28060913;0.42852783;1.1612701 +23553;4;18.792725;-5.39093;-59.547424 +23553;6;-0.43821043;-0.43272665;0.14771292 +23553;7;0.8694635;-0.3852083;0.30926976;0.0;0.4755854;0.82204753;-0.31313962;0.0;-0.13361047 +23553;0;-1.4712524;4.44693;9.718933 +23553;3;-0.30015564;0.41448975;1.1722717 +23553;12;0.1932538;0.10594186;0.40306574;0.8882383 +23555;0;-1.4903717;4.404175;9.742767 +23555;1;-0.31227884;4.196784;8.861466 +23555;2;1.056326;-0.396317;-0.86552334; +23555;3;-0.3184967;0.39860535;1.1820374 +23557;0;-1.4903717;4.356659;9.752304 +23557;3;-0.33436584;0.38027954;1.1918182 +23558;12;0.19248676;0.106074795;0.4058022;0.88714236 +23560;0;-1.4664917;4.2949066;9.718933 +23560;1;-0.3064336;4.1843786;8.867535 +23560;3;-0.34780884;0.36073303;1.1997681 +23563;4;19.692993;-5.6915283;-58.49762 +23563;6;-0.5119375;-0.4119612;0.14976044 +23563;7;0.8327736;-0.4488836;0.3240241;0.0;0.53646624;0.7988601;-0.27207783;0.0;-0.13671866 +23563;0;-1.4712524;4.2426453;9.766617 +23563;3;-0.36125183;0.34118652;1.2089233 +23563;12;0.19167976;0.106079295;0.4085173;0.8860698 +23564;0;-1.4330444;4.1951294;9.80954 +23565;1;-0.29866752;4.1706386;8.87427 +23565;3;-0.37223816;0.32164;1.2144165 +23568;12;0.19084133;0.10597196;0.41131163;0.8849703 +23568;0;-1.4139404;4.133362;9.881073 +23568;3;-0.3814087;0.30636597;1.2223663 +23569;0;-1.4043732;4.133362;9.923996 +23569;1;-0.2890911;4.15579;8.881551 +23569;3;-0.38812256;0.29170227;1.2272491 +23572;4;19.392395;-4.6401978;-60.446167 +23572;6;-0.50172454;-0.3911441;0.14057942 +23572;7;0.84241396;-0.44461465;0.3043952;0.0;0.52302915;0.8105362;-0.26357442;0.0;-0.1295343 +23572;0;-1.3948212;4.100113;9.952621 +23572;3;-0.39239502;0.28193665;1.232132 +23572;12;0.18999085;0.10575389;0.41412106;0.88386834 +23574;0;-1.3709412;4.0716095;10.014618 +23574;2;1.1618326;-0.026245117;-0.9744806; +23575;1;-0.27820593;4.1402473;8.889154 +23575;3;-0.39544678;0.2715454;1.2364197 +23575;5;999.6772 +23576;0;-1.3757172;3.9955902;10.062302 +23577;12;0.1891353;0.10545486;0.41694233;0.88276064 +23577;3;-0.39239502;0.26542664;1.2413025 +23580;0;-1.3470612;3.9860992;10.10524 +23580;1;-0.266442;4.1243606;8.896897 +23580;3;-0.39056396;0.25749207;1.2425232 +23581;4;18.34259;-6.2911987;-58.79669 +23581;6;-0.569961;-0.37272373;0.13252196 +23581;7;0.8085759;-0.5025498;0.30602092;0.0;0.57537895;0.78411484;-0.23260102;0.0;-0.12306192 +23582;0;-1.3566132;3.9290771;10.152924 +23582;3;-0.3862915;0.25260925;1.2461853 +23582;12;0.18834125;0.10500418;0.4193058;0.8818642 +23584;0;-1.3470612;3.872055;10.176773 +23584;1;-0.254099;4.1085234;8.904582 +23585;3;-0.3838501;0.24465942;1.247406 +23586;0;-1.3518219;3.8530579;10.238785 +23586;12;0.18751171;0.10462586;0.42213666;0.8807346 +23586;3;-0.37773132;0.24160767;1.2522888 +23589;0;-1.3470612;3.796051;10.305542 +23589;1;-0.24124663;4.0928283;8.912164 +23589;3;-0.3728485;0.23855591;1.2510681 +23591;4;18.043518;-5.6915283;-59.547424 +23591;6;-0.57457536;-0.35018966;0.12997541 +23591;7;0.8081764;-0.5104934;0.2936791;0.0;0.57622;0.7884766;-0.21511668;0.0;-0.12174344 +23591;0;-1.3422699;3.7770538;10.2912445 +23591;3;-0.3679657;0.23550415;1.2510681 +23592;12;0.18670532;0.10422436;0.42496812;0.8795911 +23593;0;-1.3518219;3.7580414;10.338928 +23593;1;-0.2281322;4.077339;8.919605 +23594;2;1.1369342;0.23246622;-1.3009682; +23594;3;-0.35940552;0.23428345;1.2516785 +23596;0;-1.3470612;3.7200317;10.362778 +23596;12;0.18591826;0.10381577;0.42781076;0.8784274 +23596;3;-0.35025024;0.2336731;1.2535095 +23598;0;-1.3470612;3.6582794;10.372314 +23598;1;-0.215063;4.0624385;8.926726 +23599;3;-0.33802795;0.23184204;1.2541199 +23601;4;19.093323;-5.9906006;-60.446167 +23601;6;-0.6408907;-0.33646038;0.12914799 +23601;7;0.7694652;-0.5643844;0.2989875;0.0;0.6270124;0.7566192;-0.18542635;0.0;-0.12156796 +23601;0;-1.3231812;3.6012573;10.391388 +23601;3;-0.3251953;0.23184204;1.2559662 +23602;12;0.1852563;0.103246346;0.4298405;0.8776431 +23603;0;-1.3183899;3.5822601;10.424774 +23603;1;-0.20193441;4.048344;8.9334345 +23603;3;-0.31298828;0.23672485;1.2571869 +23605;0;-1.3279419;3.548996;10.45816 +23606;12;0.18454953;0.10286174;0.43265513;0.87645334 +23606;3;-0.29710388;0.23977661;1.260849 +23608;0;-1.3183899;3.5585022;10.410461 +23608;1;-0.18911102;4.0352716;8.939627 +23608;3;-0.28121948;0.24343872;1.2620697 +23610;4;18.94226;-6.440735;-59.09729 +23610;6;-0.70008945;-0.32694167;0.12597029 +23610;7;0.73272884;-0.6101576;0.30135736;0.0;0.6700386;0.72427315;-0.16271664;0.0;-0.11898224 +23611;0;-1.2945099;3.5205078;10.42955 +23611;3;-0.26716614;0.2507782;1.2639008 +23611;12;0.18389082;0.102515385;0.43547025;0.87523746 +23612;0;-1.2562866;3.5014954;10.381866 +23613;1;-0.17663781;4.0234203;8.945222 +23613;2;1.1559207;0.4650159;-1.4710417; +23613;3;-0.24945068;0.255661;1.2651215 +23613;5;999.64355 +23615;0;-1.2180786;3.4729767;10.362778 +23615;12;0.1832867;0.10221394;0.43828636;0.8739928 +23615;3;-0.23051453;0.25993347;1.2669525 +23617;0;-1.1989594;3.4539795;10.2912445 +23617;1;-0.16458488;4.01295;8.950154 +23618;3;-0.21340942;0.26361084;1.2687836 +23620;4;18.492126;-6.440735;-60.59723 +23620;6;-0.695623;-0.32178205;0.11598001 +23620;7;0.7390434;-0.60797036;0.2901496;0.0;0.66465247;0.7282534;-0.16698477;0.0;-0.10978064 +23620;0;-1.1894073;3.3969727;10.2912445 +23621;3;-0.19874573;0.26727295;1.2693939 +23621;12;0.18296489;0.10154812;0.43912914;0.8737148 +23622;0;-1.1225281;3.358963;10.200623 +23622;1;-0.15283154;4.0038075;8.954455 +23622;3;-0.17919922;0.26971436;1.2706146 +23625;12;0.18248072;0.10134794;0.44194502;0.8724185 +23626;0;-1.1177521;3.3304443;10.1577 +23626;3;-0.16209412;0.27581787;1.2724609 +23627;0;-1.0652008;3.3114624;10.129074 +23627;3;-0.1425476;0.28253174;1.2718353 +23627;1;-0.14135213;3.996097;8.958088 +23629;4;19.392395;-7.940674;-59.547424 +23629;6;-0.8536707;-0.3143527;0.10477758 +23629;7;0.62924355;-0.71676433;0.30050218;0.0;0.7708178;0.625015;-0.123272665;0.0;-0.099460915 +23629;0;-1.0795288;3.3209534;10.086151 +23630;3;-0.1242218;0.29048157;1.271225 +23631;12;0.18206245;0.101197176;0.4447567;0.8710936 +23632;0;-1.0269775;3.2639465;9.952621 +23632;1;-0.13049254;3.989939;8.960997 +23632;2;1.0158955;0.65629005;-1.236126; +23632;3;-0.105895996;0.29782104;1.2700043 +23634;0;-0.97442627;3.2259216;9.900162 +23634;12;0.18170616;0.10111147;0.44756147;0.86974025 +23634;3;-0.08634949;0.30514526;1.2687836 +23636;0;-0.9553375;3.1641693;9.823853 +23637;1;-0.1202757;3.9852667;8.963219 +23637;3;-0.06436157;0.31126404;1.2669525 +23643;12;0.18179876;0.10035102;0.44684365;0.87017804 +23644;1;-0.110695325;3.9822295;8.964692 +23644;12;0.18156564;0.10040608;0.44964626;0.8687754 +23644;4;17.74292;-6.590271;-59.547424 +23644;6;-0.7670168;-0.31022736;0.0969419 +23644;7;0.6960979;-0.66086227;0.2805507;0.0;0.71200585;0.6856151;-0.15158987;0.0;-0.09216978 +23645;0;-0.9792175;3.1166687;9.752304 +23645;3;-0.045425415;0.31918335;1.2651215 +23645;17;1;38dead6d7725;11662;755;-73; +23645;17;1;38dead6d60ff;9325;1507;-67; +23645;17;1;1c1bb5efa29a;3340;198;-52; +23646;17;1;1c1bb5ecd182;2585;1068;-61; +23646;0;-0.93621826;3.0644073;9.699844 +23646;3;-0.026489258;0.32835388;1.2620697 +23646;0;-0.90756226;3.0358887;9.623535 +23646;3;-0.010009766;0.33691406;1.2602386 +23646;1;-0.10205548;3.9806561;8.965493 +23646;0;-0.89323425;2.955124;9.571075 +23647;3;0.00831604;0.34423828;1.2577972 +23648;4;17.892456;-5.5404663;-59.846497 +23648;6;-0.7674319;-0.29824996;0.09305688 +23648;7;0.69762444;-0.66363794;0.27000877;0.0;0.7109367;0.687923;-0.14605094;0.0;-0.0888203 +23649;0;-0.888443;2.9503784;9.4423065 +23649;3;0.02420044;0.35401917;1.2541199 +23649;12;0.18138623;0.100535095;0.45239818;0.86736834 +23651;0;-0.831131;2.9123688;9.356461 +23651;1;-0.09414763;3.9805126;8.965644 +23651;2;0.8485704;0.9596634;-0.6947422; +23651;3;0.04008484;0.36317444;1.2528992 +23652;5;999.64355 +23653;0;-0.7976837;2.921875;9.213379 +23653;12;0.18126005;0.10073609;0.4551518;0.8659295 +23654;3;0.05596924;0.36927795;1.2492371 +23655;0;-0.826355;2.8506165;9.151382 +23656;1;-0.08703398;3.9817111;8.965183 +23656;3;0.07246399;0.37722778;1.2467957 +23658;4;17.442322;-6.590271;-58.047485 +23658;6;-0.82166654;-0.30081868;0.090054154 +23658;7;0.658729;-0.6993981;0.27734166;0.0;0.7474613;0.6504209;-0.13510877;0.0;-0.085893996 +23659;0;-0.802475;2.864853;9.022598 +23659;3;0.08773804;0.384552;1.2425232 +23660;12;0.18155864;0.100286506;0.45449477;0.8662642 +23661;0;-0.7929077;2.822113;8.922455 +23661;1;-0.08067375;3.9842691;8.964106 +23661;3;0.102996826;0.38638306;1.2394714 +23664;0;-0.7594757;2.8458557;8.803207 +23664;12;0.1815282;0.100628;0.45722008;0.8647956 +23664;3;0.119506836;0.39189148;1.2370148 +23665;1;-0.07468152;3.9882226;8.9623995 +23666;0;-0.73080444;2.8125916;8.717377 +23666;3;0.13476562;0.39494324;1.2327423 +23668;4;18.492126;-8.09021;-60.147095 +23668;6;-0.8783707;-0.31107584;0.083637506 +23668;7;0.61649317;-0.73275787;0.28810096;0.0;0.78333336;0.6077657;-0.13042149;0.0;-0.07953051 +23668;0;-0.67349243;2.8363647;8.607666 +23668;3;0.14881897;0.397995;1.2278595 +23668;12;0.18155484;0.10102354;0.45994136;0.8632996 +23670;0;-0.64482117;2.822113;8.526611 +23670;1;-0.06907053;3.9934883;8.9601 +23670;2;0.709246;1.1806793;0.07434368; +23671;3;0.16287231;0.3992157;1.2248077 +23672;0;-0.6018219;2.8411102;8.431213 +23673;12;0.18163759;0.10146631;0.46262068;0.86179733 +23673;3;0.17692566;0.40226746;1.2193146 +23675;0;-0.5922699;2.855362;8.369217 +23675;1;-0.06369116;4.000014;8.957229 +23675;3;0.19036865;0.40594482;1.2119751 +23677;4;18.492126;-7.7911377;-59.09729 +23677;6;-0.87021846;-0.3280282;0.07064988 +23677;7;0.6256651;-0.72370785;0.2911874;0.0;0.7772241;0.610286;-0.15321156;0.0;-0.06682716 +23677;0;-0.5683899;2.8696136;8.30722 +23678;3;0.20318604;0.40960693;1.2058716 +23679;12;0.18183649;0.10183769;0.46474278;0.8605689 +23680;0;-0.5397186;2.8458557;8.249985 +23680;1;-0.05877022;4.007713;8.95382 +23680;3;0.21479797;0.4175415;1.2022095 +23682;0;-0.5110626;2.8458557;8.140289 +23682;12;0.18201952;0.102371044;0.46736187;0.8590472 +23683;3;0.22518921;0.42730713;1.1979218 +23685;0;-0.44418335;2.9028778;8.059219 +23687;1;-0.05449503;4.0164723;8.949922 +23687;3;0.23556519;0.43525696;1.19487 +23687;4;18.792725;-7.0404053;-59.547424 +23687;6;-0.84126097;-0.34524357;0.05505923 +23687;7;0.6516294;-0.7014954;0.28858852;0.0;0.7567678;0.6271938;-0.18420188;0.0;-0.051784176 +23688;0;-0.46328735;2.9361267;8.011505 +23688;3;0.24229431;0.44137573;1.1912079 +23688;12;0.18223922;0.10296409;0.46995893;0.85751146 +23689;0;-0.5110626;2.9076233;7.9685974 +23689;1;-0.051003803;4.0261188;8.945606 +23690;2;0.5051469;1.1860781;0.7375002; +23690;3;0.24900818;0.45114136;1.1844788 +23690;5;999.64355 +23691;0;-0.47283936;2.9361267;7.9590607 +23692;12;0.18247613;0.10361683;0.47253856;0.8559634 +23692;3;0.25450134;0.46151733;1.1802216 +23694;0;-0.43463135;2.978897;7.8779755 +23694;1;-0.04837957;4.0363607;8.941004 +23694;3;0.2587738;0.47312927;1.1771545 +23696;4;18.193054;-6.440735;-56.697083 +23696;6;-0.80983233;-0.36100933;0.055114564 +23696;7;0.67448205;-0.67749196;0.29339138;0.0;0.73649025;0.64516747;-0.20332456;0.0;-0.051535822 +23697;0;-0.39640808;2.9978943;7.7921295 +23697;3;0.2575531;0.48168945;1.1765442 +23697;12;0.18311834;0.10359007;0.4717288;0.85627615 +23700;0;-0.40596008;3.0549011;7.7444305 +23700;1;-0.04662314;4.0470176;8.936195 +23700;3;0.2575531;0.48718262;1.1759338 +23701;0;-0.42507935;3.102417;7.7110596 +23701;12;0.18336207;0.104353264;0.47428387;0.85471845 +23702;3;0.25450134;0.49635315;1.1777649 +23704;0;-0.45373535;3.135666;7.7205963 +23704;1;-0.045475625;4.057711;8.931351 +23704;3;0.25083923;0.50367737;1.1759338 +23706;4;17.74292;-9.291077;-59.246826 +23706;6;-0.79364294;-0.38519016;0.05870195 +23706;7;0.6843298;-0.6606754;0.30854636;0.0;0.727143;0.64987004;-0.22120637;0.0;-0.054369446 +23706;0;-0.43940735;3.1546783;7.7062836 +23706;3;0.24351501;0.5122223;1.1777649 +23707;12;0.18358609;0.10514691;0.47684035;0.8531493 +23708;1;-0.0449341;4.068079;8.926636 +23709;2;0.415444;1.0354042;1.1336689; +23709;0;-0.4202881;3.1879272;7.7015076 +23709;3;0.23129272;0.5177307;1.1820374 +23711;0;-0.43940735;3.2734528;7.687195 +23711;12;0.18377733;0.10596457;0.47940102;0.8515703 +23711;3;0.22212219;0.5244446;1.1844788 +23713;0;-0.41073608;3.3114624;7.653824 +23713;3;0.2086792;0.5305481;1.1863251 +23713;1;-0.044753496;4.077738;8.922229 +23716;4;18.492126;-8.09021;-59.09729 +23716;6;-0.7515613;-0.40781254;0.05361274 +23716;7;0.7150631;-0.6267859;0.30955508;0.0;0.697327;0.67070574;-0.2527625;0.0;-0.049192414 +23716;0;-0.40596008;3.3827057;7.649048 +23716;3;0.19281006;0.5348358;1.1905975 +23717;12;0.18431267;0.10606782;0.47873026;0.8518191 +23718;0;-0.40596008;3.4112244;7.6156616 +23718;1;-0.04487358;4.0864353;8.918247 +23718;3;0.17631531;0.540329;1.1924286 +23720;0;-0.41073608;3.4539795;7.6204376 +23721;12;0.1843973;0.10688188;0.48133266;0.8502311 +23721;3;0.1579895;0.5452118;1.1954803 +23723;0;-0.43463135;3.525238;7.6156616 +23723;1;-0.04528625;4.0938196;8.914858 +23723;3;0.13783264;0.5488739;1.1954803 +23725;4;17.892456;-8.540344;-58.19702 +23725;6;-0.70637053;-0.43290457;0.057008885 +23725;7;0.74397206;-0.5892004;0.31519586;0.0;0.666206;0.6905469;-0.28162858;0.0;-0.051721852 +23725;0;-0.4202881;3.5632477;7.6204376 +23726;3;0.11766052;0.5543823;1.196701 +23726;12;0.18440711;0.107679315;0.48395336;0.8486392 +23727;0;-0.43940735;3.6202698;7.6299744 +23728;1;-0.045996614;4.0996475;8.912176 +23728;2;0.4063605;0.69210815;1.2594881; +23728;3;0.09567261;0.5598755;1.1954803 +23731;12;0.18433066;0.10845254;0.4865865;0.84705013 +23731;5;999.64355 +23732;0;-0.46806335;3.6962738;7.6204376 +23732;1;-0.047215976;4.10382;8.91025 +23733;3;0.07368469;0.5635376;1.1942596 +23733;0;-0.5062866;3.729538;7.6204376 +23733;3;0.049865723;0.565979;1.1924286 +23734;4;18.94226;-10.791016;-59.09729 +23734;6;-0.73036903;-0.45427293;0.066340506 +23735;7;0.72388273;-0.59948295;0.3414878;0.0;0.6873466;0.6693778;-0.281936;0.0;-0.059568554 +23735;0;-0.5349426;3.7817993;7.6586 +23735;3;0.023590088;0.5708618;1.1893768 +23736;12;0.1841705;0.10917951;0.4891192;0.84553146 +23737;0;-0.5301666;3.843567;7.7015076 +23737;1;-0.048840623;4.106026;8.9092245 +23737;3;-0.001449585;0.5745392;1.1887665 +23740;0;-0.5779419;3.8578186;7.7539673 +23740;12;0.1838882;0.10989536;0.49177802;0.8439565 +23741;3;-0.02709961;0.57881165;1.1881561 +23742;0;-0.63526917;3.9100647;7.782593 +23742;1;-0.0509541;4.1060877;8.9091835 +23742;3;-0.056427002;0.5849304;1.1856995 +23744;4;18.94226;-7.7911377;-58.19702 +23744;6;-0.62283874;-0.46424437;0.081446365 +23744;7;0.7882838;-0.5216023;0.3264042;0.0;0.6109965;0.72625995;-0.31500763;0.0;-0.07274561 +23744;0;-0.71647644;3.962326;7.782593 +23745;3;-0.08634949;0.59347534;1.1838837 +23745;12;0.18349202;0.11057266;0.49442524;0.8424061 +23747;0;-0.74513245;4.0383606;7.8684235 +23747;1;-0.053857755;4.103836;8.910204 +23747;2;0.5694935;0.28491688;1.1712408; +23747;3;-0.11567688;0.6014099;1.1808167 +23749;0;-0.75468445;4.090622;7.882736 +23749;12;0.18296567;0.11121477;0.49707937;0.8408728 +23749;3;-0.14683533;0.6062927;1.179596 +23752;0;-0.7833557;4.0763702;7.939972 +23752;3;-0.17860413;0.61180115;1.1771545 +23752;1;-0.05754033;4.0990996;8.912361 +23755;4;19.993591;-9.291077;-59.547424 +23755;6;-0.62240946;-0.47234377;0.0983415 +23755;7;0.7825078;-0.5191591;0.34373757;0.0;0.6164715;0.7235135;-0.31062987;0.0;-0.087432444 +23755;0;-0.816803;4.133362;7.9542847 +23755;3;-0.21218872;0.6191406;1.1747131 +23755;12;0.18266018;0.111191265;0.4969091;0.8410429 +23757;0;-0.859787;4.1618805;8.03537 +23757;1;-0.061929837;4.0916786;8.915741 +23757;3;-0.24212646;0.62402344;1.1704407 +23759;0;-0.91233826;4.2046356;8.121216 +23760;12;0.1818472;0.11174961;0.49958345;0.8395595 +23760;3;-0.2726593;0.631958;1.166153 +23762;0;-0.97442627;4.2046356;8.154587 +23762;1;-0.06718985;4.081622;8.920311 +23762;3;-0.3044281;0.6380615;1.1637115 +23765;4;18.792725;-9.291077;-57.59735 +23765;6;-0.5612921;-0.47318074;0.11893033 +23765;7;0.8118069;-0.4737953;0.34130272;0.0;0.5742956;0.75355;-0.31991744;0.0;-0.105613284 +23765;0;-1.0030975;4.2473907;8.140289 +23765;3;-0.3337555;0.64356995;1.1618805 +23765;12;0.18088892;0.11226678;0.5022581;0.8381004 +23766;0;-1.0460968;4.1951294;8.2165985 +23766;1;-0.07328842;4.0689616;8.926045 +23766;3;-0.3630829;0.6478424;1.1588287 +23767;2;0.8579046;-0.06369591;0.85616684; +23767;5;999.6191 +23769;12;0.17978302;0.11273622;0.5049387;0.83666337 +23769;0;-1.0365448;4.185623;8.278595 +23769;3;-0.39239502;0.65211487;1.1563873 +23771;1;-0.08000782;4.053706;8.932926 +23771;0;-1.0890961;4.1618805;8.326294 +23771;3;-0.419281;0.6563873;1.1533356 +23774;4;19.692993;-10.040283;-57.296753 +23774;6;-0.60833514;-0.46014234;0.13006361 +23774;7;0.7807536;-0.51205975;0.35807616;0.0;0.6139378;0.7352494;-0.28720856;0.0;-0.11620733 +23774;0;-1.0890961;4.133362;8.38829 +23774;3;-0.4486084;0.65882874;1.1502686 +23777;12;0.178583;0.11308168;0.5072984;0.8354454 +23777;0;-1.1273041;4.1713715;8.464584 +23777;3;-0.47608948;0.65882874;1.147232 +23777;1;-0.08731823;4.035994;8.940874 +23778;0;-1.1655273;4.1381226;8.502762 +23779;12;0.17721206;0.11344778;0.509985;0.8340509 +23779;3;-0.5005188;0.65701294;1.144165 +23781;1;-0.09497253;4.0158944;8.949842 +23781;0;-1.2085114;4.1143646;8.612442 +23781;3;-0.5286255;0.6551666;1.1386719 +23783;4;19.093323;-9.291077;-58.49762 +23783;6;-0.55182505;-0.44188753;0.13941132 +23783;7;0.8121537;-0.4738867;0.3403494;0.0;0.5697612;0.7697726;-0.28778857;0.0;-0.1256125 +23783;0;-1.2085114;4.0763702;8.6362915 +23784;12;0.17572188;0.11374794;0.5126689;0.83267874 +23784;3;-0.55000305;0.6527252;1.1356201 +23785;0;-1.2085114;4.0145874;8.7603 +23786;1;-0.102769494;3.9934804;8.95978 +23786;2;1.0800155;-0.10085106;0.45048046; +23786;3;-0.57321167;0.64723206;1.1337891 +23788;12;0.17412217;0.11397439;0.51534325;0.8313319 +23788;0;-1.2658386;3.9670868;8.84137 +23788;3;-0.5909424;0.64234924;1.130127 +23790;1;-0.11049126;3.969068;8.97053 +23790;0;-1.2849579;3.9290771;8.912918 +23791;3;-0.611084;0.63500977;1.1282806 +23792;4;18.492126;-10.791016;-58.647156 +23792;6;-0.6046131;-0.4114183;0.1431815 +23792;7;0.7818654;-0.52100974;0.34239647;0.0;0.6095749;0.7540696;-0.24453491;0.0;-0.1307857 +23793;0;-1.2992706;3.8910675;9.022598 +23793;3;-0.6294098;0.6258545;1.1264496 +23794;12;0.1728102;0.11352797;0.5151825;0.83176625 +23795;1;-0.11784186;3.9428823;8.9819765 +23795;0;-1.2849579;3.862564;9.094147 +23795;3;-0.6446991;0.6197357;1.1246185 +23798;0;-1.2228394;3.772293;9.170456 +23798;12;0.17106046;0.11360375;0.5178445;0.8304635 +23798;3;-0.6562958;0.60935974;1.1197357 +23801;1;-0.12464832;3.915239;8.993969 +23801;0;-1.1941986;3.7675476;9.242004 +23801;3;-0.6660614;0.6026306;1.1136322 +23802;4;19.093323;-10.040283;-57.296753 +23802;6;-0.7318077;-0.38420233;0.12850223 +23802;7;0.7057374;-0.6195011;0.34373397;0.0;0.6984409;0.6897307;-0.19092354;0.0;-0.11880652 +23802;0;-1.1511993;3.7580414;9.313538 +23802;3;-0.6727905;0.59469604;1.1075134 +23803;12;0.1692655;0.11360307;0.5204935;0.8291744 +23805;1;-0.1310687;3.8864942;9.006336 +23805;0;-1.0986481;3.6582794;9.38031 +23805;2;1.1390212;0.09050536;-0.12819767; +23805;3;-0.6782837;0.5867462;1.0989685 +23806;5;999.6191 +23808;0;-1.0460968;3.682022;9.456619 +23808;12;0.16743378;0.11353996;0.52313083;0.8278942 +23808;3;-0.67889404;0.57881165;1.091629 +23810;1;-0.13709499;3.8574505;9.018724 +23810;0;-1.0126648;3.6440125;9.4804535 +23810;3;-0.677063;0.5696411;1.081253 +23816;4;19.392395;-8.9904785;-57.296753 +23816;6;-0.8054909;-0.3650653;0.10641258 +23816;7;0.66149276;-0.673646;0.32958812;0.0;0.74336004;0.64710486;-0.16932559;0.0;-0.09921255 +23816;0;-0.93144226;3.5394897;9.566299 +23816;3;-0.6715698;0.5586548;1.0714722 +23816;12;0.16598514;0.11284133;0.52283734;0.8284666 +23816;0;-0.91233826;3.525238;9.613998 +23816;1;-0.14269282;3.8284073;9.031005 +23816;3;-0.66362;0.54826355;1.0623169 +23818;0;-0.850235;3.4777374;9.690308 +23818;3;-0.6550751;0.540329;1.053772 +23818;12;0.16418199;0.112703815;0.5253736;0.82723933 +23819;1;-0.14783356;3.799905;9.042952 +23821;0;-0.845459;3.4539795;9.709381 +23821;3;-0.6410217;0.5305481;1.0470428 +23822;4;18.492126;-9.890747;-58.19702 +23822;6;-0.9015109;-0.34058508;0.08685742 +23822;7;0.5953611;-0.73921657;0.31480816;0.0;0.799287;0.58478814;-0.13843128;0.0;-0.08176538 +23822;0;-0.7738037;3.4112244;9.733231 +23822;3;-0.6251526;0.5226135;1.040329 +23822;12;0.1624259;0.11254569;0.5278571;0.8260256 +23824;0;-0.7403717;3.3637238;9.776154 +23824;1;-0.15251125;3.772446;9.054363 +23824;2;0.78397304;0.2904892;-0.58592796; +23824;3;-0.60375977;0.51589966;1.0366669 +23826;0;-0.69737244;3.3779755;9.75708 +23826;12;0.160739;0.11238375;0.530294;0.82481587 +23827;3;-0.58055115;0.51161194;1.0323792 +23828;0;-0.63526917;3.3542175;9.814301 +23829;1;-0.15683168;3.7467427;9.064957 +23829;3;-0.5506134;0.5048981;1.028717 +23831;4;19.242859;-9.440613;-58.19702 +23831;6;-0.98652697;-0.32868358;0.064638756 +23831;7;0.5330463;-0.7894635;0.30431715;0.0;0.8438744;0.5220624;-0.12380136;0.0;-0.06113593 +23831;0;-0.6018219;3.3399658;9.838165 +23831;3;-0.5188446;0.50001526;1.0250397 +23832;12;0.15950412;0.11170266;0.5299535;0.82536685 +23834;1;-0.16080363;3.7235153;9.074452 +23835;0;-0.5301666;3.358963;9.833389 +23835;3;-0.48953247;0.50001526;1.023819 +23836;0;-0.5062866;3.3399658;9.833389 +23841;12;0.1580409;0.1116175;0.5323173;0.82413775 +23841;3;-0.45593262;0.4981842;1.0232239 +23841;0;-0.46328735;3.3209534;9.847702 +23841;3;-0.42111206;0.49694824;1.023819 +23841;4;18.193054;-11.090088;-57.896423 +23841;6;-1.0816473;-0.32492006;0.04701056 +23841;7;0.4561132;-0.8365451;0.30356714;0.0;0.8888067;0.44528928;-0.10835138;0.0;-0.044534385 +23841;1;-0.16470723;3.7029827;9.082781 +23841;0;-0.46328735;3.3494568;9.86676 +23841;3;-0.38812256;0.49572754;1.0244446 +23842;12;0.15670371;0.11160225;0.53465235;0.82288265 +23843;0;-0.42507935;3.3447113;9.895386 +23843;1;-0.16853116;3.6854458;9.08984 +23843;3;-0.3545227;0.49450684;1.0250397 +23843;2;0.42079926;0.3680768;-0.7577467; +23844;5;999.6191 +23845;0;-0.36775208;3.358963;9.895386 +23846;12;0.15550627;0.11166501;0.5369653;0.82159424 +23846;3;-0.32337952;0.49572754;1.0250397 +23848;0;-0.3343048;3.4302368;9.871536 +23848;1;-0.17225306;3.6708493;9.0956745 +23850;3;-0.2922058;0.49572754;1.0232239 +23850;4;18.34259;-9.291077;-57.296753 +23850;6;-1.013613;-0.33425725;0.033852592 +23851;7;0.5190704;-0.8017733;0.2961849;0.0;0.8541333;0.499531;-0.14465517;0.0;-0.03197289 +23851;0;-0.2817688;3.3969727;9.89061 +23851;3;-0.26228333;0.49513245;1.0207825 +23852;12;0.15481684;0.11125564;0.53640383;0.82214653 +23854;1;-0.17600851;3.6589818;9.100384 +23854;0;-0.25787354;3.425476;9.895386 +23854;3;-0.23478699;0.49694824;1.0195618 +23856;17;1;38dead6d7725;11057;864;-66; +23857;17;1;38dead6d60ff;10154;1005;-67; +23857;17;1;1c1bb5efa29a;2331;816;-50; +23858;17;1;1c1bb5ecd182;1924;2191;-61; +23858;12;0.1538783;0.11147881;0.538675;0.82080644 +23858;1;-0.1798874;3.649618;9.104067 +23858;0;-0.21966553;3.434967;9.933533 +23858;3;-0.20730591;0.4994049;1.0183411 +23859;0;-0.157547;3.4634857;9.928772 +23859;3;-0.18164062;0.5048981;1.0140533 +23860;4;18.792725;-9.291077;-57.296753 +23860;6;-1.0527129;-0.33559585;0.015866391 +23860;7;0.4906143;-0.82030493;0.29393455;0.0;0.87124807;0.46759;-0.14928623;0.0;-0.014980643 +23860;0;-0.15278625;3.5442505;9.928772 +23861;3;-0.15783691;0.5122223;1.0116119 +23861;12;0.15305088;0.11177889;0.5409223;0.8194413 +23862;0;-0.12890625;3.5585022;9.89061 +23862;3;-0.13705444;0.5207825;1.0085602 +23862;1;-0.18430556;3.6426377;9.106774 +23862;2;0.10302146;0.22216868;-0.80919456; +23864;0;-0.095443726;3.6250305;9.842926 +23865;12;0.15231486;0.1121693;0.54314315;0.8180549 +23865;3;-0.117507935;0.52749634;1.0061188 +23867;0;-0.06678772;3.6345215;9.785706 +23867;3;-0.10101318;0.53544617;1.0024567 +23867;1;-0.18945067;3.6376622;9.108657 +23869;4;18.492126;-9.141541;-57.147217 +23869;6;-1.0099351;-0.35561308;0.0068249223 +23869;7;0.5298911;-0.793816;0.2984487;0.0;0.84804153;0.49863535;-0.17941089;0.0;-0.006397859 +23869;0;-0.033355713;3.606018;9.771393 +23870;3;-0.0900116;0.5415497;1.0 +23870;12;0.15202229;0.11209927;0.5424777;0.8185603 +23871;0;-0.038131714;3.639267;9.766617 +23872;1;-0.1952867;3.634109;9.109952 +23872;3;-0.07902527;0.5500946;0.9987793 +23874;0;-0.009475708;3.663025;9.723679 +23874;12;0.15139721;0.11264936;0.5446638;0.81714773 +23874;3;-0.07107544;0.5574341;0.9951172 +23876;0;-0.0046844482;3.729538;9.690308 +23876;1;-0.20187849;3.631574;9.110819 +23877;3;-0.06619263;0.5671997;0.9951172 +23879;4;19.242859;-9.890747;-57.44629 +23879;6;-1.0350721;-0.3673982;4.834158E-4 +23879;7;0.5103146;-0.8025138;0.3091126;0.0;0.8599877;0.47639817;-0.18293707;0.0;-4.5115507E-4 +23879;0;7.6293945E-5;3.7770538;9.585388 +23879;3;-0.06253052;0.5769806;0.9951172 +23880;12;0.15079391;0.11326476;0.5468506;0.8157125 +23881;0;-0.023803711;3.8007965;9.571075 +23881;1;-0.20921908;3.6297283;9.111389 +23882;2;-0.12537721;-0.02412796;-0.6169615; +23882;3;-0.058258057;0.5855255;0.99450684 +23883;5;999.6191 +23883;0;0.0048675537;3.8340607;9.523392 +23884;12;0.15019843;0.11392527;0.5490052;0.8142818 +23884;3;-0.054595947;0.592865;0.99450684 +23886;0;-0.042907715;3.8578186;9.451843 +23886;1;-0.21742733;3.628353;9.111745 +23886;3;-0.054595947;0.59835815;0.9963379 +23888;4;19.84253;-10.791016;-59.09729 +23888;6;-1.0070243;-0.38751325;0.004539582 +23888;7;0.5329228;-0.78257185;0.32183;0.0;0.84615344;0.494755;-0.1980956;0.0;-0.004202965 +23889;0;-0.0046844482;3.8673248;9.370773 +23889;3;-0.05581665;0.6026306;0.99938965 +23889;12;0.14976339;0.1144027;0.5499239;0.8136749 +23891;0;-0.028564453;3.8863068;9.318314 +23891;1;-0.22600856;3.6271877;9.1119995 +23891;3;-0.057037354;0.605072;1.0030518 +23893;0;-0.06678772;3.9053192;9.294464 +23894;12;0.14915207;0.115140885;0.5520978;0.8122095 +23894;3;-0.058258057;0.6026306;1.0079346 +23896;0;-0.06678772;3.9480896;9.242004 +23896;1;-0.23466647;3.6260614;9.112228 +23896;3;-0.06375122;0.6008148;1.0122223 +23898;4;18.792725;-10.340881;-56.547546 +23898;6;-0.964147;-0.40371454;0.007226415 +23898;7;0.5677708;-0.75551593;0.3268517;0.0;0.82315993;0.5242851;-0.21802062;0.0;-0.0066454126 +23898;0;-0.12411499;3.9575806;9.189545 +23899;3;-0.06863403;0.5953064;1.0183411 +23899;12;0.14853612;0.11588428;0.5542832;0.8107269 +23900;0;-0.13366699;3.952835;9.156143 +23900;1;-0.2429823;3.6246965;9.112555 +23901;2;-0.13514471;-0.24740624;-0.21617699; +23901;3;-0.07536316;0.5904083;1.0232239 +23903;0;-0.138443;3.9670868;9.127518 +23903;12;0.14791381;0.11660381;0.55648303;0.80922914 +23904;3;-0.08390808;0.5837097;1.0281067 +23905;0;-0.18144226;3.9433289;9.117996 +23906;1;-0.2506795;3.6228213;9.113091 +23906;3;-0.093688965;0.5757599;1.0329895 +23907;4;18.792725;-10.340881;-56.547546 +23908;6;-0.9328632;-0.408115;0.01989673 +23908;7;0.5890753;-0.7373514;0.3306102;0.0;0.8078717;0.54662526;-0.22032705;0.0;-0.018261418 +23908;0;-0.18144226;4.11911;9.132294 +23908;3;-0.105285645;0.5671997;1.0384827 +23909;12;0.14763223;0.11681718;0.5562024;0.80944264 +23910;0;-0.26264954;4.1476135;9.117996 +23910;3;-0.11567688;0.5623169;1.0458221 +23910;1;-0.2576083;3.6203353;9.113887 +23914;12;0.14698909;0.11744458;0.55843556;0.8079299 +23914;0;-0.2817688;3.9908295;9.079834 +23914;3;-0.12666321;0.555603;1.0574341 +23916;1;-0.26380607;3.6168177;9.115106 +23917;0;-0.27697754;3.952835;8.989227 +23917;3;-0.13949585;0.5452118;1.0635376 +23918;4;18.792725;-10.340881;-56.84662 +23918;6;-0.8959763;-0.414106;0.030802418 +23918;7;0.6147845;-0.7148217;0.33327156;0.0;0.78819096;0.5719501;-0.22721788;0.0;-0.028194426 +23918;0;-0.2722168;3.9243164;8.984451 +23918;3;-0.15171814;0.53115845;1.0690308 +23918;12;0.14632036;0.11800924;0.56069714;0.8064013 +23921;0;-0.26264954;3.9480896;8.994003 +23921;1;-0.26884577;3.6122668;9.116763 +23921;2;0.013820097;-0.3598206;0.039422035; +23922;3;-0.16516113;0.51712036;1.0745392 +23922;5;999.6073 +23923;0;-0.3056488;4.0383606;9.03215 +23923;12;0.1456375;0.11849684;0.5629816;0.80486023 +23924;3;-0.18041992;0.5048981;1.0769806 +23924;0;-0.35820007;4.0716095;9.075058 +23925;1;-0.272645;3.606674;9.118864 +23927;3;-0.19752502;0.49267578;1.0800323 +23929;4;18.792725;-10.340881;-56.84662 +23929;6;-0.864607;-0.42144784;0.039450355 +23929;7;0.6361587;-0.69426495;0.3365982;0.0;0.77071846;0.59215546;-0.23525518;0.0;-0.035989016 +23929;0;-0.30085754;4.024109;9.108459 +23930;3;-0.21279907;0.4822998;1.0782013 +23930;12;0.14531574;0.11840467;0.5626355;0.80517393 +23931;1;-0.27533647;3.5996315;9.121565 +23932;0;-0.2817688;4.000351;9.0607605 +23933;3;-0.22319031;0.47373962;1.079422 +23933;0;-0.3152008;3.933838;9.051224 +23933;12;0.14458725;0.118709266;0.5649398;0.80364525 +23935;3;-0.23295593;0.46273804;1.0806427 +23935;13;77.37799 +23935;0;-0.3152008;3.9290771;9.046463 +23935;3;-0.24334717;0.45236206;1.0830841 +23935;1;-0.27724954;3.5915313;9.1247 +23941;1;-0.27820557;3.5825834;9.128187 +23941;12;0.14383724;0.118943565;0.5672412;0.80212265 +23942;2;0.092242524;-0.36419487;0.057772636; +23943;12;0.14307836;0.11910851;0.56954426;0.80060047 +23944;1;-0.2781541;3.5730217;9.131936 +23945;4;19.242859;-10.791016;-59.396362 +23945;6;-0.8864289;-0.4095182;0.034828346 +23945;7;0.62105703;-0.7107515;0.33033404;0.0;0.78311425;0.57990956;-0.22458184;0.0;-0.03194203 +23945;0;-0.3152008;3.8910675;9.046463 +23945;3;-0.25006104;0.44015503;1.0861359 +23945;0;-0.36297607;3.8863068;9.075058 +23945;3;-0.2574005;0.42852783;1.0885773 +23945;0;-0.36297607;3.862564;9.065521 +23945;3;-0.26350403;0.4163208;1.0891876 +23945;0;-0.39163208;3.8768158;9.079834 +23945;3;-0.2684021;0.4053192;1.0904083 +23946;4;19.242859;-10.791016;-59.396362 +23946;6;-0.8833527;-0.40320247;0.04310536 +23947;7;0.62090653;-0.71089363;0.33031118;0.0;0.782882;0.58367735;-0.21544535;0.0;-0.039636426 +23947;0;-0.35820007;3.8483124;9.13707 +23948;3;-0.2696228;0.39372253;1.0928497 +23948;12;0.14271986;0.11870149;0.56908435;0.8010519 +23948;0;-0.36297607;3.872055;9.122772 +23948;1;-0.27708057;3.5629907;9.135887 +23949;3;-0.2708435;0.384552;1.0910187 +23951;12;0.14197578;0.11874533;0.5714017;0.79952645 +23952;0;-0.41073608;3.8388062;9.103683 +23952;3;-0.2689972;0.37722778;1.0928497 +23953;0;-0.39640808;3.796051;9.14183 +23953;1;-0.27531615;3.5529392;9.1398535 +23953;3;-0.2665558;0.36927795;1.0934601 +23956;4;18.94226;-10.191345;-56.24695 +23956;6;-0.92466474;-0.39324206;0.043334857 +23956;7;0.58828324;-0.7374768;0.3317388;0.0;0.8076642;0.5561448;-0.19591145;0.0;-0.040014647 +23957;0;-0.39163208;3.8293152;9.13707 +23957;3;-0.26167297;0.36195374;1.0953064 +23957;12;0.1412569;0.11874972;0.57369447;0.7980098 +23958;0;-0.39640808;3.8150635;9.14183 +23958;1;-0.2728894;3.543141;9.143729 +23958;2;0.16275938;-0.27592778;0.019852638; +23959;3;-0.2549591;0.35768127;1.0959167 +23961;0;-0.39640808;3.8340607;9.189545 +23961;12;0.1405702;0.11873178;0.57598037;0.7964857 +23965;3;-0.24456787;0.35401917;1.0959167 +23965;5;999.6073 +23965;0;-0.38208008;3.8245544;9.184769 +23965;1;-0.2700601;3.5339518;9.147368 +23965;3;-0.23846436;0.35159302;1.0959167 +23970;4;18.94226;-10.191345;-56.24695 +23970;6;-0.9257919;-0.39425874;0.041575342 +23970;7;0.58792454;-0.7377916;0.33167502;0.0;0.808005;0.5550787;-0.19752334;0.0;-0.03837469 +23970;12;0.14028825;0.1182544;0.5757174;0.7967965 +23970;0;-0.37728882;3.8388062;9.199066 +23970;3;-0.22929382;0.35035706;1.0965271 +23970;0;-0.35820007;3.8388062;9.189545 +23970;1;-0.26703912;3.5254607;9.150734 +23970;3;-0.2195282;0.34669495;1.0965271 +23970;0;-0.36297607;3.8103027;9.170456 +23970;3;-0.20974731;0.34547424;1.0953064 +23971;12;0.13967928;0.118249014;0.57798916;0.7952581 +23972;0;-0.36297607;3.8578186;9.151382 +23973;1;-0.2638559;3.5178144;9.153769 +23973;3;-0.19998169;0.3460846;1.0934601 +23975;4;19.093323;-11.691284;-56.84662 +23975;6;-0.9684314;-0.3986685;0.039642744 +23975;7;0.5534705;-0.759379;0.3420732;0.0;0.8320676;0.5221598;-0.18711679;0.0;-0.036524337 +23975;0;-0.37252808;3.8768158;9.170456 +23975;3;-0.18959045;0.34547424;1.0910187 +23976;12;0.13911517;0.11826293;0.5802483;0.79370826 +23977;0;-0.34864807;3.8815765;9.127518 +23978;1;-0.26076463;3.5110826;9.156441 +23978;3;-0.18041992;0.3473053;1.0891876 +23978;2;0.16176954;-0.31278825;-0.023311615; +23981;0;-0.3343048;3.9148254;9.14183 +23981;12;0.1385902;0.11830511;0.5824901;0.7921503 +23981;3;-0.1694336;0.34669495;1.0873566 +23982;0;-0.3438568;3.9718475;9.089371 +23982;3;-0.16027832;0.34547424;1.0824738 +23982;1;-0.25780565;3.505301;9.158739 +23985;4;19.392395;-11.990356;-56.84662 +23985;6;-0.96097887;-0.41170922;0.03781262 +23985;7;0.55990714;-0.75125253;0.3494619;0.0;0.8278308;0.5248605;-0.19803467;0.0;-0.03464467 +23985;0;-0.32476807;3.9908295;9.089371 +23985;3;-0.15415955;0.3436432;1.0782013 +23986;12;0.13816196;0.11831056;0.5843179;0.79087704 +23987;0;-0.32476807;4.0050964;9.098923 +23987;1;-0.25488934;3.5003512;9.160714 +23988;3;-0.14683533;0.33937073;1.0739136 +23990;0;-0.3343048;4.0383606;9.065521 +23990;12;0.13771236;0.1184113;0.586517;0.78931105 +23990;3;-0.1413269;0.33753967;1.0708618 +23991;1;-0.25190932;3.4960318;9.162446 +23992;0;-0.37252808;4.057358;9.0607605 +23992;3;-0.1376648;0.335083;1.0665894 +23994;4;18.792725;-11.990356;-55.34668 +23994;6;-0.94387484;-0.42070335;0.041091293 +23994;7;0.5725725;-0.7392211;0.35456008;0.0;0.8189961;0.53549933;-0.20612103;0.0;-0.03749766 +23994;0;-0.3343048;4.0668488;9.036911 +23994;3;-0.13278198;0.32836914;1.0604858 +23995;12;0.137295;0.1185243;0.58869034;0.78774726 +23996;0;-0.32476807;4.0811005;9.046463 +23997;1;-0.24877799;3.492121;9.164022 +23997;2;0.14084136;-0.5046227;0.07938194; +23997;3;-0.13032532;0.32287598;1.053772 +23998;5;999.6073 +23999;0;-0.29130554;4.1048584;8.989227 +23999;12;0.13690402;0.11863923;0.5908381;0.78618866 +24000;3;-0.12973022;0.3167572;1.0476532 +24001;0;-0.27697754;4.133362;8.984451 +24002;1;-0.24530445;3.488494;9.165498 +24002;3;-0.12666321;0.30821228;1.0391083 +24003;4;18.492126;-11.84082;-57.896423 +24003;6;-0.88528943;-0.43100566;0.03081878 +24003;7;0.62279946;-0.70330393;0.34276003;0.0;0.7818805;0.57516915;-0.2405065;0.0;-0.027995849 +24004;0;-0.28652954;4.11911;8.946289 +24004;12;0.13688083;0.11832304;0.5905909;0.78642595 +24005;3;-0.12910461;0.3002777;1.0311584 +24006;0;-0.24354553;4.1381226;8.908142 +24006;1;-0.241408;3.484972;9.166941 +24006;3;-0.13032532;0.29110718;1.0220032 +24009;12;0.13653941;0.118406944;0.59267014;0.784907 +24009;0;-0.24354553;4.1523743;8.951065 +24009;3;-0.13032532;0.2831726;1.0110016 +24010;0;-0.26264954;4.1713715;8.951065 +24011;1;-0.23707975;3.4813309;9.168437 +24011;3;-0.13154602;0.27461243;1.001831 +24013;4;19.993591;-11.390686;-56.84662 +24013;6;-0.92112654;-0.4359309;0.029334407 +24013;7;0.59480137;-0.7218131;0.35383216;0.0;0.80343294;0.54834944;-0.23196656;0.0;-0.026587164 +24013;0;-0.22921753;4.176132;8.955841 +24013;3;-0.13278198;0.2672882;0.98960876 +24014;12;0.13621241;0.11846161;0.59470534;0.7834147 +24015;0;-0.20533752;4.142868;8.917694 +24016;1;-0.23233415;3.4775436;9.169995 +24016;2;0.07572797;-0.6485343;0.21456051; +24016;3;-0.13644409;0.25933838;0.97862244 +24018;0;-0.18621826;4.166626;8.922455 +24018;3;-0.13827515;0.25323486;0.96946716 +24019;12;0.13589747;0.11848729;0.5967061;0.78194284 +24020;0;-0.18144226;4.166626;8.941528 +24021;1;-0.22731724;3.4735274;9.171643 +24021;3;-0.13949585;0.246521;0.9584656 +24022;4;18.94226;-12.890625;-55.94635 +24023;6;-0.97388965;-0.43598917;0.020289302 +24023;7;0.5548849;-0.7497074;0.36061284;0.0;0.8317239;0.5095051;-0.22054479;0.0;-0.018390032 +24023;0;-0.157547;4.1286316;8.893829 +24023;3;-0.1388855;0.24101257;0.9486847 +24024;12;0.13560292;0.11846737;0.5985568;0.78058124 +24025;0;-0.143219;4.1713715;8.879532 +24025;3;-0.13827515;0.2342987;0.93769836 +24026;1;-0.22204144;3.469362;9.173349 +24028;0;-0.16233826;4.199875;8.927231 +24028;12;0.13530368;0.118444614;0.6004642;0.7791704 +24028;3;-0.1376648;0.2294159;0.9254761 +24030;0;-0.11456299;4.142868;8.927231 +24030;1;-0.21665075;3.4652443;9.1750345 +24031;3;-0.13522339;0.22451782;0.9156952 +24032;4;19.993591;-13.040161;-56.547546 +24032;6;-1.0107791;-0.43446204;0.012832277 +24032;7;0.5265808;-0.76853395;0.36341184;0.0;0.8500454;0.4818504;-0.21270412;0.0;-0.011639796 +24033;0;-0.08590698;4.166626;8.974915 +24033;3;-0.13154602;0.22024536;0.90470886 +24033;12;0.13501829;0.11840412;0.6023117;0.777799 +24035;0;-0.06678772;4.142868;8.955841 +24035;1;-0.2111396;3.4612458;9.176672 +24035;2;-0.020839974;-0.6861279;0.24489498; +24036;3;-0.1254425;0.21780396;0.8931122 +24037;5;999.6073 +24037;0;-0.042907715;4.1713715;8.998749 +24038;12;0.13474941;0.11835688;0.6041121;0.7764554 +24038;3;-0.11872864;0.2171936;0.8808899 +24041;0;-0.057235718;4.142868;8.979691 +24041;3;-0.11262512;0.21536255;0.871109 +24041;1;-0.2057875;3.4576926;9.178133 +24042;4;19.242859;-11.84082;-56.697083 +24042;6;-0.9660034;-0.43225276;0.006373821 +24042;7;0.5663837;-0.7469589;0.34822688;0.0;0.8241215;0.51629514;-0.23294494;0.0;-0.005787546 +24042;0;-0.042907715;4.1381226;9.013062 +24042;3;-0.10284424;0.2135315;0.858902 +24043;12;0.13480656;0.117951155;0.60376316;0.7767785 +24044;0;-0.01423645;4.166626;9.036911 +24045;1;-0.20065789;3.4547052;9.179371 +24045;3;-0.09429932;0.21231079;0.84729004 +24047;0;0.023986816;4.1476135;9.017838 +24047;12;0.13458344;0.117937736;0.60546774;0.77549136 +24048;3;-0.08329773;0.21292114;0.8332367 +24049;0;0.03831482;4.1143646;9.03215 +24050;1;-0.19579403;3.4524846;9.180312 +24051;3;-0.073532104;0.2135315;0.8210144 +24051;4;18.792725;-11.990356;-55.647278 +24052;6;-1.0035461;-0.4274351;-0.004242023 +24052;7;0.5387932;-0.7675043;0.34733135;0.0;0.8424292;0.4889738;-0.22631311;0.0;0.0038603651 +24052;0;0.014419556;4.123871;9.08461 +24053;3;-0.06253052;0.2135315;0.808197 +24053;12;0.13438882;0.1179531;0.6071181;0.77423143 +24054;1;-0.19142206;3.451076;9.180934 +24054;2;-0.13238405;-0.67638755;0.14333534; +24055;0;0.028747559;4.100113;9.11322 +24056;3;-0.053375244;0.2147522;0.7965851 +24057;12;0.13422172;0.118006624;0.60871303;0.77299905 +24057;0;0.028747559;4.1143646;9.132294 +24071;3;-0.041763306;0.21780396;0.78375244 +24071;0;0.08129883;4.142868;9.156143 +24071;1;-0.18753937;3.4505246;9.181221 +24071;3;-0.033828735;0.21963501;0.7727661 +24071;4;19.543457;-13.490295;-56.24695 +24071;6;-1.0756556;-0.4248902;-0.008878923 +24071;7;0.4783572;-0.80166453;0.35848072;0.0;0.8781282;0.43290654;-0.2036737;0.0;0.008089338 +24071;0;0.052627563;4.123871;9.14183 +24071;3;-0.022216797;0.22329712;0.7599335 +24071;12;0.13408805;0.118095316;0.6102204;0.77181923 +24071;1;-0.1842674;3.450779;9.181191 +24071;0;0.08129883;4.1048584;9.160919 +24071;3;-0.010604858;0.22573853;0.7483368 +24071;12;0.13396898;0.11823414;0.611713;0.7706363 +24071;0;0.062194824;4.095352;9.146606 +24071;3;9.918213E-4;0.23002625;0.7361145 +24071;1;-0.18168089;3.4519904;9.180788 +24071;0;0.066970825;4.100113;9.199066 +24071;3;0.013214111;0.233078;0.72450256 +24074;4;19.093323;-11.990356;-57.296753 +24074;6;-1.0076967;-0.4192705;-0.007280048 +24074;7;0.5363017;-0.7723635;0.34034556;0.0;0.8440001;0.48757443;-0.22346109;0.0;0.006649436 +24074;0;0.07652283;4.1571198;9.203827 +24074;3;0.022369385;0.23857117;0.7129059 +24074;12;0.13387628;0.11842652;0.61315423;0.7694766 +24074;1;-0.1798225;3.4541984;9.179994 +24074;0;0.062194824;4.133362;9.222916 +24074;3;0.03276062;0.24589539;0.7012787 +24074;2;-0.19194116;-0.65902066;0.00729084; +24077;5;999.6073 +24077;0;0.03831482;4.190384;9.203827 +24077;3;0.043136597;0.2526245;0.69395447 +24077;12;0.13380693;0.11867581;0.6145458;0.7683392 +24080;0;0.062194824;4.214142;9.199066 +24080;1;-0.17892145;3.4573362;9.17883 +24080;3;0.05230713;0.25933838;0.68540955 +24081;4;18.492126;-13.191223;-55.496216 +24081;6;-1.0402827;-0.42956522;-0.00676089 +24081;7;0.5083936;-0.7841822;0.35580084;0.0;0.8611028;0.46000692;-0.21655355;0.0;0.0061465953 +24082;0;0.028747559;4.185623;9.222916 +24082;3;0.059631348;0.2685089;0.67684937 +24082;12;0.13379757;0.11893084;0.6155772;0.7674754 +24083;1;-0.1789634;3.4612243;9.177363 +24083;0;0.014419556;4.185623;9.189545 +24083;3;0.06636047;0.27583313;0.66830444 +24086;0;0.03352356;4.199875;9.203827 +24086;3;0.07368469;0.2813263;0.6628113 +24086;12;0.13374624;0.1193017;0.616894;0.7663687 +24087;17;1;38dead6d7725;10646;2242;-69; +24088;17;1;38dead6d60ff;10235;1488;-68; +24089;17;1;1c1bb5efa29a;4693;612;-57; +24089;17;1;1c1bb5ecd182;1369;1408;-59; +24089;1;-0.17990158;3.465769;9.175631 +24089;0;0.0048675537;4.2283936;9.199066 +24090;3;0.07917786;0.28683472;0.6554718 +24091;4;18.043518;-13.94043;-56.84662 +24091;6;-1.0211833;-0.4308536;-5.291356E-4 +24091;7;0.5225457;-0.77479565;0.35586193;0.0;0.8526112;0.47461885;-0.21861191;0.0;4.8077764E-4 +24091;0;-0.01423645;4.2046356;9.213379 +24091;3;0.08163452;0.28988647;0.64753723 +24091;12;0.13369343;0.11972909;0.6181889;0.765267 +24093;0;0.0048675537;4.2188873;9.199066 +24093;1;-0.18150796;3.4707265;9.173724 +24093;2;-0.1518369;-0.7268748;-0.03145981; +24093;3;0.08529663;0.29232788;0.64019775 +24095;0;-0.0046844482;4.2188873;9.184769 +24095;12;0.1336417;0.12019119;0.6194481;0.7641845 +24097;3;0.08529663;0.29415894;0.6334839 +24097;0;-0.01423645;4.233139;9.203827 +24097;1;-0.18355785;3.475906;9.171722 +24097;3;0.08529663;0.2947693;0.6255493 +24100;0;-0.023803711;4.2473907;9.213379 +24100;3;0.082855225;0.2953949;0.6175995 +24100;4;19.242859;-13.790894;-53.996277 +24100;6;-1.0843489;-0.43196458;0.002583597 +24100;7;0.4665306;-0.80279946;0.3712979;0.0;0.8845019;0.4245472;-0.19343211;0.0;-0.0023462782 +24101;12;0.13358693;0.120674804;0.6206787;0.7631186 +24102;0;-0.019012451;4.2616425;9.184769 +24102;1;-0.18593752;3.4810467;9.169725 +24102;3;0.08041382;0.29293823;0.6108856 +24105;0;-0.042907715;4.223633;9.175232 +24105;12;0.13352612;0.1211611;0.6218573;0.76209205 +24105;3;0.0773468;0.29171753;0.6029358 +24107;0;-0.038131714;4.233139;9.184769 +24107;1;-0.18844509;3.4859257;9.167819 +24107;3;0.07246399;0.28866577;0.5962219 +24109;4;18.792725;-13.641357;-57.296753 +24109;6;-1.0110574;-0.43186715;0.004151601 +24109;7;0.5294879;-0.7695909;0.35689256;0.0;0.84830904;0.48221487;-0.21872462;0.0;-0.0037704138 +24109;0;-0.07156372;4.256897;9.19429 +24109;3;0.06880188;0.2837677;0.5894928 +24110;12;0.13345078;0.121643685;0.62303114;0.76106894 +24114;0;-0.08111572;4.252136;9.208603 +24114;1;-0.19094756;3.4904478;9.166047 +24114;3;0.06575012;0.27644348;0.5815582 +24114;2;-0.10325532;-0.74696255;-0.028060913; +24114;5;999.60223 +24114;0;-0.11456299;4.2426453;9.203827 +24114;12;0.1333633;0.1221082;0.624178;0.76006955 +24115;3;0.0602417;0.2697296;0.5766754 +24116;1;-0.19313061;3.4946272;9.164409 +24117;0;-0.10499573;4.275894;9.199066 +24117;3;0.05718994;0.2624054;0.5699463 +24118;4;17.74292;-13.340759;-56.84662 +24119;6;-0.9608208;-0.4350834;0.011413242 +24119;7;0.5688672;-0.74329823;0.35199147;0.0;0.8223644;0.5194781;-0.23207666;0.0;-0.010349702 +24119;0;-0.143219;4.2854004;9.208603 +24120;3;0.054138184;0.2538452;0.5650635 +24120;12;0.13363273;0.122133285;0.6229929;0.76099 +24121;0;-0.171875;4.2378845;9.261063 +24121;1;-0.19489881;3.4984577;9.16291 +24121;3;0.050476074;0.246521;0.56018066 +24123;0;-0.18621826;4.280655;9.280151 +24123;12;0.13354953;0.12253407;0.62408835;0.76004183 +24124;3;0.04864502;0.23735046;0.5552826 +24126;0;-0.20054626;4.275894;9.313538 +24126;1;-0.1961532;3.5019965;9.161531 +24126;3;0.04864502;0.23002625;0.5485687 +24128;4;18.34259;-13.340759;-56.547546 +24128;6;-0.9743595;-0.43031213;0.021529442 +24128;7;0.554138;-0.7519181;0.35714167;0.0;0.83219475;0.5104912;-0.21644972;0.0;-0.019565212 +24128;0;-0.19577026;4.2473907;9.327835 +24128;3;0.048034668;0.22329712;0.5467377 +24129;12;0.13347465;0.122898795;0.6251614;0.7591138 +24133;0;-0.22921753;4.280655;9.342148 +24133;3;0.048034668;0.21658325;0.54307556 +24133;1;-0.19691874;3.5054321;9.1602 +24133;2;0.02194278;-0.75918293;-0.10633755; +24134;12;0.13341653;0.12323744;0.62621015;0.75820404 +24134;0;-0.20533752;4.290146;9.394608 +24134;3;0.051696777;0.21109009;0.5388031 +24140;1;-0.19721475;3.5089033;9.158865 +24140;12;0.13337874;0.12355183;0.6272231;0.75732183 +24141;0;-0.21009827;4.256897;9.40892 +24141;1;-0.19737218;3.5127273;9.157396 +24142;3;0.05596924;0.20863342;0.535141 +24142;4;19.093323;-15.740967;-57.296753 +24142;6;-1.0833536;-0.424781;0.02232598 +24142;7;0.46012253;-0.80501306;0.3744881;0.0;0.8876225;0.42674366;-0.17325217;0.0;-0.020340158 +24144;12;0.13336095;0.12387218;0.6282328;0.7564351 +24144;0;-0.23399353;4.275894;9.4470825 +24144;3;0.061462402;0.20558167;0.52963257 +24144;0;-0.21966553;4.280655;9.46138 +24144;3;0.06512451;0.20497131;0.5241394 +24144;0;-0.21487427;4.2711487;9.4852295 +24144;3;0.071243286;0.20497131;0.5210724 +24148;1;-0.19757465;3.5169377;9.155775 +24148;0;-0.21966553;4.299652;9.509079 +24148;3;0.07917786;0.20436096;0.5174103 +24148;0;-0.23399353;4.299652;9.509079 +24148;3;0.086517334;0.20558167;0.5131378 +24148;4;17.892456;-14.241028;-55.496216 +24148;6;-1.0240241;-0.42453748;0.024602417 +24148;7;0.51111996;-0.77837867;0.36453122;0.0;0.859217;0.47377798;-0.1930817;0.0;-0.022416182 +24148;12;0.13336028;0.124206245;0.62922007;0.7555594 +24149;0;-0.23399353;4.2854004;9.532913 +24149;1;-0.19790837;3.521774;9.153909 +24150;2;0.07400294;-0.7614641;-0.31336308; +24150;3;0.09262085;0.20802307;0.5094757 +24152;5;999.60223 +24152;0;-0.24832153;4.280655;9.585388 +24152;12;0.13338132;0.12456325;0.6301887;0.7546891 +24152;3;0.10118103;0.21109009;0.5045929 +24154;0;-0.24832153;4.252136;9.566299 +24154;1;-0.19858417;3.5271552;9.151822 +24154;3;0.10850525;0.21414185;0.5009308 +24156;4;18.193054;-14.5401;-55.94635 +24156;6;-1.0493447;-0.4181384;0.025952123 +24156;7;0.4888351;-0.79239345;0.3649011;0.0;0.8720538;0.45522287;-0.17970586;0.0;-0.023713592 +24157;0;-0.22921753;4.280655;9.604462 +24157;3;0.11584473;0.2159729;0.49786377 +24158;12;0.13357294;0.12477423;0.6301573;0.7546466 +24159;0;-0.24832153;4.275894;9.566299 +24159;1;-0.19960597;3.5332346;9.149454 +24159;3;0.12132263;0.21658325;0.494812 +24161;0;-0.27697754;4.3091583;9.561539 +24162;12;0.13362634;0.12520133;0.6310964;0.7537811 +24162;3;0.12805176;0.2171936;0.49053955 +24164;0;-0.27697754;4.299652;9.571075 +24164;1;-0.20083857;3.5398133;9.146885 +24164;3;0.13232422;0.21780396;0.49053955 +24166;4;17.593384;-14.5401;-55.047607 +24166;6;-1.0355222;-0.42206025;0.028930943 +24166;7;0.4996712;-0.7846499;0.36695138;0.0;0.8658132;0.46531603;-0.18397999;0.0;-0.026388483 +24166;0;-0.28652954;4.299652;9.556763 +24166;3;0.13842773;0.2171936;0.48931885 +24167;12;0.13369627;0.12564798;0.6320072;0.75293094 +24169;0;-0.3152008;4.2854004;9.552002 +24169;1;-0.20217042;3.5469198;9.144102 +24169;2;0.11446862;-0.7411146;-0.42438126; +24169;3;0.14149475;0.21536255;0.4887085 +24171;0;-0.3152008;4.2854004;9.547226 +24171;12;0.13378242;0.12611862;0.6329203;0.75206935 +24171;3;0.14576721;0.2147522;0.48809814 +24173;0;-0.3534088;4.280655;9.54245 +24173;1;-0.2034356;3.5543296;9.141196 +24174;3;0.14698792;0.21170044;0.4862671 +24176;4;19.392395;-14.390564;-56.84662 +24176;6;-1.0288963;-0.42142552;0.03701852 +24176;7;0.502441;-0.7817722;0.36930388;0.0;0.8639518;0.4706388;-0.17912738;0.0;-0.033771936 +24176;0;-0.37728882;4.3091583;9.547226 +24177;3;0.14881897;0.20497131;0.48565674 +24177;12;0.13418686;0.12625834;0.6319425;0.75279576 +24178;0;-0.39163208;4.3091583;9.513855 +24178;1;-0.2044919;3.5619504;9.138206 +24179;3;0.15005493;0.19947815;0.4850464 +24180;0;-0.36775208;4.3376617;9.537689 +24181;12;0.134308;0.12673275;0.6328352;0.751944 +24181;3;0.15249634;0.19276428;0.48565674 +24183;0;-0.35820007;4.3186646;9.499542 +24183;1;-0.20497386;3.5697327;9.135157 +24183;3;0.15127563;0.18725586;0.48136902 +24186;4;17.74292;-13.94043;-54.896545 +24186;6;-0.9902079;-0.42642018;0.03768923 +24186;7;0.5350951;-0.7612655;0.366262;0.0;0.8440949;0.4993976;-0.19520687;0.0;-0.034306124 +24186;0;-0.3534088;4.3376617;9.547226 +24186;3;0.14942932;0.1817627;0.48197937 +24186;12;0.13445392;0.12718916;0.633721;0.7510945 +24188;0;-0.38208008;4.3614197;9.509079 +24188;1;-0.20499535;3.5774782;9.132126 +24188;2;0.20798051;-0.7444594;-0.39566326; +24188;3;0.15127563;0.17504883;0.48075867 +24190;5;999.60223 +24191;0;-0.36775208;4.404175;9.509079 +24191;12;0.13461614;0.12762694;0.6345951;0.75025254 +24191;3;0.15187073;0.17016602;0.47953796 +24192;0;-0.36775208;4.3946686;9.518616 +24193;3;0.15005493;0.16526794;0.47831726 +24193;1;-0.20450228;3.5853243;9.129061 +24195;4;17.442322;-14.390564;-56.097412 +24195;6;-0.9594936;-0.43225056;0.038615834 +24195;7;0.56026304;-0.7435828;0.364952;0.0;0.8275726;0.52114725;-0.20863621;0.0;-0.035055436 +24195;0;-0.3438568;4.389923;9.532913 +24196;3;0.15127563;0.16038513;0.47709656 +24196;12;0.13515536;0.12764652;0.6332725;0.75126916 +24197;0;-0.36297607;4.4231873;9.48999 +24198;1;-0.20358545;3.5931213;9.126015 +24198;3;0.15005493;0.15550232;0.4752655 +24200;0;-0.36297607;4.4089203;9.513855 +24201;12;0.13535176;0.12804633;0.6341327;0.75043976 +24201;3;0.15187073;0.1499939;0.4740448 +24202;0;-0.34864807;4.456436;9.504303 +24202;1;-0.20226528;3.6009424;9.122961 +24202;3;0.15065002;0.14694214;0.4703827 +24204;4;18.043518;-15.2908325;-54.597473 +24204;6;-1.031905;-0.43818977;0.03666674 +24204;7;0.4994899;-0.7771891;0.38273612;0.0;0.86568344;0.46469963;-0.1861352;0.0;-0.03319507 +24205;0;-0.30085754;4.503952;9.518616 +24206;3;0.15187073;0.14205933;0.47099304 +24206;12;0.13556619;0.12842977;0.63498294;0.7496161 +24208;1;-0.20054956;3.608825;9.119884 +24208;2;0.19226344;-0.8344846;-0.39460754; +24208;0;-0.2817688;4.513443;9.556763 +24210;3;0.15127563;0.13961792;0.46977234 +24210;0;-0.2817688;4.5894623;9.537689 +24210;12;0.13579552;0.12879999;0.6358223;0.74879915 +24210;3;0.15553284;0.13717651;0.4703827 +24213;0;-0.25309753;4.636963;9.556763 +24213;3;0.1579895;0.1347351;0.46855164 +24214;1;-0.19852804;3.616891;9.116732 +24215;4;17.892456;-12.890625;-56.697083 +24215;6;-0.8873854;-0.4516018;0.026477417 +24215;7;0.62226135;-0.6976866;0.3549988;0.0;0.78244704;0.5681391;-0.25494036;0.0;-0.023820251 +24215;0;-0.18144226;4.7082367;9.547226 +24215;3;0.16104126;0.1341095;0.46733093 +24216;12;0.13650845;0.12864691;0.6338391;0.7503757 +24217;0;-0.16711426;4.7414856;9.566299 +24217;3;0.16409302;0.1328888;0.46794128 +24217;1;-0.1962327;3.625317;9.113434 +24219;0;-0.12890625;4.827011;9.623535 +24220;12;0.13678002;0.12901346;0.6346685;0.74956167 +24221;3;0.16714478;0.1328888;0.46794128 +24222;0;-0.12411499;4.874527;9.671219 +24222;1;-0.19378902;3.6340744;9.109998 +24222;3;0.17082214;0.13839722;0.46733093 +24227;4;18.492126;-14.241028;-56.24695 +24227;6;-0.9501831;-0.46682864;0.012832734 +24227;7;0.5767878;-0.7264752;0.37356314;0.0;0.8168136;0.51931;-0.25126222;0.0;-0.011459319 +24228;0;-0.095443726;4.9552917;9.699844 +24228;3;0.17204285;0.14572144;0.46855164 +24228;0;-0.047683716;5.0122986;9.733231 +24228;12;0.13706891;0.12938768;0.6354944;0.7487442 +24228;1;-0.19164367;3.6432173;9.10639 +24228;2;0.018660888;-1.1589706;-0.50605965; +24228;3;0.17204285;0.15428162;0.469162 +24230;0;-0.057235718;5.1025696;9.75708 +24230;12;0.13736133;0.12979092;0.6363256;0.74791443 +24230;3;0.17082214;0.16526794;0.46855164 +24230;5;999.60223 +24232;0;-0.047683716;5.140564;9.814301 +24232;1;-0.1902304;3.6523435;9.102764 +24232;3;0.16960144;0.17749023;0.4716034 +24234;4;17.442322;-14.390564;-56.547546 +24234;6;-0.9033974;-0.48248765;0.0048585576 +24234;7;0.61716723;-0.69577175;0.367432;0.0;0.7868202;0.54828846;-0.28336135;0.0;-0.0043039043 +24234;0;-0.047683716;5.1785736;9.838165 +24234;3;0.16409302;0.19276428;0.4728241 +24235;12;0.13802087;0.12978128;0.6347782;0.7491086 +24236;0;-0.09068298;5.240341;9.900162 +24237;3;0.1579895;0.20741272;0.47343445 +24237;1;-0.18985222;3.661399;9.0991335 +24239;0;-0.07156372;5.254593;9.952621 +24239;12;0.13824324;0.13025616;0.6356327;0.74826014 +24239;3;0.14637756;0.22390747;0.47709656 +24241;0;-0.08590698;5.264099;10.005081 +24241;1;-0.19073911;3.6697464;9.095751 +24242;3;0.13842773;0.23796082;0.47953796 +24244;4;16.842651;-15.141296;-55.94635 +24244;6;-0.9101304;-0.48432708;0.0085861245 +24244;7;0.6104636;-0.6987725;0.37289557;0.0;0.7920078;0.5430668;-0.27893013;0.0;-0.0075985277 +24244;12;0.13839129;0.1307588;0.6365009;0.7474066 +24244;0;-0.095443726;5.2926025;10.019394 +24245;3;0.1262207;0.25323486;0.4789276 +24246;0;-0.18144226;5.3068542;10.08139 +24246;2;-0.058407694;-1.5573177;-0.8225632; +24246;1;-0.19290711;3.6772237;9.092685 +24246;3;0.110946655;0.2642212;0.47953796 +24249;0;-0.20533752;5.2830963;10.181549 +24249;12;0.13845417;0.13128458;0.6373909;0.7465439 +24249;3;0.09628296;0.27217102;0.4777069 +24251;1;-0.19614047;3.6833475;9.090137 +24251;0;-0.23399353;5.287857;10.253082 +24251;3;0.07917786;0.2788849;0.4740448 +24253;4;17.593384;-15.141296;-55.047607 +24253;6;-0.93928635;-0.4760489;0.022817813 +24253;7;0.58177125;-0.7173935;0.38326082;0.0;0.8130997;0.5247231;-0.25206083;0.0;-0.020278998 +24253;0;-0.2960968;5.230835;10.3246155 +24253;3;0.058410645;0.2813263;0.46977234 +24254;12;0.13874349;0.13145106;0.6364029;0.74730337 +24256;0;-0.3104248;5.2070923;10.358002 +24256;1;-0.2000856;3.6878207;9.088237 +24256;3;0.03276062;0.2831726;0.46426392 +24258;0;-0.3295288;5.107315;10.45816 +24260;12;0.13862394;0.13193722;0.63731205;0.74646455 +24265;3;0.0077209473;0.27766418;0.45632935 +24265;0;-0.34864807;5.0360413;10.572632 +24265;3;-0.019165039;0.26911926;0.44900513 +24265;1;-0.20427366;3.6899495;9.08728 +24265;4;18.043518;-15.2908325;-54.896545 +24265;6;-1.0169364;-0.44432038;0.032964524 +24265;7;0.5136392;-0.7679196;0.3827197;0.0;0.85749006;0.4749035;-0.19793288;0.0;-0.029758375 +24266;12;0.13840106;0.1323447;0.6382164;0.7456607 +24266;0;-0.38208008;4.9315186;10.701401 +24266;3;-0.049087524;0.25872803;0.43922424 +24266;0;-0.41552734;4.8460083;10.763397 +24266;2;0.15680811;-1.4409924;-1.3574591; +24266;1;-0.2080856;3.6894267;9.087405 +24268;3;-0.08085632;0.246521;0.4300537 +24268;0;-0.47763062;4.7700043;10.83017 +24268;3;-0.10896301;0.23002625;0.42089844 +24269;17;1;38dead6d7725;6767;2375;-69; +24270;17;1;38dead6d60ff;11275;1070;-67; +24270;17;1;1c1bb5efa29a;2486;1532;-57; +24271;17;1;1c1bb5ecd182;2530;2234;-65; +24271;12;0.13808925;0.13263844;0.6391036;0.7449061 +24271;5;999.6044 +24271;0;-0.5397186;4.660721;10.849258 +24271;1;-0.21123536;3.6860337;9.08871 +24271;3;-0.13522339;0.21292114;0.4111328 +24272;4;17.74292;-16.041565;-57.296753 +24272;6;-1.068525;-0.40530303;0.049706075 +24272;7;0.46365178;-0.8054806;0.36909083;0.0;0.88484025;0.44241458;-0.1460382;0.0;-0.045660228 +24272;0;-0.5206146;4.556198;10.925552 +24273;3;-0.16087341;0.19459534;0.40196228 +24273;12;0.1380152;0.13243943;0.6380652;0.7458447 +24274;0;-0.5349426;4.4279175;11.025711 +24274;1;-0.21324503;3.6800447;9.09109 +24275;3;-0.18226624;0.17442322;0.39646912 +24276;0;-0.5158386;4.323395;11.164017 +24277;12;0.13755697;0.13244757;0.63890445;0.7452093 +24277;3;-0.2024231;0.153656;0.3915863 +24279;0;-0.5445099;4.199875;11.254623 +24279;1;-0.21375638;3.6718073;9.094407 +24280;3;-0.22319031;0.1347351;0.38790894 +24282;4;18.193054;-14.840698;-54.74701 +24282;6;-1.230374;-0.35678157;0.0483433 +24282;7;0.31758583;-0.88325334;0.34496775;0.0;0.9471477;0.31285903;-0.07092528;0.0;-0.045281276 +24283;12;0.13706475;0.132312;0.639723;0.7446216 +24283;0;-0.5636139;4.109619;11.283249 +24284;3;-0.2366333;0.11885071;0.38485718 +24284;0;-0.5922699;4.0811005;11.369095 +24284;1;-0.21285152;3.6617298;9.098491 +24285;2;0.37333074;-0.74373436;-1.9824219; +24285;3;-0.24822998;0.101745605;0.38241577 +24286;0;-0.65914917;3.9860992;11.335709 +24286;12;0.13655272;0.13205218;0.6405271;0.74407035 +24287;3;-0.2537384;0.09074402;0.38668823 +24288;0;-0.65437317;3.8245544;11.340485 +24289;1;-0.21076348;3.650545;9.103033 +24289;3;-0.25556946;0.076690674;0.392807 +24291;4;17.892456;-16.191101;-55.496216 +24291;6;-1.3911796;-0.32476655;0.057638485 +24291;7;0.16027002;-0.9324784;0.32372433;0.0;0.9855621;0.16931348;-2.3131818E-4;0.0;-0.054595202 +24291;0;-0.6495819;3.7010345;11.340485 +24291;3;-0.2525177;0.06385803;0.39646912 +24292;12;0.13610218;0.13162899;0.6409513;0.7438626 +24293;0;-0.67349243;3.5822601;11.373871 +24293;1;-0.20740382;3.638974;9.107742 +24294;3;-0.24456787;0.054092407;0.40135193 +24296;0;-0.6639252;3.4777374;11.412018 +24296;12;0.13561507;0.13121313;0.64176047;0.74332714 +24296;3;-0.23234558;0.046157837;0.4056244 +24298;0;-0.6495819;3.4302368;11.497879 +24298;1;-0.20300145;3.627811;9.112293 +24299;3;-0.21647644;0.041870117;0.4074707 +24301;4;19.242859;-16.191101;-56.24695 +24301;6;-1.5194951;-0.28949377;0.05643581 +24301;7;0.0351162;-0.95712763;0.28752998;0.0;0.9979202;0.04914489;0.041716583;0.0;-0.05405873 +24301;0;-0.5922699;3.3114624;11.578934 +24301;3;-0.19752502;0.044311523;0.40623474 +24302;12;0.13518055;0.13077146;0.6425798;0.74277604 +24303;0;-0.5110626;3.3209534;11.5503235 +24303;1;-0.19820264;3.617972;9.116309 +24303;2;0.48411673;0.025926113;-2.306388; +24303;3;-0.17370605;0.050430298;0.4056244 +24305;0;-0.5015106;3.235443;11.50264 +24306;12;0.1348178;0.13036336;0.6433831;0.74221814 +24306;3;-0.14561462;0.062026978;0.40379333 +24306;5;999.6044 +24308;0;-0.47763062;3.1404114;11.454941 +24308;1;-0.1939121;3.6099951;9.119564 +24308;3;-0.11199951;0.073028564;0.3982849 +24310;4;18.492126;-16.191101;-54.74701 +24310;6;-1.6301036;-0.26735762;0.04167233 +24310;7;-0.07020766;-0.9627766;0.2610211;0.0;0.9967228;-0.05716669;0.05723227;0.0;-0.04018018 +24310;0;-0.46806335;3.0691528;11.440643 +24311;3;-0.07841492;0.08830261;0.3934021 +24311;12;0.13451703;0.1300339;0.6441377;0.7416759 +24312;0;-0.55882263;2.978897;11.440643 +24313;1;-0.19090019;3.6046858;9.121727 +24313;3;-0.037490845;0.105407715;0.3885193 +24315;0;-0.5445099;2.9408875;11.388168 +24315;12;0.13427539;0.12985726;0.6449085;0.7410806 +24315;3;0.004043579;0.12373352;0.38363647 +24317;0;-0.46806335;2.955124;11.278473 +24317;1;-0.18956761;3.6027715;9.122512 +24318;3;0.050476074;0.14389038;0.37997437 +24320;4;19.093323;-15.740967;-55.34668 +24320;6;-1.6316525;-0.25604323;0.041476794 +24321;7;-0.07124804;-0.9656088;0.2500467;0.0;0.9966517;-0.058835894;0.0567775;0.0;-0.040113132 +24321;0;-0.44418335;2.9361267;11.164017 +24321;3;0.098739624;0.1646576;0.3757019 +24322;12;0.13412254;0.12986465;0.64564323;0.7404669 +24322;0;-0.45373535;2.921875;11.040024 +24323;3;0.14759827;0.18603516;0.37202454 +24323;1;-0.19005483;3.6048803;9.121668 +24323;2;0.3505184;0.5724468;-2.2120771; +24325;0;-0.46806335;2.9361267;10.892166 +24325;12;0.13406917;0.1300886;0.64634675;0.7398232 +24325;3;0.20074463;0.20558167;0.36653137 +24327;0;-0.45851135;2.921875;10.792007 +24327;3;0.25328064;0.22634888;0.3579712 +24328;1;-0.19252206;3.6114001;9.119037 +24329;4;18.193054;-15.440369;-54.74701 +24329;6;-1.5973231;-0.26417813;0.04246066 +24329;7;-0.037579622;-0.96496785;0.259663;0.0;0.99845326;-0.025603428;0.04935247;0.0;-0.04097528 +24330;0;-0.44895935;2.8933716;10.639404 +24330;3;0.3027649;0.24345398;0.3463745 +24331;12;0.13431959;0.13033608;0.64588135;0.74014056 +24332;0;-0.46806335;2.9171143;10.48201 +24332;1;-0.19697633;3.6224866;9.114543 +24332;3;0.35224915;0.26055908;0.33537292 +24334;0;-0.46328735;2.9123688;10.3293915 +24335;12;0.13449901;0.1310309;0.64650047;0.7394445 +24335;3;0.39866638;0.27583313;0.3280487 +24337;0;-0.5110626;2.9598846;10.129074 +24337;1;-0.20325565;3.637926;9.1082535 +24337;3;0.4402008;0.29171753;0.32133484 +24339;4;18.193054;-15.141296;-55.047607 +24339;6;-1.497898;-0.28395885;0.05041227 +24340;7;0.05866135;-0.95740426;0.28272927;0.0;0.9971052;0.0699171;0.029878022;0.0;-0.048372958 +24340;0;-0.5206146;2.988388;9.952621 +24340;3;0.47807312;0.30393982;0.31582642 +24341;12;0.13479762;0.13195;0.64706093;0.7387361 +24342;0;-0.5397186;3.0738983;9.761841 +24342;1;-0.21108566;3.6572123;9.100349 +24342;2;0.32519892;0.6988559;-1.2677155; +24342;3;0.51535034;0.3149414;0.3109436 +24344;0;-0.59706116;3.0596466;9.580612 +24344;12;0.13520055;0.13306515;0.6475782;0.73800886 +24345;3;0.5452728;0.32104492;0.30667114 +24345;5;999.6044 +24347;1;-0.21998498;3.679708;9.091064 +24350;12;0.13600238;0.13400778;0.64632845;0.73878604 +24350;0;-0.5445099;3.0644073;9.48999 +24350;3;0.5709381;0.32348633;0.30238342 +24350;4;17.74292;-15.740967;-54.896545 +24350;6;-1.4245263;-0.31185967;0.057314448 +24350;7;0.12812117;-0.9416013;0.31140316;0.0;0.9902588;0.13871866;0.012024801;0.0;-0.054520003 +24350;0;-0.49195862;3.078659;9.342148 +24352;1;-0.22921349;3.704558;9.080739 +24352;3;0.5935364;0.3265381;0.29444885 +24352;0;-0.48239136;3.1214142;9.203827 +24352;3;0.61369324;0.3326416;0.28712463 +24353;0;-0.39163208;3.1926727;9.046463 +24354;12;0.13659133;0.1353711;0.6467771;0.7380358 +24354;3;0.62835693;0.33692932;0.2803955 +24356;0;-0.37728882;3.2544403;8.931976 +24356;1;-0.23893172;3.7313004;9.069532 +24356;3;0.6411896;0.34181213;0.27124023 +24358;4;18.193054;-16.191101;-55.047607 +24358;6;-1.3318591;-0.34912193;0.042215142 +24358;7;0.22243309;-0.91297746;0.34204662;0.0;0.97414124;0.22239268;-0.03988267;0.0;-0.03965667 +24358;0;-0.3295288;3.29245;8.774612 +24359;3;0.64912415;0.3448639;0.2620697 +24359;12;0.13724042;0.13682118;0.64718765;0.7372877 +24361;0;-0.3152008;3.325714;8.583832 +24361;1;-0.24918233;3.7592607;9.057702 +24361;2;0.24392277;0.57861114;-0.05729866; +24361;3;0.65644836;0.3436432;0.25228882 +24363;0;-0.3343048;3.335205;8.450302 +24363;12;0.13792157;0.13833484;0.6475597;0.7365511 +24363;3;0.66134644;0.34120178;0.2461853 +24365;0;-0.3438568;3.335205;8.340591 +24365;1;-0.25967646;3.7879083;9.0454645 +24366;3;0.66622925;0.3363037;0.23825073 +24368;4;17.892456;-15.890503;-54.74701 +24368;6;-1.2146195;-0.3801071;0.041203577 +24368;7;0.33407378;-0.87034136;0.36180174;0.0;0.9417703;0.32380548;-0.09065587;0.0;-0.03825184 +24368;0;-0.39163208;3.3494568;8.235672 +24368;3;0.66500854;0.32958984;0.22970581 +24369;12;0.13897645;0.13951224;0.64597076;0.73752534 +24370;0;-0.37252808;3.3969727;8.106903 +24370;1;-0.27011096;3.8171113;9.032874 +24371;3;0.66500854;0.32287598;0.22175598 +24374;12;0.13971585;0.14106819;0.6462721;0.7368254 +24375;0;-0.36297607;3.4112244;7.992447 +24375;3;0.66256714;0.3149414;0.2144165 +24376;1;-0.28006673;3.846125;9.020254 +24376;0;-0.3438568;3.3969727;7.901825 +24376;3;0.6582947;0.30638123;0.20831299 +24379;4;17.292786;-16.490173;-54.74701 +24379;6;-1.1464877;-0.40566823;0.043488685 +24379;7;0.39566627;-0.83735955;0.37719643;0.0;0.9175252;0.3782775;-0.122693315;0.0;-0.039946504 +24379;0;-0.3199768;3.4207153;7.8350525 +24379;3;0.6497345;0.2972107;0.20404053 +24379;12;0.14046732;0.1425924;0.646537;0.7361564 +24382;1;-0.2893391;3.8747652;9.007696 +24382;2;0.10239433;0.4789598;0.9322109; +24382;0;-0.24832153;3.4634857;7.777817 +24382;3;0.6417999;0.28622437;0.19854736 +24385;0;-0.22921753;3.449234;7.7253723 +24385;12;0.14123093;0.14407404;0.6467766;0.73551106 +24385;3;0.63201904;0.2788849;0.19732666 +24385;5;999.6044 +24385;0;-0.23399353;3.4444885;7.6681366 +24385;3;0.6204071;0.27095032;0.1954956 +24385;1;-0.29779813;3.9026597;8.995369 +24388;4;19.543457;-17.541504;-54.296875 +24388;6;-1.2235168;-0.42201033;0.030505577 +24388;7;0.32843542;-0.8578069;0.39534482;0.0;0.9441165;0.31048197;-0.11065717;0.0;-0.027824925 +24389;0;-0.19099426;3.449234;7.639511 +24390;3;0.606369;0.2648468;0.19303894 +24390;12;0.14204751;0.14544037;0.64671314;0.7351407 +24390;1;-0.30557492;3.9295173;8.983408 +24390;0;-0.18621826;3.4397278;7.5870514 +24390;3;0.5935364;0.25689697;0.19425964 +24392;12;0.14279182;0.14679909;0.6469314;0.7345341 +24393;0;-0.13366699;3.434967;7.515518 +24393;3;0.5800934;0.2526245;0.19425964 +24394;0;-0.095443726;3.449234;7.4630585 +24395;1;-0.31261978;3.9552443;8.9718685 +24395;3;0.5690918;0.2489624;0.19303894 +24397;4;18.34259;-17.390442;-54.896545 +24397;6;-1.1764841;-0.43290067;0.012788124 +24397;7;0.37918904;-0.8380927;0.3921943;0.0;0.92524636;0.34873435;-0.14934325;0.0;-0.011608138 +24397;0;-0.08111572;3.458725;7.4487457 +24398;3;0.5550537;0.2453003;0.19303894 +24398;12;0.14351425;0.14809145;0.64715326;0.73393816 +24400;0;-0.0046844482;3.458725;7.439209 +24400;1;-0.31919602;3.9799;8.960727 +24400;2;-0.12328434;0.5241213;1.4050217; +24400;3;0.5440521;0.24101257;0.18998718 +24403;0;0.0048675537;3.4444885;7.415344 +24403;12;0.14420708;0.14932723;0.6473787;0.733353 +24403;3;0.53611755;0.23918152;0.19120789 +24404;1;-0.3253382;4.003572;8.949954 +24404;0;0.071746826;3.4729767;7.415344 +24404;3;0.5245056;0.23735046;0.18998718 +24407;4;18.492126;-16.790771;-54.74701 +24407;6;-1.1755055;-0.43799058;-0.009675153 +24407;7;0.38884556;-0.8357696;0.38767043;0.0;0.92126125;0.3487276;-0.1722402;0.0;0.008761737 +24407;0;0.057418823;3.4634857;7.415344 +24407;3;0.51535034;0.23612976;0.18754578 +24407;12;0.14528877;0.15009598;0.64551204;0.73462695 +24410;0;0.114746094;3.5014954;7.401062 +24410;1;-0.3312509;4.0263605;8.9395075 +24410;3;0.5074005;0.23674011;0.18876648 +24414;0;0.1338501;3.5062408;7.415344 +24414;12;0.1459307;0.15124203;0.6457414;0.73406285 +24414;3;0.49702454;0.23918152;0.18815613 +24414;0;0.1577301;3.5062408;7.4201202 +24414;1;-0.33708382;4.048368;8.929345 +24414;3;0.48724365;0.24223328;0.18388367 +24417;4;18.492126;-17.240906;-54.74701 +24417;6;-1.2007324;-0.44134516;-0.021253882 +24417;7;0.3700568;-0.8429688;0.39046305;0.0;0.9288104;0.32701856;-0.17427038;0.0;0.019215845 +24417;0;0.21505737;3.5394897;7.4201202 +24417;3;0.47807312;0.24589539;0.18144226 +24417;12;0.14654127;0.15235922;0.6459766;0.733503 +24418;1;-0.34311068;4.0695405;8.919486 +24418;0;0.24848938;3.5727692;7.4487457 +24419;2;-0.4186212;0.5602789;1.5061312; +24419;3;0.4670868;0.25201416;0.17471313 +24422;0;0.3058319;3.5394897;7.4964294 +24422;12;0.14710858;0.15345384;0.64621073;0.7329548 +24422;3;0.4573059;0.25750732;0.17044067 +24422;5;999.5968 +24423;1;-0.34962696;4.08975;8.909984 +24423;0;0.31536865;3.5822601;7.4868927 +24423;3;0.44692993;0.2672882;0.16189575 +24425;4;17.74292;-17.69104;-53.396606 +24425;6;-1.2459738;-0.44593146;-0.04209788 +24425;7;0.33606005;-0.8550305;0.3949514;0.0;0.9410749;0.28793162;-0.17740759;0.0;0.037969884 +24426;0;0.39179993;3.5680084;7.520279 +24426;3;0.4340973;0.27766418;0.15272522 +24426;12;0.14800337;0.154154;0.64456767;0.73407364 +24428;1;-0.35699666;4.108947;8.900855 +24428;0;0.4347992;3.5585022;7.5441284 +24428;3;0.4206543;0.28988647;0.1466217 +24430;0;0.47302246;3.5822601;7.5870514 +24431;12;0.14844851;0.15522932;0.64478457;0.7335665 +24431;3;0.40905762;0.299057;0.13746643 +24433;0;0.5016937;3.5774994;7.5822906 +24433;1;-0.36545348;4.126976;8.892166 +24435;3;0.39561462;0.3149414;0.12890625 +24435;4;19.093323;-17.990112;-54.14734 +24435;6;-1.3033371;-0.44001067;-0.06607021 +24435;7;0.29082745;-0.8725793;0.39246;0.0;0.9549091;0.23910823;-0.17599978;0.0;0.059733346 +24435;0;0.53512573;3.615509;7.6586 +24436;3;0.38095093;0.33081055;0.12158203 +24440;12;0.14881024;0.15630503;0.64499193;0.7330824 +24440;1;-0.37534186;4.143796;8.883929 +24440;2;-0.7657195;0.55517197;1.3159332; +24441;0;0.544693;3.615509;7.7158203 +24441;3;0.36323547;0.3497467;0.114852905 +24441;0;0.53512573;3.663025;7.730133 +24441;3;0.34735107;0.36990356;0.11180115 +24441;12;0.14907454;0.1573932;0.64518934;0.73262197 +24442;0;0.5160217;3.6202698;7.782593 +24442;1;-0.38711375;4.1592503;8.876198 +24443;3;0.33024597;0.39190674;0.10873413 +24444;4;18.34259;-17.990112;-53.697205 +24444;6;-1.3144336;-0.4345636;-0.06620769 +24444;7;0.27995205;-0.87741005;0.38958737;0.0;0.9581365;0.22999609;-0.17051736;0.0;0.060010083 +24445;12;0.14961314;0.15811518;0.6434938;0.73384696 +24445;0;0.46824646;3.6535187;7.844589 +24446;3;0.3113098;0.4132843;0.106292725 +24447;0;0.43959045;3.6440125;7.8684235 +24447;3;0.2917633;0.4328308;0.10447693 +24447;1;-0.40081772;4.1730504;8.86911 +24449;0;0.42526245;3.639267;7.906601 +24450;12;0.1496223;0.15924376;0.6437134;0.7334083 +24450;3;0.2709961;0.45176697;0.10385132 +24452;0;0.36314392;3.6535187;7.892288 +24452;1;-0.4163301;4.1851225;8.862704 +24452;3;0.24900818;0.47070312;0.10507202 +24454;4;18.34259;-19.641113;-52.946472 +24454;6;-1.3795639;-0.43314528;-0.04598007 +24454;7;0.20880869;-0.8911043;0.40290454;0.0;0.9770663;0.17251611;-0.12481887;0.0;0.041719113 +24454;0;0.33926392;3.6297607;7.9542847 +24455;3;0.22395325;0.48780823;0.10751343 +24455;12;0.14949556;0.16038367;0.6439551;0.7329734 +24456;0;0.3106079;3.6440125;8.006744 +24457;3;0.19830322;0.5012512;0.1136322 +24457;1;-0.43343878;4.195218;8.857109 +24457;2;-0.8132856;0.54308224;0.9901056; +24459;0;0.26760864;3.663025;8.06398 +24459;12;0.14922914;0.16151784;0.64423;0.732537 +24460;3;0.1738739;0.51345825;0.12095642 +24460;5;999.5968 +24461;0;0.20550537;3.6677704;8.078278 +24461;1;-0.4516166;4.2031727;8.852428 +24462;3;0.14759827;0.52505493;0.1282959 +24463;4;19.392395;-17.990112;-54.14734 +24464;6;-1.2990038;-0.42607746;-0.02543377 +24464;7;0.2784966;-0.8771671;0.39117438;0.0;0.960158;0.24445674;-0.1354161;0.0;0.023157341 +24464;0;0.1720581;3.6962738;8.102127 +24464;3;0.118881226;0.53422546;0.13500977 +24465;12;0.14925203;0.16222268;0.64260226;0.7338052 +24466;0;0.09085083;3.7105408;8.164139 +24470;1;-0.47057208;4.208927;8.848706 +24470;12;0.1487295;0.16328502;0.6429769;0.73334736 +24471;1;-0.4899473;4.212339;8.846031 +24471;3;0.0920105;0.54093933;0.1441803 +24472;0;-0.009475708;3.6962738;8.192749 +24472;3;0.06452942;0.5439911;0.15455627 +24472;0;-0.08590698;3.7010345;8.240448 +24472;3;0.03337097;0.5452118;0.16311646 +24474;17;1;38dead6d7725;10029;938;-67; +24474;17;1;38dead6d60ff;10730;1429;-66; +24475;17;1;1c1bb5efa29a;2466;2389;-60; +24475;17;1;1c1bb5ecd182;2434;741;-59; +24476;4;18.792725;-17.69104;-51.74713 +24476;6;-1.2962476;-0.42211008;0.0104246605 +24476;7;0.26698703;-0.8780615;0.3971473;0.0;0.96365315;0.24731605;-0.101031005;0.0;-0.009509479 +24476;0;-0.12411499;3.615509;8.273819 +24476;3;0.0016021729;0.5427704;0.17166138 +24476;12;0.14808868;0.16427974;0.64340705;0.7328775 +24476;0;-0.21487427;3.5965118;8.38353 +24476;1;-0.5091719;4.21305;8.844607 +24476;2;-0.503634;0.53639984;0.66353035; +24476;3;-0.033203125;0.53422546;0.17900085 +24478;0;-0.25309753;3.525238;8.474136 +24478;12;0.14733315;0.16517304;0.64389247;0.73240244 +24479;3;-0.07046509;0.5244446;0.18449402 +24481;0;-0.3199768;3.5109863;8.6362915 +24481;1;-0.5276263;4.2106466;8.844669 +24481;3;-0.110183716;0.5110016;0.18693542 +24483;4;18.94226;-17.541504;-53.097534 +24483;6;-1.3401278;-0.38589117;0.037033316 +24483;7;0.21490514;-0.90192485;0.37462962;0.0;0.9760323;0.21181583;-0.04994908;0.0;-0.034302168 +24483;0;-0.37252808;3.4682465;8.750748 +24483;3;-0.15415955;0.49572754;0.18876648 +24484;12;0.1469268;0.165507;0.64236265;0.7337508 +24485;0;-0.4298401;3.4207153;8.831833 +24485;1;-0.544996;4.204672;8.846458 +24485;3;-0.19874573;0.47984314;0.19242859 +24488;0;-0.48239136;3.3969727;8.970154 +24488;12;0.1459584;0.16608465;0.642929;0.7333174 +24488;3;-0.24334717;0.46273804;0.1960907 +24490;0;-0.5253906;3.325714;9.094147 +24490;1;-0.5610018;4.1947584;8.850163 +24490;3;-0.2897644;0.44441223;0.19793701 +24492;4;19.993591;-19.041443;-52.6474 +24492;6;-1.5392479;-0.35005388;0.057708245 +24492;7;0.01172063;-0.9388869;0.34402645;0.0;0.99846256;0.0296303;0.04684782;0.0;-0.0541784 +24493;0;-0.64004517;3.2829437;9.203827 +24493;3;-0.3349762;0.42304993;0.20159912 +24493;12;0.14487334;0.16646205;0.64353013;0.7329196 +24495;0;-0.70692444;3.2211914;9.323074 +24495;1;-0.57552683;4.1807833;8.855842 +24495;2;-0.06635636;0.7803135;-0.048945427; +24495;3;-0.380188;0.4004364;0.20648193 +24498;0;-0.7738037;3.1641693;9.413681 +24498;12;0.1436754;0.16662776;0.6441632;0.7325616 +24498;3;-0.42111206;0.37661743;0.2119751 +24498;5;999.5968 +24499;0;-0.835907;3.08815;9.513855 +24500;1;-0.5881215;4.1628833;8.863443 +24500;3;-0.46020508;0.3503418;0.21870422 +24502;4;20.593262;-18.141174;-53.097534 +24502;6;-1.5980866;-0.3127382;0.087637015 +24502;7;-0.05410053;-0.9511404;0.30398205;0.0;0.9950566;-0.025963357;0.09585531;0.0;-0.08327946 +24502;0;-0.864563;3.0263977;9.633072 +24502;3;-0.49624634;0.32652283;0.22541809 +24503;12;0.1427331;0.16626048;0.6432601;0.733622 +24504;1;-0.59843856;4.1415205;8.872756 +24504;0;-0.897995;2.9741364;9.728455 +24505;3;-0.53167725;0.30207825;0.23458862 +24508;0;-0.888443;2.9171143;9.842926 +24508;12;0.14138025;0.1659869;0.6439651;0.7333273 +24508;3;-0.5597687;0.27827454;0.24191284 +24509;0;-0.87890625;2.9076233;9.971695 +24510;3;-0.5836029;0.25749207;0.25413513 +24510;1;-0.6063943;4.1171727;8.883541 +24512;4;20.4422;-16.940308;-54.14734 +24512;6;-1.617028;-0.28268313;0.087912925 +24512;7;-0.07050083;-0.9592844;0.27350157;0.0;0.9939419;-0.044380937;0.10054708;0.0;-0.08431499 +24512;0;-0.90278625;2.8506165;10.048004 +24512;12;0.13998535;0.1655133;0.64470834;0.73304886 +24512;3;-0.60375977;0.23672485;0.26391602 +24514;1;-0.6122215;4.090531;8.89544 +24515;0;-0.9601135;2.798355;10.195847 +24515;3;-0.61842346;0.216568;0.27490234 +24515;2;0.30652082;1.1215672;-0.8936758; +24517;12;0.13856475;0.16487443;0.6454963;0.73276925 +24517;0;-0.93621826;2.741333;10.2816925 +24517;3;-0.6257477;0.19946289;0.28771973 +24520;1;-0.61596096;4.0627475;8.907906 +24520;0;-0.9601135;2.7175903;10.315094 +24520;3;-0.6251526;0.18235779;0.29933167 +24525;4;19.84253;-18.89038;-53.546143 +24525;6;-1.852234;-0.25654346;0.0928111 +24525;7;-0.29913247;-0.9292175;0.21696664;0.0;0.94999135;-0.26864746;0.159201;0.0;-0.08964483 +24525;0;-0.9696655;2.6368103;10.353241 +24525;3;-0.6178131;0.16708374;0.31155396 +24527;12;0.13727967;0.1640185;0.6458051;0.7329311 +24527;1;-0.61787516;4.0349445;8.920402 +24527;0;-0.9648895;2.6510773;10.415237 +24529;3;-0.6019287;0.15486145;0.32255554 +24529;0;-0.9648895;2.6130676;10.467697 +24529;12;0.1359421;0.16319284;0.64665365;0.7326165 +24530;1;-0.61832803;4.008517;8.932277 +24530;3;-0.5762787;0.14509583;0.33354187 +24531;0;-0.9553375;2.584549;10.486786 +24531;3;-0.5445099;0.13838196;0.3463745 +24531;4;17.74292;-16.641235;-52.946472 +24531;6;-1.8152388;-0.24068356;0.09084841 +24531;7;-0.262;-0.9423045;0.2083702;0.0;0.96103734;-0.23503943;0.14547698;0.0;-0.08810841 +24532;0;-0.95054626;2.5893097;10.510635 +24532;12;0.13470732;0.1623645;0.64751935;0.73226386 +24532;3;-0.5066376;0.13531494;0.35920715 +24534;1;-0.61776567;3.9848688;8.94289 +24534;2;0.380993;1.3424978;-1.4775991; +24534;0;-0.93621826;2.6130676;10.553543 +24534;3;-0.46264648;0.13653564;0.3726349 +24536;12;0.13361536;0.16160367;0.6483977;0.7318549 +24537;0;-0.93621826;2.5940552;10.596466 +24537;3;-0.416214;0.14387512;0.38607788 +24537;5;999.5968 +24538;0;-0.87890625;2.5940552;10.596466 +24538;1;-0.61683524;3.9649653;8.951797 +24539;3;-0.3643036;0.15242004;0.39891052 +24541;4;19.84253;-17.541504;-53.996277 +24541;6;-1.8201344;-0.23929164;0.08275391 +24541;7;-0.2649038;-0.9414633;0.20850179;0.0;0.9609252;-0.23973137;0.1383895;0.0;-0.0803042 +24543;12;0.13302687;0.16067845;0.64768755;0.7327941 +24543;0;-0.89323425;2.641571;10.529694 +24543;3;-0.31115723;0.16464233;0.41235352 +24543;1;-0.61620975;3.9495962;8.9586315 +24543;0;-0.87890625;2.6700745;10.491547 +24543;3;-0.25556946;0.18235779;0.4270172 +24546;12;0.13225874;0.1602375;0.6485902;0.7322311 +24546;0;-0.87890625;2.7556;10.405701 +24546;3;-0.19447327;0.20007324;0.4386139 +24549;0;-0.826355;2.7793427;10.3293915 +24550;1;-0.6164696;3.939314;8.9631405 +24550;3;-0.1376648;0.21839905;0.45022583 +24551;4;19.543457;-17.840576;-52.3468 +24551;6;-1.7837685;-0.26204678;0.07983033 +24551;7;-0.23088469;-0.9440401;0.2355432;0.0;0.9699278;-0.2041502;0.13252552;0.0;-0.0770232 +24551;0;-0.7929077;2.8743744;10.253082 +24551;12;0.13165693;0.16002503;0.64950573;0.7315742 +24551;3;-0.08207703;0.24038696;0.4618225 +24557;1;-0.61787504;3.9342566;8.965265 +24557;12;0.13121638;0.16005781;0.65042776;0.73082656 +24557;2;0.28511924;1.2063727;-1.4573689; +24558;1;-0.6205506;3.934094;8.965151 +24559;0;-0.7833557;2.9503784;10.186325 +24559;3;-0.027709961;0.25993347;0.47221375 +24559;0;-0.73558044;3.0026398;10.08139 +24559;3;0.022979736;0.27949524;0.48136902 +24559;0;-0.70692444;3.0834198;9.971695 +24559;3;0.06941223;0.29782104;0.4899292 +24560;4;19.993591;-16.340637;-53.697205 +24560;6;-1.534325;-0.29918465;0.0707747 +24560;7;0.015543049;-0.9549417;0.2963863;0.0;0.9975933;0.03484348;0.05994828;0.0;-0.06757424 +24564;0;-0.68304443;3.1261597;9.814301 +24564;3;0.1078949;0.31307983;0.494812 +24564;12;0.13131924;0.15998888;0.64949715;0.7316505 +24564;0;-0.6925812;3.2544403;9.714157 +24564;1;-0.62442946;3.9381518;8.9631 +24564;3;0.1408844;0.32469177;0.5009308 +24564;0;-0.65914917;3.3399658;9.623535 +24565;3;0.16653442;0.33140564;0.5058136 +24565;12;0.1311453;0.16046971;0.65042776;0.730749 +24567;0;-0.6257019;3.425476;9.504303 +24567;1;-0.62899643;3.945335;8.959621 +24567;3;0.18730164;0.33506775;0.5094757 +24569;4;18.94226;-17.840576;-53.097534 +24569;6;-1.4697119;-0.34523216;0.06573868 +24569;7;0.07857698;-0.93619347;0.34258947;0.0;0.9949898;0.094958276;0.03127949;0.0;-0.06181535 +24569;0;-0.6113739;3.5394897;9.399368 +24569;3;0.19769287;0.33569336;0.51252747 +24570;12;0.13106735;0.16109662;0.6513571;0.7297967 +24571;0;-0.5540619;3.639267;9.21814 +24572;1;-0.63363385;3.9545505;8.95523 +24572;2;0.06928688;0.6593833;-0.7103195; +24572;3;0.20501709;0.33018494;0.5161896 +24574;0;-0.5636139;3.7247925;9.098923 +24574;12;0.13106406;0.16180514;0.65228385;0.7288121 +24574;3;0.20501709;0.32225037;0.5180359 +24575;5;999.59094 +24576;0;-0.5445099;3.8150635;8.951065 +24576;1;-0.63770145;3.9646585;8.950471 +24577;3;0.20013428;0.31185913;0.5192566 +24579;4;18.792725;-16.940308;-51.74713 +24579;6;-1.2563637;-0.40223223;0.060756985 +24579;7;0.28610152;-0.8750744;0.39037243;0.0;0.9565689;0.2845933;-0.06310762;0.0;-0.055873547 +24579;0;-0.5015106;3.872055;8.908142 +24579;3;0.190979;0.29782104;0.5198517 +24580;12;0.1314664;0.16222654;0.65158904;0.7292675 +24581;0;-0.49671936;3.9718475;8.779373 +24581;1;-0.64070165;3.974631;8.945833 +24582;3;0.17692566;0.28375244;0.5210724 +24583;0;-0.4202881;4.024109;8.703064 +24584;12;0.13154553;0.16289994;0.6525165;0.7282731 +24584;3;0.15982056;0.27093506;0.52230835 +24586;0;-0.38685608;4.0811005;8.621979 +24586;1;-0.64233655;3.9837444;8.94166 +24586;3;0.1396637;0.25871277;0.521698 +24590;4;18.792725;-16.940308;-51.74713 +24590;6;-1.1611747;-0.4417018;0.04483852 +24590;7;0.3802861;-0.8292369;0.40957135;0.0;0.9239809;0.3600393;-0.12896214;0.0;-0.04052159 +24590;0;-0.35820007;4.223633;8.54567 +24590;3;0.12010193;0.24710083;0.521698 +24590;12;0.13163418;0.16349201;0.65345323;0.72728384 +24592;0;-0.36297607;4.2711487;8.459839 +24592;2;-0.14468741;-0.0010881424;0.18030453; +24592;1;-0.642829;3.991461;8.938184 +24592;3;0.09689331;0.2336731;0.5204773 +24594;12;0.13170382;0.16398574;0.65438867;0.72631836 +24595;0;-0.3438568;4.313904;8.378754 +24595;3;0.0761261;0.21961975;0.5198517 +24596;0;-0.29130554;4.366165;8.326294 +24596;1;-0.642149;3.9975383;8.935516 +24596;3;0.053527832;0.20617676;0.518631 +24598;4;19.543457;-17.541504;-52.046204 +24598;6;-1.1040688;-0.4827115;0.034971952 +24598;7;0.435197;-0.79100573;0.4300157;0.0;0.89980245;0.39855295;-0.17751363;0.0;-0.030969728 +24598;0;-0.2722168;4.3851776;8.297668 +24598;3;0.029083252;0.19213867;0.5155792 +24599;12;0.13207291;0.16409996;0.65386623;0.72669595 +24601;0;-0.24832153;4.4516907;8.269058 +24601;3;0.007095337;0.17930603;0.5131378 +24602;0;-0.22921753;4.503952;8.283371 +24603;3;-0.013061523;0.16952515;0.50886536 +24605;0;-0.24354553;4.522949;8.226135 +24605;3;-0.03564453;0.15670776;0.5045929 +24605;1;-0.64025843;4.001763;8.93376 +24605;1;-0.63738644;4.004193;8.932878 +24606;12;0.13208629;0.16436887;0.65481;0.7257824 +24607;4;19.543457;-17.541504;-52.046204 +24607;6;-1.0651749;-0.50252527;0.029597668 +24607;7;0.4716692;-0.76671225;0.43552327;0.0;0.88139415;0.42447042;-0.20729037;0.0;-0.025934694 +24608;12;0.13206351;0.1645301;0.6557511;0.72489977 +24608;0;-0.19577026;4.5752106;8.254761 +24608;3;-0.06008911;0.14814758;0.49908447 +24610;0;-0.24354553;4.5847015;8.221359 +24610;1;-0.63372606;4.004753;8.932886 +24610;2;-0.33255994;-0.45509052;0.6522398; +24611;3;-0.08085632;0.14141846;0.494812 +24612;0;-0.21487427;4.603714;8.2595215 +24613;12;0.13199517;0.16458753;0.6566856;0.7240528 +24613;3;-0.101623535;0.13471985;0.4923706 +24613;5;999.59094 +24614;0;-0.21009827;4.6084595;8.269058 +24615;3;-0.121780396;0.13043213;0.48687744 +24615;1;-0.6296057;4.0034366;8.933767 +24617;4;19.543457;-18.440247;-52.796936 +24617;6;-1.0758933;-0.5083038;0.025402298 +24617;7;0.46391445;-0.7687556;0.44022506;0.0;0.88560206;0.41489947;-0.208728;0.0;-0.022188332 +24617;0;-0.18144226;4.5752106;8.302444 +24617;3;-0.1388855;0.12615967;0.48258972 +24618;12;0.13216275;0.16430898;0.6563069;0.7244286 +24619;0;-0.21009827;4.5799713;8.30722 +24619;1;-0.6252226;4.0003552;8.935455 +24620;3;-0.1547699;0.124313354;0.47831726 +24622;0;-0.21487427;4.6322327;8.326294 +24622;12;0.13198124;0.1641986;0.6572362;0.7236438 +24622;3;-0.1706543;0.12677002;0.4740448 +24624;0;-0.22442627;4.627472;8.373978 +24624;1;-0.62093484;3.9958887;8.937753 +24624;3;-0.18226624;0.124938965;0.47221375 +24626;4;19.543457;-18.440247;-52.796936 +24626;6;-1.0822673;-0.5046863;0.026794024 +24626;7;0.4577202;-0.7729342;0.4393916;0.0;0.8887869;0.41081464;-0.2031969;0.0;-0.023450702 +24627;0;-0.20533752;4.6084595;8.38353 +24627;3;-0.19264221;0.12860107;0.46794128 +24627;12;0.1317435;0.16403438;0.6581616;0.722883 +24629;0;-0.19577026;4.6084595;8.431213 +24629;1;-0.61680484;3.9902804;8.940543 +24629;2;-0.36825252;-0.6145632;0.61137104; +24629;3;-0.2024231;0.13165283;0.46426392 +24631;0;-0.20054626;4.5847015;8.455063 +24632;12;0.13145669;0.16383235;0.6590859;0.72213846 +24632;3;-0.20791626;0.13897705;0.46121216 +24634;0;-0.20533752;4.594223;8.507523 +24634;1;-0.6132035;3.9838233;8.94367 +24634;3;-0.21524048;0.14631653;0.45755005 +24636;4;19.093323;-17.990112;-54.896545 +24636;6;-1.0386251;-0.4950262;0.024131311 +24636;7;0.49738035;-0.7582649;0.42148218;0.0;0.8672728;0.44649464;-0.22018306;0.0;-0.02123244 +24636;0;-0.18144226;4.5657043;8.569519 +24637;3;-0.22013855;0.15548706;0.455719 +24637;12;0.13151528;0.1632879;0.65822613;0.7230348 +24638;0;-0.22921753;4.5514526;8.6362915 +24639;1;-0.61040753;3.9767025;8.94703 +24639;3;-0.22380066;0.16464233;0.45266724 +24641;0;-0.21009827;4.5514526;8.6458435 +24641;12;0.13112493;0.1630798;0.65914714;0.7223132 +24642;3;-0.22380066;0.17440796;0.44900513 +24643;0;-0.22921753;4.513443;8.664902 +24644;1;-0.60855997;3.9692445;8.950467 +24644;3;-0.22502136;0.18418884;0.44534302 +24646;4;19.093323;-17.990112;-54.896545 +24646;6;-1.0713419;-0.48007473;0.026447395 +24646;7;0.4680579;-0.77861285;0.41795182;0.0;0.88338643;0.42480674;-0.197908;0.0;-0.02345506 +24646;0;-0.25309753;4.5086975;8.755524 +24646;3;-0.22563171;0.19151306;0.44166565 +24647;12;0.13068849;0.16289379;0.6600656;0.7215952 +24648;0;-0.27697754;4.4897003;8.76506 +24648;1;-0.6077172;3.9616034;8.953909 +24649;2;-0.34423566;-0.58470845;0.3322096; +24649;3;-0.22319031;0.19824219;0.4386139 +24651;0;-0.28652954;4.480179;8.812759 +24651;12;0.13021359;0.16273798;0.66097677;0.7208818 +24651;3;-0.21891785;0.2043457;0.43678284 +24652;5;999.59094 +24653;0;-0.3104248;4.4611816;8.884293 +24653;1;-0.60762644;3.9540002;8.957275 +24653;3;-0.21463013;0.20985413;0.43495178 +24655;4;19.093323;-18.29071;-52.6474 +24655;6;-1.1580564;-0.46511558;0.03492665 +24655;7;0.386529;-0.8187156;0.42461762;0.0;0.92174906;0.35850954;-0.14781621;0.0;-0.031210035 +24656;0;-0.3343048;4.413666;8.941528 +24656;3;-0.21096802;0.21290588;0.43312073 +24656;12;0.12999694;0.16237536;0.6606021;0.72134596 +24658;0;-0.3343048;4.3994293;8.941528 +24658;1;-0.60809934;3.9466736;8.960474 +24658;3;-0.20791626;0.21534729;0.42945862 +24661;0;-0.36297607;4.389923;8.970154 +24661;12;0.12949315;0.16227905;0.66149914;0.7206359 +24662;3;-0.2024231;0.21473694;0.4300537 +24662;0;-0.32476807;4.3376617;9.017838 +24662;1;-0.6088319;3.9396427;8.963518 +24663;3;-0.19447327;0.21595764;0.42823792 +24665;4;19.392395;-17.390442;-54.14734 +24665;6;-1.1370951;-0.44808662;0.035998404 +24666;7;0.40581095;-0.8178343;0.40800062;0.0;0.91338116;0.3787459;-0.14928575;0.0;-0.032437548 +24666;0;-0.3199768;4.313904;9.036911 +24666;3;-0.1889801;0.21534729;0.4276123 +24667;12;0.12899491;0.16219798;0.6623811;0.71993303 +24669;1;-0.6096318;3.9329946;8.966382 +24669;0;-0.3343048;4.280655;9.065521 +24669;3;-0.185318;0.21473694;0.4270172 +24669;2;-0.2443816;-0.45430374;0.011348724; +24671;12;0.12850924;0.16213632;0.66326547;0.71921915 +24671;0;-0.3056488;4.3043976;9.103683 +24671;3;-0.17675781;0.21412659;0.4270172 +24673;0;-0.3343048;4.2711487;9.146606 +24673;1;-0.61039084;3.926805;8.969044 +24673;3;-0.1694336;0.21412659;0.4263916 +24675;4;19.543457;-19.79065;-52.796936 +24675;6;-1.3109576;-0.43661657;0.036533337 +24676;7;0.24182622;-0.8757681;0.417792;0.0;0.9697548;0.23282206;-0.07327569;0.0;-0.033098694 +24676;0;-0.3056488;4.223633;9.170456 +24676;3;-0.15783691;0.21351624;0.4257965 +24676;12;0.1280453;0.16208544;0.66412956;0.7185156 +24680;1;-0.6111089;3.9212246;8.971436 +24680;0;-0.26742554;4.1476135;9.199066 +24680;3;-0.14988708;0.21534729;0.4263916 +24682;12;0.127607;0.1620564;0.6649935;0.71780074 +24682;0;-0.25787354;4.176132;9.251541 +24683;3;-0.14195251;0.21412659;0.4270172 +24683;1;-0.611823;3.9163575;8.973513 +24683;0;-0.25309753;4.166626;9.280151 +24683;3;-0.13461304;0.21595764;0.4263916 +24684;4;18.94226;-17.240906;-53.097534 +24684;6;-1.2292892;-0.4218686;0.027266236 +24684;7;0.32426456;-0.85963947;0.3948068;0.0;0.94563943;0.3055447;-0.111393824;0.0;-0.0248726 +24691;1;-0.61263764;3.9120765;8.975325 +24691;2;-0.29983652;-0.2823286;-0.24000263; +24691;12;0.12719692;0.16205493;0.6658513;0.71707827 +24691;12;0.12680656;0.16207795;0.66670257;0.71635085 +24693;17;1;38dead6d7725;8851;2889;-71; +24694;17;1;38dead6d60ff;10573;479;-64; +24694;17;1;1c1bb5efa29a;4304;526;-56; +24695;17;1;1c1bb5ecd182;1266;856;-62; +24695;1;-0.61349076;3.9083052;8.976909 +24695;0;-0.24354553;4.133362;9.280151 +24695;3;-0.12666321;0.21839905;0.4257965 +24695;0;-0.22921753;4.1048584;9.323074 +24695;3;-0.11994934;0.2177887;0.4276123 +24695;12;0.12682286;0.16180708;0.66579616;0.7172517 +24697;1;-0.61427927;3.9050028;8.9782915 +24697;0;-0.20533752;4.0716095;9.313538 +24698;3;-0.113845825;0.2202301;0.4270172 +24700;12;0.12647164;0.16187009;0.6666413;0.71651405 +24700;5;999.59094 +24701;0;-0.22921753;4.0383606;9.370773 +24701;3;-0.1083374;0.21961975;0.4263916 +24701;4;18.94226;-17.541504;-54.296875 +24701;6;-1.2654554;-0.40679318;0.024456022 +24701;7;0.29130054;-0.87591356;0.38460287;0.0;0.95636785;0.2760862;-0.095586486;0.0;-0.022458034 +24701;0;-0.171875;4.000351;9.361221 +24702;3;-0.10101318;0.21839905;0.428833 +24702;0;-0.16233826;4.024109;9.389847 +24702;1;-0.6149128;3.902213;8.979462 +24702;3;-0.09552002;0.21534729;0.42823792 +24702;0;-0.20533752;4.009842;9.361221 +24702;3;-0.089416504;0.21351624;0.4270172 +24702;0;-0.18144226;3.9860992;9.394608 +24702;3;-0.08268738;0.21046448;0.4245758 +24704;4;19.392395;-18.740845;-54.14734 +24704;6;-1.3542286;-0.4012076;0.019311046 +24704;7;0.20747381;-0.89908576;0.38548598;0.0;0.9780791;0.1978153;-0.065042265;0.0;-0.017776452 +24704;0;-0.20054626;3.9575806;9.385086 +24705;12;0.12614623;0.16194275;0.66747975;0.7157741 +24705;3;-0.07597351;0.20617676;0.4257965 +24706;0;-0.19577026;3.938568;9.375534 +24706;1;-0.6153417;3.8999276;8.980425 +24706;2;-0.38448358;-0.10699153;-0.38453865; +24707;3;-0.06741333;0.20007324;0.4257965 +24709;12;0.12585035;0.16202477;0.66830647;0.71503586 +24709;0;-0.18144226;3.9195862;9.399368 +24709;3;-0.05947876;0.19519043;0.4257965 +24714;1;-0.61529714;3.8982735;8.981146 +24714;0;-0.20533752;3.8910675;9.394608 +24714;3;-0.049087524;0.18969727;0.4251709 +24714;4;19.692993;-18.740845;-53.697205 +24714;6;-1.3898057;-0.39258686;0.021853477 +24714;7;0.1717377;-0.908831;0.38017416;0.0;0.9849359;0.1663099;-0.04735469;0.0;-0.020189311 +24714;0;-0.16233826;3.8863068;9.399368 +24714;12;0.12585258;0.16190675;0.66797495;0.7153718 +24714;3;-0.041152954;0.18418884;0.4251709 +24715;0;-0.171875;3.862564;9.370773 +24716;1;-0.6147742;3.8973775;8.98157 +24716;3;-0.033203125;0.17747498;0.42333984 +24718;0;-0.171875;3.8245544;9.361221 +24718;12;0.12564646;0.1620035;0.668782;0.71463174 +24718;3;-0.019760132;0.17137146;0.4215088 +24721;0;-0.15278625;3.8340607;9.318314 +24721;1;-0.6137606;3.8972442;8.981698 +24721;3;-0.0087890625;0.16586304;0.41906738 +24722;4;18.94226;-18.440247;-53.097534 +24722;6;-1.3921133;-0.3902943;0.016394872 +24722;7;0.17157179;-0.91007304;0.37726668;0.0;0.98505485;0.1643676;-0.051478464;0.0;-0.015161251 +24722;0;-0.15278625;3.8388062;9.323074 +24723;3;0.0034332275;0.16098022;0.41906738 +24723;12;0.12549219;0.16210921;0.6695726;0.7138942 +24725;0;-0.10499573;3.8150635;9.294464 +24725;1;-0.6122883;3.8981423;8.981408 +24725;2;-0.41389072;0.035678387;-0.37239647; +24725;3;0.017486572;0.15426636;0.41662598 +24727;12;0.12539516;0.16223434;0.6703493;0.71315354 +24728;0;-0.10978699;3.8055573;9.261063 +24728;3;0.033981323;0.14936829;0.41479492 +24728;5;999.59094 +24729;0;-0.06678772;3.7913055;9.246765 +24730;1;-0.6103302;3.9002345;8.980633 +24730;3;0.04864502;0.14753723;0.4129486 +24732;4;18.043518;-19.340515;-54.597473 +24732;6;-1.4098126;-0.38910028;0.007222695 +24732;7;0.15758058;-0.91328734;0.375599;0.0;0.98748356;0.14830779;-0.053675894;0.0;-0.0066827456 +24739;12;0.12565967;0.16214982;0.6697892;0.71365225 +24739;0;-0.019012451;3.8150635;9.213379 +24739;1;-0.60808736;3.9037235;8.979269 +24739;3;0.06452942;0.14570618;0.4111328 +24740;0;0.028747559;3.872055;9.151382 +24741;3;0.08100891;0.14631653;0.4080658 +24741;12;0.12569745;0.16234155;0.67052126;0.71291417 +24741;0;0.057418823;3.8197937;9.117996 +24741;3;0.098739624;0.14631653;0.4068451 +24741;1;-0.6058159;3.9086468;8.977281 +24742;0;0.09085083;3.843567;9.08461 +24742;3;0.115219116;0.14814758;0.40318298 +24742;4;17.892456;-17.840576;-52.796936 +24742;6;-1.3533359;-0.40023002;-0.010000188 +24742;7;0.21954432;-0.89928114;0.37827727;0.0;0.9755591;0.1987001;-0.09382324;0.0;0.009209733 +24742;0;0.114746094;3.8245544;9.022598 +24743;12;0.12579335;0.1625863;0.67123204;0.71217227 +24743;3;0.13049316;0.15060425;0.40013123 +24744;0;0.1386261;3.8340607;8.989227 +24744;1;-0.60370153;3.9150052;8.974652 +24744;2;-0.5994841;0.08582711;-0.15753555; +24744;3;0.14454651;0.15426636;0.39952087 +24747;0;0.1529541;3.8910675;8.903381 +24747;12;0.12594274;0.16289245;0.6719201;0.71142673 +24748;3;0.15553284;0.15792847;0.3952484 +24749;0;0.1720581;3.8958282;8.84137 +24749;1;-0.6018912;3.9226463;8.9714365 +24749;3;0.16714478;0.16036987;0.3921814 +24751;4;19.093323;-19.041443;-51.74713 +24751;6;-1.4088453;-0.41496998;-0.019458115 +24751;7;0.16895507;-0.90315354;0.39467427;0.0;0.9854628;0.14755893;-0.08419749;0.0;0.01780555 +24751;0;0.21984863;3.9053192;8.812759 +24751;3;0.17631531;0.16281128;0.3921814 +24752;12;0.12615035;0.16324157;0.67250705;0.71075493 +24753;0;0.21505737;3.938568;8.769836 +24754;1;-0.60032094;3.931266;8.967769 +24754;3;0.18730164;0.16525269;0.3909607 +24756;0;0.24372864;3.9480896;8.703064 +24756;12;0.12636949;0.16365367;0.6731616;0.71000123 +24757;3;0.19158936;0.16769409;0.3903656 +24758;0;0.22460938;3.9718475;8.631531 +24758;1;-0.59894395;3.9407353;8.963703 +24759;3;0.19891357;0.16830444;0.38668823 +24761;4;18.792725;-19.041443;-52.6474 +24761;6;-1.3515675;-0.43113866;-0.026016092 +24761;7;0.22801422;-0.88674617;0.40210786;0.0;0.9733709;0.19757575;-0.116244614;0.0;0.023632705 +24761;0;0.24848938;3.9575806;8.583832 +24762;3;0.20257568;0.16952515;0.38729858 +24764;12;0.12661374;0.16410564;0.6738069;0.7092409 +24764;1;-0.5976945;3.9507253;8.959389 +24764;2;-0.7827874;0.011112452;0.23984909; +24764;0;0.25328064;3.9765778;8.540909 +24764;3;0.20318604;0.17074585;0.38729858 +24765;0;0.21984863;4.000351;8.526611 +24766;12;0.1268739;0.16458291;0.67444104;0.7084806 +24766;3;0.20379639;0.17196655;0.38668823 +24767;5;999.58875 +24768;0;0.24372864;4.019348;8.435989 +24768;1;-0.5965549;3.9609082;8.9549675 +24768;3;0.20074463;0.17137146;0.3885193 +24770;4;19.093323;-20.39032;-53.396606 +24770;6;-1.3651097;-0.4444708;-0.028883494 +24770;7;0.21631001;-0.8838074;0.4148427;0.0;0.9759765;0.18439512;-0.11605296;0.0;0.0260735 +24771;0;0.24848938;4.028839;8.426437 +24771;3;0.19647217;0.17015076;0.3885193 +24771;12;0.12714812;0.1650637;0.6750316;0.7077568 +24773;0;0.24848938;4.0383606;8.416901 +24773;1;-0.59531397;3.9709284;8.950611 +24773;3;0.18730164;0.16893005;0.38729858 +24775;0;0.27236938;4.052597;8.35968 +24775;12;0.12740785;0.16554344;0.6756676;0.7069908 +24775;3;0.18119812;0.16830444;0.3885193 +24777;0;0.23893738;4.095352;8.340591 +24777;1;-0.59396195;3.9804022;8.946492 +24778;3;0.17326355;0.16525269;0.38790894 +24781;4;17.593384;-19.79065;-53.546143 +24781;6;-1.2861172;-0.4562712;-0.0286397 +24781;7;0.29284352;-0.8615707;0.41465458;0.0;0.9558146;0.252119;-0.15117586;0.0;0.02570639 +24781;0;0.24372864;4.085861;8.302444 +24781;3;0.16287231;0.16159058;0.3885193 +24782;12;0.12764889;0.16599984;0.67630607;0.7062294 +24783;0;0.21984863;4.123871;8.297668 +24783;1;-0.592394;3.9892833;8.942639 +24783;3;0.15371704;0.15975952;0.38668823 +24783;2;-0.8056496;-0.071401834;0.5584736; +24785;0;0.22460938;4.123871;8.297668 +24785;12;0.1278731;0.1664259;0.6769528;0.7054686 +24785;3;0.14393616;0.15792847;0.38729858 +24787;0;0.22460938;4.1523743;8.230911 +24787;3;0.13417053;0.15182495;0.38790894 +24788;1;-0.590654;3.99728;8.939182 +24789;4;17.74292;-18.740845;-51.446533 +24789;6;-1.2572747;-0.46707976;-0.027281748 +24790;7;0.3199799;-0.8493617;0.41975877;0.0;0.94711107;0.2753757;-0.16476826;0.0;0.024356494 +24790;0;0.21984863;4.1476135;8.230911 +24790;3;0.122543335;0.14997864;0.38668823 +24791;12;0.12838945;0.16655868;0.6762252;0.706041 +24792;0;0.20550537;4.1951294;8.230911 +24792;1;-0.5885676;4.0044913;8.936092 +24792;3;0.11155701;0.14692688;0.38607788 +24794;0;0.21028137;4.2046356;8.230911 +24795;12;0.12856933;0.16690078;0.67687726;0.70530224 +24795;3;0.10118103;0.14326477;0.38546753 +24797;0;0.20550537;4.180893;8.240448 +24797;1;-0.5862502;4.0108013;8.933414 +24797;3;0.0920105;0.14019775;0.38546753 +24799;4;18.043518;-19.641113;-52.197266 +24799;6;-1.2754595;-0.46939468;-0.024933448 +24799;7;0.3017607;-0.85322917;0.42537084;0.0;0.9531244;0.25958145;-0.15547144;0.0;0.022234399 +24799;0;0.18640137;4.2188873;8.2595215 +24800;3;0.08100891;0.13897705;0.38607788 +24800;12;0.12872013;0.16719931;0.67753726;0.70457 +24801;0;0.18640137;4.2188873;8.249985 +24802;1;-0.5837372;4.0162;8.931153 +24802;2;-0.7653382;-0.17062902;0.689353; +24802;3;0.07002258;0.13897705;0.38729858 +24804;0;0.17684937;4.256897;8.254761 +24804;12;0.12884603;0.16745445;0.6781941;0.7038541 +24804;3;0.0602417;0.13897705;0.38729858 +24806;5;999.58875 +24807;1;-0.5811782;4.02078;8.929259 +24807;0;0.1481781;4.275894;8.278595 +24807;3;0.054138184;0.13897705;0.3915863 +24809;4;17.442322;-19.641113;-52.197266 +24809;6;-1.2379488;-0.47669497;-0.017897032 +24809;7;0.33444417;-0.8397507;0.427745;0.0;0.94228137;0.29030994;-0.16681091;0.0;0.015900955 +24809;0;0.1434021;4.280655;8.2595215 +24809;3;0.04496765;0.14141846;0.3921814 +24810;12;0.1292337;0.16744433;0.67760384;0.70435375 +24813;0;0.1434021;4.275894;8.311981 +24813;1;-0.5786155;4.024672;8.927672 +24813;3;0.037643433;0.14326477;0.3934021 +24816;0;0.124298096;4.2949066;8.316757 +24816;12;0.12929758;0.16764186;0.67828953;0.7036346 +24816;3;0.029083252;0.14570618;0.3946228 +24817;1;-0.576244;4.0278606;8.926387 +24817;0;0.09085083;4.3043976;8.35968 +24817;3;0.019927979;0.14875793;0.3970642 +24819;4;18.34259;-19.940186;-52.6474 +24820;6;-1.250273;-0.4754722;-0.010867312 +24820;7;0.31976587;-0.84379655;0.43099552;0.0;0.9474473;0.28011546;-0.15452799;0.0;0.009661683 +24820;0;0.09085083;4.2854004;8.41214 +24820;3;0.011978149;0.15426636;0.40013123 +24821;12;0.12932499;0.16781959;0.6789859;0.7029153 +24824;1;-0.5741336;4.030276;8.925433 +24824;0;0.052627563;4.3329163;8.402588 +24824;2;-0.671238;-0.2661438;0.6060753; +24825;3;0.0034332275;0.15792847;0.39952087 +24825;0;0.03831482;4.366165;8.421677 +24825;12;0.12931351;0.16798235;0.67969775;0.70219016 +24826;3;-0.0038909912;0.16036987;0.40074158 +24827;0;0.04307556;4.3186646;8.450302 +24828;3;-0.013656616;0.16342163;0.40196228 +24828;1;-0.5723637;4.032019;8.92476 +24830;4;19.242859;-19.79065;-53.097534 +24830;6;-1.249446;-0.4724561;-0.005097473 +24830;7;0.31804487;-0.8448708;0.43016377;0.0;0.9480648;0.28124788;-0.14856908;0.0;0.004539042 +24830;0;0.04786682;4.370926;8.46936 +24831;12;0.12954965;0.1679015;0.67919326;0.70265394 +24832;3;-0.019760132;0.16525269;0.40257263 +24832;0;0.04786682;4.3519135;8.536133 +24832;1;-0.5707625;4.0330405;8.9244 +24832;3;-0.02709961;0.16647339;0.40196228 +24833;0;0.03831482;4.356659;8.602905 +24833;3;-0.03564453;0.16708374;0.40318298 +24834;12;0.12945987;0.16802822;0.6799287;0.70192856 +24836;0;-0.01423645;4.380417;8.583832 +24837;1;-0.5693117;4.0333867;8.924336 +24837;3;-0.045425415;0.16708374;0.40074158 +24838;4;17.593384;-19.190979;-52.046204 +24838;6;-1.2114468;-0.47186115;0.0016585178 +24838;7;0.35095918;-0.8338296;0.42609382;0.0;0.9363896;0.31323674;-0.15829489;0.0;-0.0014772806 +24838;0;-0.009475708;4.389923;8.6458435 +24839;3;-0.052139282;0.16586304;0.40318298 +24840;12;0.12933992;0.16813688;0.68067014;0.7012057 +24841;0;-0.042907715;4.3614197;8.703064 +24841;1;-0.5679145;4.032943;8.924626 +24841;2;-0.5640985;-0.33848095;0.37863445; +24841;3;-0.061920166;0.16342163;0.40196228 +24843;0;-0.095443726;4.370926;8.712601 +24844;12;0.12918594;0.16821565;0.68141675;0.7004897 +24844;3;-0.07046509;0.15975952;0.40257263 +24845;5;999.58875 +24846;0;-0.12411499;4.366165;8.73645 +24846;1;-0.5664229;4.0317163;8.925275 +24846;3;-0.07963562;0.15608215;0.40196228 +24849;4;18.792725;-19.940186;-52.6474 +24849;6;-1.2590852;-0.46341857;0.014205614 +24849;7;0.30061308;-0.85142237;0.4297811;0.0;0.9536615;0.27434132;-0.123557724;0.0;-0.012706914 +24849;0;-0.12411499;4.3329163;8.798447 +24849;3;-0.08818054;0.15182495;0.40135193 +24850;12;0.1292803;0.16804162;0.6810081;0.7009112 +24850;1;-0.56465816;4.0296516;8.926319 +24851;0;-0.147995;4.3614197;8.836609 +24851;3;-0.097961426;0.14570618;0.40013123 +24852;0;-0.16233826;4.3186646;8.874756 +24852;12;0.12908016;0.16804081;0.6817642;0.70021296 +24853;3;-0.1083374;0.13716125;0.39891052 +24855;0;-0.171875;4.347168;8.898605 +24855;3;-0.11689758;0.12860107;0.3982849 +24855;1;-0.562449;4.0267034;8.92779 +24858;4;17.292786;-20.240784;-52.796936 +24858;6;-1.2655609;-0.45434988;0.019312423 +24858;7;0.2923782;-0.8570122;0.42431694;0.0;0.95614517;0.27002916;-0.113447525;0.0;-0.017352032 +24858;0;-0.17666626;4.323395;8.946289 +24858;12;0.12886508;0.16798723;0.6825199;0.69952893 +24858;3;-0.12666321;0.11883545;0.3970642 +24859;0;-0.21966553;4.3376617;9.003525 +24860;1;-0.55956894;4.0229;8.929685 +24860;2;-0.38566923;-0.3322649;0.08472729; +24860;3;-0.13217163;0.108444214;0.39646912 +24864;0;-0.21487427;4.290146;9.013062 +24864;12;0.12864283;0.16787274;0.683274;0.6988609 +24864;3;-0.13949585;0.09805298;0.3940277 +24864;1;-0.55588573;4.0184097;8.931936 +24865;0;-0.20054626;4.3043976;9.094147 +24865;3;-0.14498901;0.083999634;0.3921814 +24867;4;18.193054;-19.491577;-53.097534 +24867;6;-1.2710893;-0.44197875;0.022048661 +24867;7;0.28615877;-0.86361367;0.41507185;0.0;0.957975;0.26686975;-0.10518801;0.0;-0.019928327 +24867;0;-0.157547;4.2711487;9.08461 +24867;3;-0.14743042;0.06996155;0.3921814 +24868;12;0.12875499;0.16744055;0.6826341;0.6995688 +24869;0;-0.143219;4.2854004;9.103683 +24869;1;-0.55104804;4.013388;8.934493 +24869;3;-0.14805603;0.057128906;0.3909607 +24871;0;-0.12411499;4.299652;9.132294 +24872;12;0.12856387;0.16720344;0.6833799;0.69893235 +24872;3;-0.14620972;0.046142578;0.3903656 +24873;0;-0.10978699;4.252136;9.170456 +24874;1;-0.54515433;4.0083213;8.937129 +24874;3;-0.1425476;0.033309937;0.3903656 +24876;4;16.54358;-19.491577;-51.597595 +24876;6;-1.3186886;-0.4341426;0.011971241 +24876;7;0.2445515;-0.87855244;0.41029292;0.0;0.9695756;0.22630477;-0.0933249;0.0;-0.010860423 +24876;0;-0.07635498;4.2711487;9.199066 +24877;3;-0.13461304;0.023529053;0.38912964 +24877;12;0.12841201;0.1669208;0.6841108;0.6983124 +24878;0;-0.047683716;4.252136;9.232452 +24879;1;-0.5382289;4.003563;8.939681 +24879;2;-0.3841771;-0.2856424;-0.1829853; +24879;3;-0.12910461;0.015594482;0.38546753 +24882;12;0.12831232;0.16661032;0.6848297;0.6977 +24891;1;-0.53062433;3.9993484;8.942022 +24896;0;-0.009475708;4.2378845;9.251541 +24896;1;-0.522868;3.996048;8.943954 +24896;12;0.12837693;0.16620477;0.6850396;0.69757885 +24896;1;-0.515215;3.9938607;8.945375 +24896;12;0.12837066;0.16591762;0.6857247;0.696975 +24897;12;0.12840407;0.16567661;0.68639207;0.69636893 +24897;3;-0.11994934;0.01008606;0.38546753 +24897;5;999.58875 +24897;0;-0.009475708;4.3186646;9.299225 +24897;3;-0.10896301;0.00642395;0.38302612 +24897;4;16.392517;-20.991516;-53.396606 +24897;6;-1.3621429;-0.4347733;0.001018978 +24897;7;0.20672263;-0.8872941;0.41228002;0.0;0.97839916;0.18787125;-0.08625255;0.0;-9.2417776E-4 +24897;0;-0.009475708;4.2711487;9.318314 +24897;3;-0.097351074;0.0070495605;0.38180542 +24897;0;0.0048675537;4.299652;9.304001 +24897;3;-0.08268738;0.0070495605;0.379364 +24897;0;0.052627563;4.266403;9.318314 +24898;17;1;38dead6d7725;12742;2069;-70; +24898;17;1;38dead6d60ff;9030;974;-68; +24899;17;1;1c1bb5efa29a;3121;1034;-62; +24899;17;1;1c1bb5ecd182;2505;2015;-62; +24900;3;-0.06985474;0.01071167;0.376297 +24900;0;0.08129883;4.2949066;9.351685 +24900;3;-0.057647705;0.014984131;0.3750763 +24900;4;16.842651;-19.190979;-53.996277 +24900;6;-1.2878553;-0.43051806;-0.008693277 +24900;7;0.28265417;-0.8726164;0.39830545;0.0;0.9591894;0.2537056;-0.12485695;0.0;0.007899913 +24900;0;0.09562683;4.252136;9.389847 +24900;3;-0.044204712;0.020477295;0.37141418 +24900;2;-0.53179085;-0.30044913;-0.3790636; +24900;1;-0.50798345;3.9927056;8.946304 +24900;0;0.1290741;4.313904;9.418457 +24900;3;-0.033203125;0.02659607;0.36897278 +24900;0;0.17684937;4.3376617;9.427994 +24900;12;0.12846641;0.1654929;0.687044;0.69575787 +24901;3;-0.022216797;0.03453064;0.36592102 +24903;0;0.1481781;4.356659;9.418457 +24903;1;-0.5013583;3.9925816;8.946733 +24903;3;-0.013656616;0.04185486;0.3610382 +24904;4;18.34259;-20.690918;-51.446533 +24905;6;-1.4310797;-0.43320742;-0.015731437 +24905;7;0.14578448;-0.8987797;0.41345143;0.0;0.98921335;0.12639801;-0.07403046;0.0;0.014277641 +24905;0;0.1720581;4.3186646;9.456619 +24905;3;-0.0063476562;0.048583984;0.3585968 +24907;12;0.12854742;0.16536815;0.687667;0.69515693 +24907;1;-0.49550346;3.9931502;8.946806 +24907;0;0.1720581;4.3376617;9.451843 +24907;3;-2.2888184E-4;0.05529785;0.35430908 +24909;0;0.17684937;4.3851776;9.451843 +24910;12;0.12862846;0.16530216;0.6882877;0.6945431 +24911;3;0.005264282;0.061401367;0.35003662 +24912;0;0.1720581;4.389923;9.48999 +24912;1;-0.49036023;3.994281;8.946584 +24912;3;0.0077209473;0.06813049;0.34576416 +24914;4;18.043518;-18.740845;-52.946472 +24914;6;-1.3097655;-0.4332072;-0.018128498 +24914;7;0.26538607;-0.87687784;0.40081862;0.0;0.96400183;0.23423655;-0.12583204;0.0;0.016452959 +24914;0;0.16729736;4.4231873;9.499542 +24914;3;0.010757446;0.07362366;0.34088135 +24915;12;0.12870628;0.16528209;0.6888939;0.6939321 +24917;0;0.1386261;4.413666;9.528137 +24917;2;-0.635324;-0.38641453;-0.5132551; +24917;1;-0.485957;3.9956822;8.946199 +24917;3;0.010757446;0.076675415;0.33537292 +24919;0;0.1386261;4.437439;9.523392 +24920;12;0.12877005;0.16529764;0.6894859;0.6933283 +24920;3;0.01260376;0.080337524;0.3292694 +24921;5;999.59216 +24922;0;0.1481781;4.456436;9.523392 +24923;1;-0.48210633;3.997177;8.94574 +24923;3;0.010757446;0.08155823;0.32499695 +24924;4;17.442322;-20.690918;-53.697205 +24924;6;-1.3606617;-0.437631;-0.015558127 +24924;7;0.21501446;-0.8858341;0.4111773;0.0;0.9765092;0.1889335;-0.10360462;0.0;0.014091333 +24924;0;0.1577301;4.503952;9.54245 +24924;3;0.00894165;0.08340454;0.32011414 +24925;12;0.1290893;0.16512199;0.6889225;0.69387066 +24926;0;0.1386261;4.5419617;9.523392 +24926;1;-0.4786107;3.9986408;8.945273 +24927;3;0.0064849854;0.08155823;0.31582642 +24929;0;0.114746094;4.5657043;9.528137 +24929;12;0.12913105;0.16516955;0.68948233;0.69329536 +24929;3;0.004043579;0.08155823;0.3109436 +24931;0;0.10041809;4.594223;9.523392 +24931;3;9.918213E-4;0.08155823;0.30667114 +24931;1;-0.4753057;3.9999418;8.944868 +24933;4;17.892456;-21.141052;-52.3468 +24933;6;-1.3770392;-0.4494588;-0.010543971 +24933;7;0.19703165;-0.8838285;0.42429423;0.0;0.9803511;0.17342372;-0.09399931;0.0;0.009496593 +24934;0;0.124298096;4.646469;9.528137 +24934;3;-8.392334E-4;0.080947876;0.30300903 +24934;12;0.12916517;0.16521372;0.6900274;0.69273597 +24936;0;0.1290741;4.7082367;9.556763 +24936;1;-0.47211504;4.001094;8.944521 +24936;2;-0.58925265;-0.568208;-0.5802841; +24937;3;-0.0032806396;0.07789612;0.29933167 +24938;0;0.10997009;4.784256;9.566299 +24938;12;0.12919219;0.16525562;0.6905625;0.6921874 +24939;3;-0.0032806396;0.07789612;0.29689026 +24941;0;0.124298096;4.8460083;9.566299 +24942;1;-0.46894115;4.002207;8.944191 +24942;3;-0.004501343;0.07911682;0.29200745 +24943;4;18.34259;-20.39032;-51.74713 +24943;6;-1.309556;-0.46885645;-0.0129926 +24943;7;0.2639287;-0.8618174;0.43314224;0.0;0.96447253;0.23040695;-0.12924916;0.0;0.0115901865 +24943;0;0.1529541;4.879257;9.590164 +24943;3;-0.0038909912;0.08218384;0.28956604 +24944;12;0.1292484;0.16527013;0.69096756;0.6917691 +24945;0;0.1481781;4.950531;9.623535 +24945;1;-0.4659886;4.0033402;8.943837 +24946;3;-0.0020599365;0.0864563;0.2889557 +24948;0;0.1386261;5.007553;9.633072 +24948;12;0.12927218;0.16531487;0.6914756;0.6912462 +24948;3;-0.001449585;0.09561157;0.28712463 +24950;0;0.1386261;5.059799;9.685532 +24951;3;-0.001449585;0.10600281;0.28590393 +24951;1;-0.4635515;4.004659;8.943374 +24953;4;18.94226;-19.491577;-50.846863 +24953;6;-1.2683249;-0.48137084;-0.014311722 +24953;7;0.30417517;-0.84612316;0.4376679;0.0;0.9525317;0.26402962;-0.1515645;0.0;0.012684919 +24953;0;0.08607483;5.0835724;9.733231 +24953;3;-8.392334E-4;0.121276855;0.28590393 +24953;12;0.12928256;0.1653843;0.69198036;0.69072235 +24955;0;0.066970825;5.0835724;9.737991 +24955;1;-0.4622018;4.0060034;8.942842 +24955;2;-0.5703018;-0.9697287;-0.6923113; +24956;3;-0.0032806396;0.13838196;0.28590393 +24958;0;0.03352356;5.131073;9.761841 +24958;12;0.12925412;0.16549483;0.6924875;0.6901927 +24958;3;-0.0063476562;0.15548706;0.28346252 +24959;5;999.59216 +24961;0;-0.01423645;5.1595764;9.78093 +24961;1;-0.46238306;4.0072265;8.942284 +24961;3;-0.013656616;0.17442322;0.28527832 +24965;12;0.12952852;0.16536546;0.6914474;0.6912144 +24965;4;17.442322;-19.340515;-53.396606 +24965;6;-1.1477033;-0.48541528;0.0014555304 +24965;7;0.409963;-0.8064908;0.42603183;0.0;0.9121014;0.36315274;-0.19024052;0.0;-0.0012873891 +24965;0;-0.06678772;5.188095;9.828613 +24965;3;-0.020385742;0.19520569;0.28712463 +24967;1;-0.4642935;4.0079465;8.941862 +24967;0;-0.143219;5.2165833;9.8572235 +24967;3;-0.029541016;0.21170044;0.28771973 +24970;12;0.12935086;0.16557425;0.69198215;0.69066226 +24970;0;-0.19577026;5.2023315;9.89061 +24970;3;-0.038711548;0.22756958;0.28649902 +24970;1;-0.46782273;4.0079126;8.941694 +24971;0;-0.26264954;5.2070923;9.895386 +24971;3;-0.052139282;0.23979187;0.28712463 +24975;12;0.12908244;0.16581553;0.69253457;0.6901006 +24975;4;18.34259;-19.940186;-52.946472 +24975;6;-1.1677414;-0.4842533;0.026536396 +24975;7;0.3807296;-0.81410336;0.43849832;0.0;0.9243883;0.3471328;-0.15813051;0.0;-0.023482561 +24975;0;-0.39640808;5.2355957;9.928772 +24975;3;-0.065582275;0.24835205;0.28712463 +24975;2;-0.26940224;-1.205688;-0.90893936; +24975;1;-0.4726489;4.006834;8.941924 +24975;0;-0.48718262;5.2355957;9.923996 +24975;3;-0.08329773;0.2526245;0.28649902 +24978;0;-0.5874939;5.2450867;9.928772 +24978;12;0.12872693;0.16606158;0.6931026;0.68953735 +24978;3;-0.09552002;0.2526245;0.28649902 +24981;0;-0.6639252;5.2070923;9.952621 +24981;1;-0.47807014;4.0044327;8.942711 +24981;3;-0.11140442;0.246521;0.28405762 +24983;4;16.392517;-21.290588;-52.197266 +24983;6;-1.1520809;-0.48111415;0.06660988 +24983;7;0.3775444;-0.80989873;0.4489147;0.0;0.92410976;0.36043137;-0.12692733;0.0;-0.059004664 +24983;0;-0.7785797;5.1690826;9.986008 +24983;3;-0.12788391;0.23857117;0.27980042 +24983;12;0.1283099;0.16626374;0.69363445;0.68903136 +24984;1;-0.48335105;4.000626;8.94413 +24985;0;-0.816803;5.1263123;10.019394 +24985;3;-0.14683533;0.23124695;0.27612305 +24987;0;-0.835907;5.1120605;10.019394 +24988;12;0.12783983;0.16640873;0.69421583;0.688498 +24988;3;-0.16331482;0.22024536;0.2755127 +24991;1;-0.48809972;3.9952254;8.946287 +24991;0;-0.874115;5.059799;10.038467 +24992;3;-0.17982483;0.20558167;0.2730713 +24993;4;18.193054;-21.141052;-52.796936 +24993;6;-1.1902589;-0.46535885;0.086857446 +24993;7;0.3338763;-0.8297327;0.44729203;0.0;0.93942356;0.33192298;-0.08550103;0.0;-0.077523515 +24993;0;-0.9601135;4.998047;10.057541 +24993;3;-0.19692993;0.18849182;0.2718506 +24994;12;0.12733033;0.16646744;0.6947956;0.68799317 +24994;1;-0.49186167;3.988256;8.94919 +24994;2;0.34008473;-1.1352682;-1.0549183; +24995;0;-1.0413208;4.9362793;10.095703 +24995;3;-0.21218872;0.17016602;0.26879883 +24997;0;-1.0795288;4.850769;10.095703 +24997;12;0.1268022;0.16642234;0.69537395;0.68751717 +24997;3;-0.22868347;0.1506195;0.26391602 +24999;5;999.59216 +24999;0;-1.1034241;4.793747;10.148163 +24999;1;-0.49429044;3.9797437;8.952845 +25000;3;-0.24273682;0.13227844;0.26023865 +25002;4;17.292786;-19.79065;-53.546143 +25002;6;-1.120804;-0.43903977;0.10830594 +25002;7;0.39103648;-0.815052;0.42752883;0.0;0.91515976;0.3937073;-0.08647121;0.0;-0.09784268 +25002;0;-1.1368561;4.7462463;10.200623 +25003;3;-0.25556946;0.11212158;0.2571869 +25003;12;0.12661462;0.16599461;0.6945003;0.68853754 +25004;1;-0.49528652;3.969853;8.95718 +25004;0;-1.1320801;4.6987305;10.210159 +25004;3;-0.26472473;0.09013367;0.25413513 +25006;0;-1.1655273;4.65123;10.272156 +25007;12;0.12609231;0.16572228;0.6950585;0.6881356 +25007;3;-0.2696228;0.07119751;0.25169373 +25008;1;-0.49464726;3.9589658;8.962032 +25009;0;-1.1607513;4.5752106;10.315094 +25009;3;-0.27450562;0.050430298;0.25047302 +25013;4;17.442322;-20.690918;-54.597473 +25014;6;-1.2495996;-0.41514623;0.11205799 +25014;7;0.27092764;-0.8682597;0.41559973;0.0;0.95714563;0.28888568;-0.020426847;0.0;-0.10232503 +25014;0;-1.1750793;4.556198;10.353241 +25014;3;-0.2732849;0.032714844;0.247406 +25014;1;-0.49242973;3.9477384;8.967106 +25014;12;0.12559818;0.16534603;0.6956055;0.6877637 +25014;2;0.65960574;-0.74015045;-1.2706022; +25014;0;-1.1559601;4.494446;10.372314 +25014;3;-0.2714386;0.01499939;0.2461853 +25015;0;-1.1129761;4.456436;10.420013 +25016;12;0.12515639;0.16489315;0.6961337;0.68741846 +25016;3;-0.26533508;-0.003326416;0.2437439 +25017;1;-0.48870754;3.9366167;8.972198 +25018;0;-1.1177521;4.404175;10.45816 +25018;3;-0.25679016;-0.016159058;0.24008179 +25022;4;17.892456;-19.79065;-52.046204 +25022;6;-1.372127;-0.3965551;0.106474265 +25022;7;0.15600735;-0.90425354;0.39747608;0.0;0.9828797;0.18204881;0.028383672;0.0;-0.09802608 +25022;0;-1.0174255;4.342407;10.472473 +25022;3;-0.24639893;-0.02897644;0.23825073 +25022;12;0.12503368;0.1641877;0.69555724;0.6881927 +25022;0;-1.0317688;4.2616425;10.477234 +25022;1;-0.4837868;3.9260628;8.977087 +25023;3;-0.22807312;-0.038146973;0.23518372 +25024;0;-0.9601135;4.2426453;10.505859 +25025;12;0.12472537;0.16365768;0.69604313;0.68788356 +25025;3;-0.20852661;-0.04547119;0.23092651 +25027;0;-0.90278625;4.252136;10.529694 +25027;1;-0.4780599;3.9168594;8.981413 +25027;3;-0.18714905;-0.051574707;0.2266388 +25029;4;16.992188;-21.290588;-52.197266 +25029;6;-1.5545738;-0.38252822;0.08552802 +25029;7;-0.015719134;-0.92760175;0.37323955;0.0;0.99673074;0.015049407;0.07937959;0.0;-0.07924969 +25029;0;-0.86935425;4.1951294;10.515396 +25030;3;-0.16209412;-0.05279541;0.22358704 +25030;12;0.124503486;0.16314957;0.69650054;0.68758136 +25031;0;-0.7881317;4.1618805;10.496323 +25032;1;-0.4719329;3.9094527;8.984963 +25033;3;-0.13522339;-0.051574707;0.22236633 +25033;2;0.5173478;-0.39659405;-1.4915533; +25034;0;-0.71170044;4.166626;10.510635 +25034;12;0.124369755;0.16269486;0.69692534;0.6872828 +25034;3;-0.105895996;-0.046691895;0.21931458 +25038;5;999.59216 +25038;0;-0.6687012;4.1476135;10.467697 +25038;1;-0.465868;3.9043498;8.987498 +25039;3;-0.07536316;-0.04058838;0.21382141 +25039;4;17.442322;-21.290588;-52.946472 +25039;6;-1.5679582;-0.37655511;0.06379567 +25039;7;-0.020610614;-0.92993313;0.36715055;0.0;0.9980282;0.0026392024;0.062710665;0.0;-0.05928571 +25041;12;0.12432261;0.16233115;0.6973117;0.6869854 +25041;0;-0.6257019;4.090622;10.486786 +25041;3;-0.045425415;-0.031417847;0.21260071 +25042;0;-0.5874939;4.0811005;10.477234 +25042;1;-0.46042395;3.9017496;8.988908 +25042;3;-0.017318726;-0.019195557;0.20892334 +25044;0;-0.5110626;4.052597;10.45816 +25044;12;0.12434772;0.16208994;0.6976784;0.6866655 +25045;3;0.013214111;-0.007598877;0.20587158 +25046;0;-0.44418335;4.043091;10.434326 +25046;1;-0.4559175;3.9016216;8.989193 +25046;3;0.041305542;0.0052337646;0.20159912 +25048;4;17.892456;-20.541382;-53.996277 +25048;6;-1.5326358;-0.36936188;0.042543747 +25048;7;0.02277338;-0.931879;0.36205378;0.0;0.99895364;0.03557825;0.028739031;0.0;-0.03966254 +25048;0;-0.41552734;4.0145874;10.391388 +25049;3;0.06512451;0.021102905;0.19976807 +25049;12;0.12443142;0.16198173;0.6980201;0.6863284 +25051;0;-0.36775208;3.9765778;10.367554 +25051;1;-0.45258358;3.9038265;8.988404 +25051;2;0.103100896;-0.18333602;-1.4533739; +25051;3;0.09017944;0.0345459;0.19732666 +25053;0;-0.3295288;3.9670868;10.310318 +25053;12;0.12455993;0.16200851;0.69833785;0.68597555 +25053;3;0.10972595;0.044311523;0.19425964 +25056;0;-0.3199768;3.952835;10.300781 +25056;1;-0.45039335;3.9080188;8.986692 +25059;3;0.12805176;0.056533813;0.19181824 +25064;12;0.12472426;0.16215244;0.69861704;0.6856272 +25064;1;-0.44921353;3.913634;8.984307 +25064;4;16.693115;-21.290588;-52.946472 +25064;6;-1.6200211;-0.36625087;0.031053368 +25064;7;-0.060286652;-0.93254554;0.3559835;0.0;0.99776;-0.045941435;0.048623398;0.0;-0.02898914 +25064;0;-0.2960968;3.9100647;10.262619 +25064;3;0.1408844;0.06692505;0.19059753 +25064;0;-0.2960968;3.8768158;10.210159 +25064;3;0.15187073;0.07546997;0.19059753 +25064;0;-0.24832153;3.8007965;10.176773 +25064;12;0.124899626;0.16239242;0.6989028;0.6852472 +25065;3;0.16104126;0.08401489;0.18937683 +25065;1;-0.44874284;3.9201286;8.981499 +25066;0;-0.20533752;3.8293152;10.1577 +25066;3;0.17019653;0.08769226;0.18815613 +25068;4;17.593384;-21.141052;-52.3468 +25068;6;-1.6431806;-0.36044365;0.02021221 +25068;7;-0.07941574;-0.93329006;0.35023233;0.0;0.9966621;-0.06767371;0.045659557;0.0;-0.018912094 +25068;0;-0.21009827;3.7817993;10.062302 +25068;3;0.17326355;0.09196472;0.18632507 +25068;12;0.12508199;0.16269705;0.69918364;0.6848551 +25070;0;-0.19099426;3.7675476;10.014618 +25070;1;-0.44872075;3.9272714;8.978379 +25070;2;-0.17319521;0.052116156;-1.2015944; +25070;3;0.1750946;0.09257507;0.18510437 +25072;0;-0.18144226;3.7437897;9.976471 +25072;12;0.1252713;0.16304341;0.699457;0.68445885 +25073;3;0.18058777;0.09440613;0.18388367 +25074;5;999.60516 +25075;0;-0.17666626;3.6487732;9.981247 +25075;1;-0.44887438;3.9345975;8.975163 +25075;3;0.17997742;0.096847534;0.18388367 +25077;4;17.292786;-19.190979;-51.14746 +25077;6;-1.5929976;-0.35042095;0.01769797 +25077;7;-0.02826969;-0.93899685;0.342762;0.0;0.9994622;-0.020850295;0.025312392;0.0;-0.016621567 +25077;0;-0.18621826;3.6440125;9.923996 +25078;3;0.17570496;0.09806824;0.18144226 +25078;12;0.12574072;0.16318107;0.6985231;0.6852932 +25080;0;-0.19099426;3.5965118;9.89061 +25080;1;-0.44924408;3.9419043;8.971938 +25080;3;0.17814636;0.09867859;0.18327332 +25082;0;-0.20054626;3.5680084;9.8619995 +25083;3;0.17692566;0.09989929;0.18327332 +25083;12;0.12592046;0.16354807;0.6987917;0.6848988 +25084;0;-0.21009827;3.5347595;9.852463 +25085;1;-0.4496863;3.9490275;8.968783 +25085;3;0.17631531;0.1005249;0.18205261 +25088;4;16.992188;-22.340393;-52.946472 +25088;6;-1.7598319;-0.34439325;0.02132121 +25088;7;-0.19493881;-0.92451245;0.32752958;0.0;0.98061013;-0.17687763;0.08436919;0.0;-0.020067718 +25088;0;-0.22442627;3.4967346;9.804764 +25088;3;0.17326355;0.1035614;0.18083191 +25088;12;0.12609103;0.16391039;0.69905865;0.68450826 +25090;17;1;38dead6d7725;10003;1957;-69; +25090;17;1;38dead6d60ff;8216;2296;-68; +25091;17;1;1c1bb5efa29a;952;4736;-64; +25091;17;1;1c1bb5ecd182;3848;1180;-64; +25091;0;-0.25787354;3.5062408;9.752304 +25092;2;-0.23413342;0.3509903;-0.908597; +25092;3;0.17326355;0.1023407;0.18144226 +25092;1;-0.45033327;3.9560935;8.965636 +25092;0;-0.2722168;3.434967;9.714157 +25092;12;0.12625167;0.16427879;0.69932735;0.6841157 +25092;3;0.17326355;0.101119995;0.18083191 +25094;0;-0.28652954;3.3969727;9.70462 +25094;1;-0.4510117;3.9629629;8.962568 +25094;3;0.17692566;0.101119995;0.18022156 +25096;4;16.693115;-21.290588;-52.946472 +25096;6;-1.7317387;-0.33657163;0.02951649 +25096;7;-0.1697992;-0.93169427;0.32111377;0.0;0.9850849;-0.1512573;0.0820303;0.0;-0.027856348 +25096;0;-0.34864807;3.3637238;9.661682 +25096;3;0.17936707;0.101745605;0.17900085 +25097;12;0.12643161;0.16461766;0.6994765;0.68384856 +25098;0;-0.3534088;3.3067017;9.59491 +25099;1;-0.45179713;3.969965;8.959429 +25099;3;0.18424988;0.101119995;0.17778015 +25101;0;-0.36775208;3.3019562;9.580612 +25102;12;0.12658755;0.1649857;0.69973886;0.68346244 +25102;3;0.19158936;0.101745605;0.17778015 +25103;0;-0.39640808;3.2734528;9.537689 +25104;1;-0.45265388;3.9773428;8.956113 +25104;3;0.19891357;0.101745605;0.17654419 +25108;4;17.292786;-21.141052;-52.796936 +25108;6;-1.7449324;-0.3303503;0.04153837 +25108;7;-0.18637435;-0.9316231;0.31199843;0.0;0.98169327;-0.16388917;0.09705019;0.0;-0.03928104 +25108;0;-0.40596008;3.2259216;9.523392 +25108;3;0.2086792;0.1023407;0.17532349 +25108;12;0.1267553;0.16536996;0.69999415;0.6830769 +25109;0;-0.46806335;3.2211914;9.456619 +25109;3;0.21846008;0.101745605;0.17410278 +25109;2;-0.078969866;0.659045;-0.6388407; +25109;1;-0.45364147;3.9853365;8.952509 +25112;0;-0.46806335;3.2259216;9.40892 +25112;12;0.12694469;0.16578421;0.70023966;0.6826896 +25112;3;0.23068237;0.101119995;0.17227173 +25114;5;999.60516 +25114;0;-0.5253906;3.1546783;9.356461 +25114;3;0.2441101;0.09989929;0.17044067 +25115;1;-0.4547336;3.9942033;8.948501 +25117;4;17.74292;-21.290588;-53.396606 +25117;6;-1.7621292;-0.32471952;0.056093805 +25117;7;-0.20742902;-0.9304455;0.3020667;0.0;0.9768059;-0.18022947;0.11561751;0.0;-0.053134482 +25117;0;-0.5110626;3.1261597;9.294464 +25117;3;0.2599945;0.09989929;0.16983032 +25117;12;0.12727097;0.16614799;0.7000243;0.6827614 +25118;0;-0.5253906;3.135666;9.265839 +25118;1;-0.45584428;4.0041947;8.943978 +25118;3;0.2734375;0.097457886;0.16921997 +25122;0;-0.5349426;3.0976562;9.132294 +25123;12;0.12753594;0.16664106;0.7002399;0.6823705 +25123;3;0.2917633;0.09440613;0.16860962 +25123;0;-0.5779419;3.102417;9.065521 +25125;3;0.30947876;0.09074402;0.17044067 +25125;1;-0.45686302;4.0155077;8.938852 +25125;4;16.842651;-21.141052;-52.046204 +25126;6;-1.7805188;-0.32910776;0.06366549 +25126;7;-0.22787878;-0.92559576;0.30223122;0.0;0.9718262;-0.19701515;0.12937835;0.0;-0.060207937 +25126;0;-0.5922699;3.0644073;9.017838 +25127;3;0.32841492;0.08708191;0.16921997 +25129;12;0.12785505;0.16718137;0.7004392;0.68197393 +25129;0;-0.5874939;3.0644073;8.989227 +25129;2;0.095199525;0.8985691;-0.25387478; +25129;3;0.34674072;0.0846405;0.16983032 +25130;1;-0.4576069;4.0283513;8.933034 +25131;0;-0.59706116;3.0549011;8.908142 +25131;3;0.36689758;0.0846405;0.17044067 +25131;12;0.12824483;0.16777088;0.7006228;0.68156725 +25133;0;-0.5540619;3.0358887;8.865219 +25133;3;0.38278198;0.0846405;0.17166138 +25133;1;-0.45813712;4.042812;8.926471 +25137;4;17.442322;-21.740723;-52.946472 +25137;6;-1.7891642;-0.32933542;0.0624172 +25137;7;-0.23590907;-0.9237861;0.30160603;0.0;0.96998096;-0.2049939;0.13082227;0.0;-0.0590244 +25137;0;-0.5827179;3.012146;8.774612 +25137;3;0.39866638;0.08769226;0.17349243 +25137;12;0.1287476;0.16838175;0.7006111;0.6813338 +25137;0;-0.5827179;3.0501556;8.698288 +25137;1;-0.4586926;4.058743;8.91921 +25138;3;0.41455078;0.088912964;0.17654419 +25140;0;-0.5874939;3.0501556;8.598129 +25140;12;0.12926286;0.16908914;0.70076776;0.6808998 +25140;3;0.43043518;0.09135437;0.1783905 +25143;0;-0.5827179;3.0358887;8.526611 +25143;1;-0.45932278;4.0760965;8.911261 +25143;3;0.44448853;0.09501648;0.18327332 +25145;4;17.892456;-21.141052;-51.597595 +25145;6;-1.7286963;-0.34131765;0.06823499 +25145;7;-0.17941737;-0.93059176;0.3190744;0.0;0.9816728;-0.14817396;0.119845726;0.0;-0.06424893 +25145;0;-0.5636139;3.045395;8.450302 +25146;3;0.45793152;0.09623718;0.18876648 +25146;12;0.1298267;0.16985591;0.7009198;0.68044513 +25147;0;-0.5445099;3.0644073;8.38353 +25147;2;0.12725297;1.044879;0.2555933; +25147;1;-0.45996672;4.0947375;8.902678 +25147;3;0.46891785;0.09867859;0.19425964 +25149;0;-0.5397186;3.0929108;8.38353 +25150;12;0.13043524;0.17067885;0.7010746;0.6799632 +25150;3;0.4805298;0.1005249;0.20037842 +25152;0;-0.48239136;3.1166687;8.38353 +25152;1;-0.4604738;4.114572;8.893502 +25152;3;0.487854;0.105407715;0.20465088 +25153;5;999.60516 +25154;4;17.892456;-20.541382;-53.546143 +25154;6;-1.5910332;-0.35538843;0.057476986 +25154;7;-0.040186338;-0.9373194;0.3461464;0.0;0.9977397;-0.018970989;0.064462975;0.0;-0.053855665 +25154;0;-0.47763062;3.135666;8.33107 +25155;3;0.49395752;0.11151123;0.2107544 +25155;12;0.13145952;0.17125905;0.6997472;0.68098646 +25157;0;-0.45851135;3.1831818;8.273819 +25157;1;-0.46106553;4.1350493;8.883968 +25157;3;0.49580383;0.117630005;0.21504211 +25159;12;0.13213053;0.1721645;0.69992363;0.6804468 +25159;0;-0.48239136;3.1974335;8.2070465 +25159;3;0.5000763;0.12310791;0.22358704 +25163;1;-0.46192232;4.1559305;8.874174 +25163;0;-0.46328735;3.2211914;8.14505 +25163;3;0.49824524;0.12922668;0.22970581 +25164;4;16.992188;-21.740723;-52.946472 +25164;6;-1.6033077;-0.37605038;0.056818396 +25164;7;-0.053297553;-0.9296309;0.3646174;0.0;0.9971808;-0.030234294;0.06867628;0.0;-0.052819636 +25164;0;-0.45851135;3.2116852;8.08783 +25164;3;0.49702454;0.1335144;0.23947144 +25164;12;0.13280047;0.17309962;0.70011824;0.67987865 +25166;0;-0.45851135;3.2164307;8.044907 +25166;1;-0.4628985;4.1768446;8.8643 +25166;2;0.027730048;1.0003223;0.6350479; +25167;3;0.49273682;0.13839722;0.24803162 +25168;0;-0.4298401;3.2401886;8.025818 +25168;12;0.13345927;0.17404765;0.7003401;0.6792789 +25169;3;0.4866333;0.14450073;0.25779724 +25173;1;-0.46386328;4.1976466;8.854417 +25173;0;-0.42507935;3.29245;7.992447 +25173;3;0.47807312;0.1506195;0.2657318 +25174;4;16.842651;-20.541382;-51.597595 +25174;6;-1.5037614;-0.39026415;0.05313507 +25174;7;0.04673074;-0.9227315;0.3826002;0.0;0.99769926;0.06194803;0.027543573;0.0;-0.049116645 +25174;0;-0.44418335;3.3161926;7.9542847 +25174;3;0.46525574;0.153656;0.27490234 +25174;12;0.13447607;0.1747107;0.69913566;0.6801483 +25175;0;-0.45373535;3.368454;7.939972 +25175;1;-0.4649275;4.217672;8.84484 +25176;3;0.4512024;0.15855408;0.28468323 +25178;0;-0.46328735;3.4064636;7.9208984 +25178;12;0.13508195;0.17564376;0.69943047;0.6794845 +25178;3;0.4377594;0.16221619;0.29200745 +25180;0;-0.44895935;3.4207153;7.8684235 +25180;1;-0.465955;4.236663;8.835705 +25181;3;0.4200592;0.16404724;0.29994202 +25183;4;16.693115;-21.740723;-52.946472 +25183;6;-1.4626691;-0.4094973;0.05699656 +25183;7;0.08519299;-0.91196394;0.40132782;0.0;0.99499327;0.09899415;0.01373601;0.0;-0.052255847 +25183;0;-0.45851135;3.4064636;7.811203 +25183;3;0.39805603;0.16526794;0.3097229 +25183;12;0.13563955;0.1765407;0.69976705;0.67879415 +25185;0;-0.5110626;3.4539795;7.782593 +25185;1;-0.46684697;4.2542267;8.827214 +25185;2;5.6925416E-4;0.88744783;0.91770554; +25185;3;0.3748474;0.16282654;0.31887817 +25188;12;0.13613963;0.17738445;0.7001445;0.67808443 +25188;0;-0.5206146;3.4824982;7.7921295 +25188;3;0.3528595;0.16282654;0.326828 +25191;9;2AEC2AEBC4E1;-67;-2147483648 +25194;1;-0.46732616;4.2699766;8.819581 +25194;12;0.13685697;0.1779291;0.69949865;0.6784638 +25194;0;-0.5301666;3.5014954;7.7539673 +25194;3;0.3271942;0.16160583;0.33537292 +25194;5;999.60516 +25194;4;17.593384;-22.190857;-51.597595 +25194;6;-1.4709691;-0.42328864;0.068267345 +25194;7;0.071549065;-0.90720373;0.41456234;0.0;0.9954961;0.09086569;0.027033007;0.0;-0.06219394 +25194;0;-0.5349426;3.5632477;7.7587433 +25194;3;0.29971313;0.15916443;0.34454346 +25195;0;-0.5349426;3.591751;7.7253723 +25195;1;-0.4673377;4.2837358;8.812906 +25195;3;0.2722168;0.15855408;0.35186768 +25197;0;-0.5827179;3.6535187;7.730133 +25197;12;0.13723071;0.17860155;0.69996977;0.6777253 +25197;3;0.2416687;0.15487671;0.36164856 +25200;0;-0.5636139;3.6297607;7.7205963 +25200;1;-0.4668844;4.2952137;8.807342 +25200;3;0.21296692;0.14938354;0.36958313 +25202;4;18.193054;-22.790527;-50.846863 +25202;6;-1.4702697;-0.43845314;0.07287208 +25202;7;0.06933745;-0.90083843;0.4285818;0.0;0.9954128;0.09086458;0.029947408;0.0;-0.06592069 +25202;0;-0.59706116;3.6772919;7.7253723 +25202;3;0.18363953;0.14205933;0.376297 +25203;12;0.13752604;0.17916922;0.70048994;0.6769778 +25204;0;-0.5874939;3.6962738;7.76828 +25204;1;-0.46564025;4.3042774;8.802981 +25204;2;0.10429183;0.7014632;1.058485; +25205;3;0.15127563;0.1365509;0.38363647 +25206;0;-0.59706116;3.7437897;7.815979 +25207;12;0.13775241;0.17961647;0.70105666;0.67622614 +25207;3;0.119506836;0.13105774;0.38912964 +25209;0;-0.6161499;3.8150635;7.8779755 +25209;1;-0.46361068;4.3107595;8.799916 +25209;3;0.08834839;0.13044739;0.3952484 +25211;4;15.942383;-24.591064;-53.546143 +25211;6;-1.4346871;-0.4497892;0.07805282 +25211;7;0.10168878;-0.8922101;0.4400234;0.0;0.99233496;0.122193545;0.01843761;0.0;-0.070218235 +25212;0;-0.65437317;3.8483124;7.906601 +25212;3;0.058410645;0.12861633;0.40196228 +25212;12;0.1379205;0.17992489;0.70160395;0.67554194 +25214;0;-0.64004517;3.9433289;7.9208984 +25214;1;-0.46119112;4.3147464;8.798089 +25214;3;0.029708862;0.12556458;0.4074707 +25216;0;-0.6782532;3.9670868;7.944748 +25217;12;0.13798808;0.18013611;0.7022574;0.6747925 +25217;3;0.0034332275;0.12188721;0.4111328 +25218;0;-0.68782043;3.9243164;7.9208984 +25219;1;-0.45833313;4.3164134;8.797421 +25219;3;-0.022827148;0.117004395;0.41601562 +25221;4;16.693115;-24.290466;-51.446533 +25221;6;-1.4448241;-0.45849916;0.08661888 +25221;7;0.087181866;-0.8896122;0.44831845;0.0;0.9931674;0.112663016;0.030425273;0.0;-0.07757561 +25222;0;-0.69737244;3.8863068;7.978134 +25222;3;-0.04725647;0.10662842;0.4141693 +25223;12;0.13797364;0.1802376;0.70295465;0.674042 +25223;0;-0.64482117;3.9480896;8.068741 +25224;2;0.21123779;0.4278798;0.8710346; +25224;3;-0.07168579;0.097457886;0.4092865 +25224;1;-0.45487553;4.315817;8.797893 +25226;0;-0.6495819;3.9813385;8.14505 +25226;12;0.13789998;0.18022789;0.70367044;0.67331237 +25227;3;-0.09674072;0.089523315;0.4056244 +25228;0;-0.7021332;4.0811005;8.2118225 +25229;1;-0.4507458;4.3131523;8.799412 +25229;3;-0.11933899;0.08769226;0.40379333 +25229;5;999.60516 +25231;4;17.442322;-23.091125;-50.9964 +25231;6;-1.3802937;-0.45977768;0.08529527 +25231;7;0.15154417;-0.879939;0.45026836;0.0;0.9854977;0.16968842;-6.878376E-5;0.0;-0.0763448 +25231;0;-0.71647644;4.1048584;8.30722 +25231;3;-0.14195251;0.08769226;0.4044037 +25231;12;0.13780797;0.1800847;0.7042687;0.67274374 +25233;0;-0.76901245;4.1286316;8.350128 +25233;1;-0.4465618;4.3085494;8.80188 +25233;3;-0.16394043;0.09013367;0.4044037 +25235;0;-0.816803;4.109619;8.38829 +25236;12;0.13761203;0.1798834;0.70500195;0.6720694 +25236;3;-0.18226624;0.09074402;0.4044037 +25238;1;-0.44262812;4.302044;8.805261 +25238;0;-0.850235;4.0336;8.464584 +25238;3;-0.20181274;0.09257507;0.40501404 +25240;4;16.842651;-21.440125;-51.14746 +25240;6;-1.3065374;-0.44274706;0.100110374 +25240;7;0.21855462;-0.8722116;0.43758506;0.0;0.97163707;0.23600923;-0.014867477;0.0;-0.090306535 +25241;0;-0.859787;3.9908295;8.512299 +25241;3;-0.2219696;0.09501648;0.40379333 +25241;12;0.13733351;0.17960939;0.70575505;0.67140883 +25243;0;-0.883667;3.9908295;8.588608 +25243;1;-0.43890095;4.293739;8.8095 +25243;2;0.35714424;0.23776913;0.44087887; +25243;3;-0.24273682;0.097457886;0.40623474 +25245;0;-0.9696655;3.9813385;8.703064 +25245;12;0.13698028;0.17927289;0.70652544;0.6707604 +25245;3;-0.26228333;0.097457886;0.4056244 +25248;1;-0.43545532;4.283621;8.814594 +25248;0;-0.99354553;3.9908295;8.750748 +25248;3;-0.2824402;0.097457886;0.4074707 +25250;4;15.942383;-23.240662;-52.046204 +25250;6;-1.478938;-0.42546576;0.11305422 +25250;7;0.044776723;-0.9070065;0.4187295;0.0;0.9936984;0.083551265;0.07471884;0.0;-0.10275584 +25250;0;-0.99354553;3.9908295;8.874756 +25251;3;-0.300766;0.09989929;0.4080658 +25251;12;0.1368157;0.17866553;0.7063139;0.67117876 +25252;0;-1.0174255;3.9908295;8.927231 +25252;1;-0.43206248;4.271773;8.820509 +25253;3;-0.3215332;0.101745605;0.41357422 +25254;0;-1.0460968;3.9718475;8.979691 +25255;12;0.13631825;0.17819822;0.70712495;0.6705498 +25255;3;-0.3374176;0.101119995;0.41845703 +25257;0;-1.1129761;3.8958282;9.022598 +25257;1;-0.42874214;4.258229;8.827218 +25257;3;-0.353302;0.101745605;0.4215088 +25259;4;16.693115;-23.390198;-52.946472 +25259;6;-1.5703893;-0.40486318;0.12273426 +25259;7;-0.04781892;-0.9191562;0.39097977;0.0;0.99249715;3.74116E-4;0.122267224;0.0;-0.11252896 +25260;0;-1.0652008;3.8768158;9.051224 +25261;12;0.13575138;0.17766492;0.70796585;0.6699188 +25261;3;-0.3679657;0.09806824;0.42211914 +25262;0;-1.0365448;3.796051;9.14183 +25262;1;-0.42522985;4.243223;8.834611 +25262;2;0.6208023;0.30385494;-0.09476662; +25263;3;-0.3814087;0.08830261;0.41967773 +25264;0;-1.0222168;3.8103027;9.170456 +25265;12;0.13513637;0.17706755;0.708829;0.66928834 +25265;3;-0.39300537;0.07913208;0.4129486 +25266;0;-0.9792175;3.772293;9.227692 +25267;1;-0.42110553;4.2269845;8.842589 +25267;3;-0.4046173;0.069366455;0.40501404 +25267;5;999.59174 +25269;4;16.693115;-23.390198;-52.946472 +25269;6;-1.6772679;-0.3861135;0.10572162 +25269;7;-0.14519177;-0.9211338;0.36115345;0.0;0.9845624;-0.09844681;0.14472428;0.0;-0.09775602 +25269;0;-0.89323425;3.7865448;9.289688 +25269;3;-0.4119568;0.05836487;0.3934021 +25270;12;0.13462582;0.17630185;0.7092266;0.66917205 +25271;0;-0.864563;3.753296;9.294464 +25271;1;-0.41635495;4.2097516;8.85103 +25272;3;-0.4156189;0.049819946;0.38363647 +25274;0;-0.8072357;3.7200317;9.370773 +25274;12;0.1339876;0.17556348;0.71006197;0.6686082 +25274;3;-0.4168396;0.040649414;0.3726349 +25276;0;-0.7499237;3.6677704;9.43277 +25276;1;-0.4111391;4.1920056;8.859694 +25276;3;-0.4156189;0.033325195;0.3622589 +25278;4;16.242981;-21.141052;-52.3468 +25278;6;-1.602975;-0.36977977;0.07933509 +25278;7;-0.060699586;-0.9319242;0.357537;0.0;0.995417;-0.029998498;0.09080201;0.0;-0.07389502 +25279;0;-0.72125244;3.682022;9.46138 +25279;3;-0.40950012;0.025985718;0.35064697 +25280;12;0.13335894;0.17478195;0.71086097;0.6680894 +25281;0;-0.68304443;3.6202698;9.4852295 +25282;1;-0.4056313;4.1742916;8.868307 +25282;2;0.45215654;0.44665956;-0.47195148; +25282;3;-0.4033966;0.018661499;0.33842468 +25283;0;-0.63049316;3.5822601;9.509079 +25284;12;0.13275275;0.17398344;0.71161854;0.66761184 +25284;3;-0.39117432;0.0113220215;0.326828 +25286;0;-0.63049316;3.5727692;9.523392 +25286;1;-0.3999186;4.157077;8.876648 +25286;3;-0.37528992;0.006439209;0.31643677 +25288;4;16.242981;-21.141052;-52.3468 +25288;6;-1.657755;-0.35818994;0.06610821 +25288;7;-0.10973118;-0.9329941;0.3427548;0.0;0.9920339;-0.08133702;0.096191466;0.0;-0.06186743 +25288;0;-0.6018219;3.548996;9.561539 +25289;3;-0.36003113;-2.746582E-4;0.30482483 +25290;9;2AEC2AEBC4E1;-68;-2147483648 +25291;12;0.13254958;0.17290792;0.71090615;0.6686898 +25291;0;-0.5158386;3.5680084;9.532913 +25291;1;-0.3940357;4.1409497;8.884446 +25291;3;-0.34048462;-0.006378174;0.2938385 +25295;0;-0.45851135;3.5537567;9.566299 +25295;3;-0.31726074;-0.009429932;0.28346252 +25295;12;0.13204113;0.17214902;0.71156734;0.6682828 +25296;0;-0.41552734;3.515747;9.604462 +25296;1;-0.38802665;4.1264863;8.891438 +25296;3;-0.29344177;-0.011260986;0.27246094 +25298;4;16.842651;-22.190857;-52.046204 +25298;6;-1.7560341;-0.3506025;0.043237027 +25298;7;-0.1985999;-0.9230991;0.32931143;0.0;0.9792396;-0.17297585;0.105684236;0.0;-0.040594094 +25298;0;-0.3438568;3.525238;9.623535 +25298;3;-0.2677765;-0.011871338;0.2645111 +25299;12;0.13160872;0.17144538;0.7121698;0.6679071 +25301;1;-0.3821388;4.1140065;8.897473 +25301;0;-0.3104248;3.5109863;9.628311 +25301;2;0.12408307;0.5676384;-0.67085457; +25301;3;-0.24090576;-0.013092041;0.2559662 +25303;0;-0.23876953;3.5347595;9.642624 +25303;12;0.13125525;0.17082223;0.7127189;0.6675505 +25303;3;-0.21279907;-0.011871338;0.24803162 +25305;0;-0.171875;3.5774994;9.623535 +25305;1;-0.37639713;4.1038294;8.902416 +25305;3;-0.18409729;-0.00881958;0.23947144 +25306;5;999.59174 +25308;4;16.842651;-22.190857;-52.046204 +25308;6;-1.7306854;-0.3558617;0.017857961 +25308;7;-0.1653252;-0.92539066;0.3410565;0.0;0.98609704;-0.14923362;0.073088385;0.0;-0.016738212 +25309;0;-0.11933899;3.548996;9.628311 +25313;3;-0.15660095;-0.0039367676;0.23092651 +25313;12;0.13107416;0.1702268;0.7128833;0.6675626 +25313;1;-0.3711092;4.096053;8.9062195 +25313;0;-0.057235718;3.5822601;9.599686 +25313;3;-0.12728882;0.0033874512;0.22358704 +25313;0;-0.009475708;3.6012573;9.585388 +25313;12;0.13088675;0.16980913;0.7133355;0.6672227 +25313;3;-0.10040283;0.010101318;0.21504211 +25316;0;-0.01423645;3.606018;9.556763 +25316;3;-0.073532104;0.017440796;0.20770264 +25316;1;-0.3666042;4.090721;8.908856 +25321;2;-0.28699702;0.5014677;-0.6689358; +25321;12;0.1307642;0.16951476;0.713743;0.6668857 +25322;1;-0.36296287;4.087692;8.910395 +25322;4;17.292786;-21.440125;-51.597595 +25322;6;-1.6769847;-0.36080825;0.0014896719 +25322;7;-0.10651174;-0.9303418;0.35088378;0.0;0.9943105;-0.099164486;0.03889857;0.0;-0.001393754 +25322;0;0.03831482;3.6202698;9.528137 +25322;3;-0.04786682;0.025985718;0.19793701 +25322;0;0.10041809;3.639267;9.466141 +25322;3;-0.025268555;0.032104492;0.19303894 +25322;0;0.09085083;3.6582794;9.43277 +25323;3;-0.0032806396;0.04309082;0.18693542 +25323;12;0.1307004;0.16934134;0.7141069;0.6665526 +25324;0;0.10517883;3.7152863;9.404144 +25325;1;-0.36021745;4.086718;8.910953 +25325;3;0.01626587;0.051651;0.17900085 +25326;9;52ADB5BC186F;-91;-2147483648 +25327;4;17.292786;-21.440125;-51.597595 +25327;6;-1.6297759;-0.376227;-0.01118384 +25327;7;-0.054839823;-0.9284403;0.36741138;0.0;0.9984409;-0.054822594;0.0104918415;0.0;0.010401398 +25327;0;0.119506836;3.796051;9.389847 +25327;3;0.029083252;0.062026978;0.17105103 +25328;12;0.13094057;0.1690794;0.7134158;0.66731155 +25329;0;0.1625061;3.8103027;9.323074 +25329;1;-0.35853052;4.087455;8.910684 +25329;3;0.041305542;0.07241821;0.16555786 +25331;0;0.1625061;3.8197937;9.256302 +25332;3;0.049865723;0.085250854;0.1612854 +25332;12;0.13095085;0.16912144;0.71371126;0.6669828 +25334;0;0.1625061;3.862564;9.156143 +25334;1;-0.3579778;4.0892606;8.909877 +25334;3;0.054748535;0.096847534;0.15577698 +25336;4;16.693115;-21.290588;-51.446533 +25336;6;-1.5561101;-0.39914733;-0.01774645 +25336;7;0.02157914;-0.9212934;0.38826913;0.0;0.99963343;0.013531303;-0.023450054;0.0;0.016350592 +25336;0;0.1625061;3.9148254;9.094147 +25336;3;0.05596924;0.10662842;0.15089417 +25337;12;0.13096175;0.1692473;0.71398455;0.66665626 +25338;0;0.16729736;3.9195862;9.017838 +25338;1;-0.35859266;4.0916233;8.908768 +25339;2;-0.48469153;0.28298473;-0.35148335; +25339;3;0.054138184;0.1164093;0.1466217 +25341;0;0.16729736;3.9480896;8.941528 +25342;12;0.13094996;0.1694338;0.71424395;0.66633326 +25342;3;0.051086426;0.12373352;0.14294434 +25343;0;0.1529541;4.0145874;8.893829 +25343;1;-0.36015677;4.093994;8.907615 +25344;3;0.043136597;0.13105774;0.14112854 +25344;5;999.59174 +25346;4;15.942383;-22.491455;-52.3468 +25346;6;-1.5163643;-0.42395395;-0.017196083 +25346;7;0.06146021;-0.9101196;0.4097621;0.0;0.99798644;0.04958865;-0.03954698;0.0;0.015672933 +25346;0;0.1434021;4.028839;8.779373 +25346;3;0.035812378;0.1341095;0.13746643 +25347;12;0.13096303;0.1696086;0.7142658;0.6662628 +25348;1;-0.3624087;4.0959597;8.90662 +25349;0;0.10041809;4.0716095;8.726913 +25349;3;0.029708862;0.1377716;0.13317871 +25350;0;0.1290741;4.095352;8.6458435 +25351;12;0.13087833;0.16983463;0.7145161;0.6659534 +25351;3;0.02053833;0.1377716;0.13195801 +25353;0;0.08607483;4.095352;8.574295 +25353;1;-0.36502707;4.0974317;8.905836 +25353;3;0.009536743;0.13717651;0.1270752 +25354;13;69.27199 +25355;4;16.693115;-23.390198;-51.74713 +25355;6;-1.5057039;-0.44557354;-0.010038369 +25355;7;0.06936025;-0.9004527;0.4293881;0.0;0.9975506;0.058695573;-0.038048964;0.0;0.009058108 +25356;0;0.08129883;4.1476135;8.531357 +25356;3;-0.001449585;0.1328888;0.122177124 +25356;12;0.13076264;0.17005152;0.714762;0.66565686 +25357;0;0.057418823;4.166626;8.445526 +25358;1;-0.36773345;4.09813;8.905403 +25358;2;-0.4683094;0.030313015;0.212183; +25358;3;-0.013656616;0.12556458;0.11790466 +25361;0;0.071746826;4.190384;8.397842 +25361;3;-0.025268555;0.1182251;0.11546326 +25361;12;0.13061967;0.17023604;0.71500164;0.66538024 +25363;0;0.07652283;4.209381;8.397842 +25363;1;-0.37002453;4.097916;8.905407 +25363;3;-0.036865234;0.109069824;0.109954834 +25365;4;16.242981;-21.440125;-53.996277 +25365;6;-1.2826153;-0.46462688;-0.009111948 +25365;7;0.2881115;-0.85712296;0.4270037;0.0;0.95756227;0.25407943;-0.1360817;0.0;0.008145867 +25365;0;0.07652283;4.233139;8.38353 +25365;3;-0.04786682;0.09989929;0.106918335 +25366;12;0.13082345;0.17008038;0.7138044;0.6666642 +25367;1;-0.3717473;4.096793;8.905852 +25368;0;0.071746826;4.290146;8.350128 +25368;3;-0.05886841;0.09135437;0.10140991 +25370;0;0.03831482;4.2854004;8.30722 +25370;12;0.13065797;0.17014953;0.714028;0.66643953 +25370;3;-0.06985474;0.0834198;0.0977478 +25373;1;-0.3729822;4.09479;8.906722 +25373;0;-0.0046844482;4.280655;8.30722 +25373;3;-0.07841492;0.07424927;0.09225464 +25376;12;0.13048428;0.17015876;0.714239;0.66624516 +25377;4;15.193176;-23.840332;-52.046204 +25377;6;-1.3976717;-0.4758072;5.6390074E-4 +25377;7;0.1720066;-0.875635;0.45130584;0.0;0.9850957;0.15312688;-0.07834976;0.0;-5.0126447E-4 +25377;0;0.028747559;4.3329163;8.302444 +25377;3;-0.08634949;0.0663147;0.08859253 +25377;0;0.023986816;4.323395;8.335815 +25377;1;-0.37365362;4.092051;8.907951 +25377;2;-0.40854445;-0.1739955;0.55974674; +25377;3;-0.09429932;0.05897522;0.08430481 +25379;0;0.0048675537;4.375656;8.321533 +25380;12;0.130309;0.17011403;0.714437;0.66607857 +25380;3;-0.10101318;0.054092407;0.08003235 +25382;0;0.03831482;4.3851776;8.321533 +25382;1;-0.37390798;4.088709;8.909475 +25382;3;-0.1071167;0.050430298;0.07392883 +25383;5;999.59174 +25384;4;16.693115;-21.290588;-54.14734 +25384;6;-1.2110784;-0.48498377;-0.004604266 +25384;7;0.35401562;-0.8280595;0.43473047;0.0;0.9352307;0.3114173;-0.1684129;0.0;0.004073299 +25384;0;0.04307556;4.375656;8.335815 +25384;3;-0.11323547;0.04675293;0.07086182 +25385;12;0.13049117;0.16974333;0.71320015;0.6674616 +25386;0;0.03831482;4.3946686;8.340591 +25387;1;-0.37398925;4.0848145;8.911258 +25387;3;-0.11933899;0.04248047;0.066589355 +25389;0;-0.0046844482;4.404175;8.340591 +25389;12;0.13030341;0.16962464;0.71337366;0.66734296 +25389;3;-0.1242218;0.040039062;0.0647583 +25391;0;0.0048675537;4.3994293;8.335815 +25391;1;-0.37394977;4.0804377;8.913265 +25392;3;-0.12788391;0.038208008;0.06048584 +25394;4;16.992188;-22.340393;-51.74713 +25394;6;-1.3183385;-0.48561928;-5.8393244E-4 +25394;7;0.25004852;-0.8563523;0.45181477;0.0;0.9682332;0.22090606;-0.11715392;0.0;5.164217E-4 +25394;0;-0.019012451;4.404175;8.354904 +25395;3;-0.13154602;0.036376953;0.058044434 +25395;12;0.13010626;0.16947734;0.7135385;0.6672426 +25396;9;2AEC2AEBC4E1;-64;-2147483648 +25397;0;0.009643555;4.4279175;8.35968 +25397;1;-0.37387463;4.07572;8.915426 +25397;2;-0.3764258;-0.31940365;0.57675934; +25397;3;-0.13461304;0.03515625;0.055603027 +25398;0;0.009643555;4.4089203;8.38829 +25399;12;0.12990156;0.16931197;0.7136951;0.66715693 +25399;3;-0.13705444;0.03515625;0.051940918 +25401;0;-0.009475708;4.4516907;8.402588 +25402;1;-0.37381017;4.0707297;8.917709 +25402;3;-0.1388855;0.036987305;0.050094604 +25403;4;16.242981;-22.491455;-51.14746 +25403;6;-1.3239166;-0.4872021;0.0011277125 +25403;7;0.24386743;-0.8568537;0.4542361;0.0;0.969808;0.21594502;-0.113313995;0.0;-9.964986E-4 +25404;0;0.014419556;4.4611816;8.407364 +25404;3;-0.14195251;0.038208008;0.0476532 +25404;12;0.12969227;0.16913357;0.7138334;0.66709495 +25405;0;7.6293945E-5;4.480179;8.421677 +25406;1;-0.37393707;4.0655756;8.920054 +25406;3;-0.14376831;0.040039062;0.04460144 +25408;0;-0.01423645;4.470688;8.478897 +25408;12;0.1294664;0.16895519;0.71397734;0.66703 +25409;3;-0.14683533;0.040039062;0.043380737 +25411;1;-0.3742917;4.0601797;8.922497 +25411;0;-0.009475708;4.4991913;8.502762 +25411;3;-0.14865112;0.041870117;0.042770386 +25413;4;16.242981;-21.440125;-52.046204 +25413;6;-1.2487669;-0.4866903;0.0011144266 +25413;7;0.31599763;-0.83844954;0.44401327;0.0;0.9487593;0.27974296;-0.14696717;0.0;-9.850254E-4 +25413;0;-0.047683716;4.465927;8.526611 +25413;3;-0.15293884;0.044311523;0.043380737 +25414;12;0.1292249;0.16877359;0.71411616;0.66697425 +25415;0;-0.057235718;4.503952;8.559982 +25415;1;-0.37485215;4.0545216;8.925046 +25415;2;-0.34975678;-0.41390562;0.46480656; +25416;3;-0.1559906;0.04675293;0.042160034 +25417;0;-0.052444458;4.480179;8.531357 +25418;12;0.12896807;0.16858838;0.71425647;0.6669206 +25418;3;-0.15965271;0.049209595;0.04460144 +25421;0;-0.07635498;4.503952;8.564758 +25421;1;-0.37563378;4.0485744;8.927712 +25421;3;-0.16331482;0.051651;0.042770386 +25422;5;999.59216 +25423;4;16.392517;-22.340393;-53.697205 +25423;6;-1.250102;-0.48411262;0.008914782 +25423;7;0.3112755;-0.8399636;0.44448692;0.0;0.95028687;0.27900246;-0.1382473;0.0;-0.0078902645 +25423;0;-0.042907715;4.522949;8.574295 +25424;12;0.12893742;0.1682083;0.7134186;0.66791844 +25424;3;-0.16638184;0.053482056;0.041549683 +25425;0;-0.06678772;4.546707;8.6362915 +25425;1;-0.37662166;4.0423465;8.930492 +25425;3;-0.17126465;0.053482056;0.041549683 +25428;0;-0.06678772;4.5419617;8.6362915 +25428;3;-0.17616272;0.05531311;0.039108276 +25428;12;0.12864168;0.168016;0.7135656;0.6678668 +25429;0;-0.08111572;4.5752106;8.65538 +25430;1;-0.3777496;4.0357456;8.93343 +25430;3;-0.18226624;0.056533813;0.03666687 +25434;12;0.128328;0.16781262;0.7137136;0.6678202 +25434;4;16.693115;-22.04132;-52.946472 +25434;6;-1.2529933;-0.4862447;0.009371436 +25434;7;0.30830666;-0.8398223;0.44681716;0.0;0.951251;0.27626202;-0.1371165;0.0;-0.008285109 +25434;1;-0.3790772;4.0285754;8.93661 +25435;2;-0.30292574;-0.51139927;0.30885792; +25435;0;-0.07156372;4.560959;8.703064 +25435;3;-0.1877594;0.056533813;0.033599854 +25435;0;-0.07156372;4.57045;8.731674 +25435;3;-0.19447327;0.05531311;0.030548096 +25437;0;-0.11456299;4.5657043;8.779373 +25437;12;0.12798621;0.1675925;0.71385944;0.66778517 +25437;3;-0.20181274;0.054092407;0.028717041 +25439;0;-0.147995;4.546707;8.807983 +25439;1;-0.3805026;4.020835;8.940034 +25440;3;-0.20669556;0.05104065;0.02444458 +25442;4;16.392517;-23.390198;-53.396606 +25442;6;-1.3285788;-0.47646827;0.01680079 +25442;7;0.23234183;-0.8626801;0.4492219;0.0;0.97251964;0.21314088;-0.09368331;0.0;-0.01492882 +25442;0;-0.143219;4.6084595;8.774612 +25443;3;-0.21157837;0.046157837;0.02078247 +25443;12;0.12762615;0.16735052;0.71399486;0.6677701 +25444;0;-0.18621826;4.603714;8.812759 +25444;1;-0.38184732;4.012675;8.943643 +25444;3;-0.21891785;0.040649414;0.018951416 +25446;0;-0.147995;4.627472;8.798447 +25447;12;0.12725592;0.16708522;0.7141259;0.667767 +25447;3;-0.22319031;0.036376953;0.014678955 +25449;0;-0.157547;4.6322327;8.860458 +25449;1;-0.38285434;4.004007;8.947483 +25449;3;-0.22624207;0.029647827;0.011001587 +25451;4;16.093445;-23.690796;-52.6474 +25452;6;-1.3424561;-0.4816546;0.017779035 +25452;7;0.21830347;-0.86322623;0.4551749;0.0;0.9757538;0.20060794;-0.0875277;0.0;-0.015755478 +25452;0;-0.19099426;4.603714;8.860458 +25452;3;-0.22990417;0.021102905;0.009170532 +25452;12;0.1268807;0.16678463;0.71424925;0.6677816 +25453;0;-0.16711426;4.6179657;8.917694 +25454;1;-0.38346788;3.9949162;8.95152 +25454;3;-0.23234558;0.012542725;0.0048980713 +25454;2;-0.21721026;-0.6094601;0.1270523; +25456;0;-0.19099426;4.61322;8.951065 +25456;3;-0.2341919;0.006439209;0.002456665 +25457;12;0.1265101;0.16644965;0.7143614;0.66781545 +25458;0;-0.20054626;4.6084595;8.998749 +25458;1;-0.3835382;3.9856129;8.955663 +25459;3;-0.2341919;-2.89917E-4;-0.0024261475 +25459;5;999.59216 +25462;4;15.492249;-22.790527;-53.546143 +25462;6;-1.2806698;-0.4731976;0.022282328 +25462;7;0.27627274;-0.85291564;0.44295406;0.0;0.9608747;0.2546384;-0.10899192;0.0;-0.019832207 +25462;0;-0.19099426;4.5989685;9.022598 +25462;3;-0.23112488;-0.005783081;-0.0061035156 +25463;12;0.12616296;0.16607806;0.7144323;0.6678979 +25463;0;-0.19099426;4.57045;9.079834 +25464;3;-0.22929382;-0.011886597;-0.008544922 +25464;1;-0.38321427;3.9762595;8.959833 +25465;0;-0.19099426;4.5799713;9.056 +25466;12;0.12582646;0.16569313;0.71451414;0.66796935 +25466;3;-0.22441101;-0.01676941;-0.013427734 +25468;0;-0.21487427;4.5894623;9.094147 +25468;3;-0.22013855;-0.022277832;-0.017715454 +25468;1;-0.38255015;3.9671378;8.963904 +25470;4;15.792847;-21.740723;-52.946472 +25470;6;-1.2643296;-0.4672573;0.023623358 +25470;7;0.29146367;-0.8512071;0.43645772;0.0;0.9563493;0.2693527;-0.11333546;0.0;-0.021089138 +25470;0;-0.20054626;4.53244;9.108459 +25471;3;-0.21218872;-0.025939941;-0.021972656 +25471;12;0.12551448;0.16530171;0.71457946;0.66805524 +25472;0;-0.18621826;4.5181885;9.132294 +25473;1;-0.38162103;3.9583778;8.967815 +25473;2;-0.177091;-0.6228595;-0.0850811; +25473;3;-0.20303345;-0.03326416;-0.026870728 +25475;0;-0.23399353;4.4991913;9.170456 +25475;12;0.12522991;0.16491295;0.7146237;0.6681574 +25476;3;-0.1902008;-0.036315918;-0.03112793 +25477;0;-0.20533752;4.494446;9.203827 +25478;1;-0.38044107;3.9503808;8.971392 +25478;3;-0.17919922;-0.03755188;-0.034805298 +25480;4;16.54358;-21.890259;-53.546143 +25480;6;-1.3172562;-0.4541648;0.022306314 +25480;7;0.24129769;-0.8698991;0.43017557;0.0;0.9702441;0.22540504;-0.08842444;0.0;-0.02004341 +25480;0;-0.24832153;4.4611816;9.232452 +25481;3;-0.16516113;-0.038772583;-0.03968811 +25481;12;0.12505409;0.16449066;0.714373;0.66856235 +25485;1;-0.37930584;3.9433706;8.974523 +25485;0;-0.24354553;4.465927;9.213379 +25485;3;-0.14865112;-0.039993286;-0.045791626 +25485;0;-0.25787354;4.4231873;9.265839 +25485;12;0.12485174;0.1641575;0.71436775;0.6686876 +25486;3;-0.13278198;-0.03816223;-0.048858643 +25487;1;-0.3783615;3.9376192;8.977088 +25488;0;-0.2960968;4.404175;9.280151 +25488;3;-0.11567688;-0.03755188;-0.052520752 +25489;4;15.342712;-23.091125;-51.74713 +25489;6;-1.4607106;-0.4429086;0.03189564 +25489;7;0.09622309;-0.8980397;0.4292619;0.0;0.9949426;0.09926257;-0.015362939;0.0;-0.02881311 +25490;0;-0.2960968;4.4184265;9.294464 +25490;12;0.12469373;0.16387892;0.7143338;0.66882175 +25490;3;-0.097961426;-0.035095215;-0.05618286 +25492;0;-0.3104248;4.389923;9.299225 +25492;1;-0.37770078;3.9332952;8.979011 +25492;2;-0.107874185;-0.51693106;-0.26313686; +25492;3;-0.07963562;-0.03265381;-0.057403564 +25494;0;-0.34864807;4.380417;9.284912 +25495;12;0.12458038;0.16366479;0.7142759;0.6689571 +25495;3;-0.05886841;-0.02960205;-0.060455322 +25497;0;-0.3534088;4.370926;9.280151 +25497;1;-0.3774138;3.9305575;8.980222 +25497;3;-0.041152954;-0.028381348;-0.062286377 +25498;5;999.59216 +25499;4;16.392517;-20.690918;-52.946472 +25499;6;-1.2943717;-0.43989813;0.038063828 +25499;7;0.2571298;-0.8704467;0.41977;0.0;0.9657633;0.24693461;-0.07952711;0.0;-0.034431648 +25500;0;-0.3534088;4.3281555;9.289688 +25501;12;0.12478368;0.16331488;0.71308064;0.6702786 +25501;3;-0.0234375;-0.024719238;-0.06411743 +25501;9;2AEC2AEBC4E1;-62;-2147483648 +25503;0;-0.37252808;4.3186646;9.265839 +25503;1;-0.37742025;3.929348;8.980751 +25503;3;-0.005722046;-0.02166748;-0.06718445 +25504;0;-0.37252808;4.3329163;9.246765 +25504;12;0.12476623;0.16324627;0.71298194;0.6704035 +25504;3;0.013214111;-0.019210815;-0.06777954 +25506;0;-0.4202881;4.313904;9.21814 +25507;1;-0.37781814;3.9297044;8.980578 +25507;3;0.029708862;-0.019210815;-0.069625854 +25509;4;16.242981;-22.190857;-52.046204 +25509;6;-1.4112576;-0.43730655;0.045562036 +25509;7;0.13965397;-0.8943914;0.42492446;0.0;0.9893405;0.14391309;-0.022240847;0.0;-0.041260175 +25509;0;-0.4202881;4.3376617;9.189545 +25511;3;0.046188354;-0.019210815;-0.0690155 +25511;12;0.12479401;0.16325258;0.7128629;0.6705234 +25511;0;-0.43940735;4.3614197;9.189545 +25511;1;-0.37834704;3.931577;8.979736 +25511;2;0.015041679;-0.417742;-0.2627287; +25512;3;0.061462402;-0.018615723;-0.07084656 +25514;12;0.12487432;0.1633213;0.7127283;0.67063475 +25514;0;-0.43463135;4.3376617;9.199066 +25514;3;0.07673645;-0.01739502;-0.07084656 +25518;1;-0.3789674;3.9347808;8.978307 +25518;0;-0.43940735;4.347168;9.151382 +25518;3;0.08895874;-0.01676941;-0.07145691 +25518;4;17.292786;-21.141052;-51.597595 +25518;6;-1.3482609;-0.44302553;0.04797856 +25518;7;0.20039696;-0.88118047;0.428208;0.0;0.9787562;0.19939631;-0.04772357;0.0;-0.043330025 +25519;0;-0.45851135;4.3329163;9.13707 +25519;3;0.098739624;-0.017990112;-0.07145691 +25519;12;0.12501438;0.16343676;0.712528;0.67079335 +25521;0;-0.46806335;4.3376617;9.103683 +25521;1;-0.37966454;3.939062;8.976399 +25521;3;0.1103363;-0.01739502;-0.07206726 +25523;0;-0.44418335;4.347168;9.122772 +25524;12;0.12518078;0.16360594;0.71236825;0.6708908 +25524;3;0.11828613;-0.015548706;-0.07084656 +25525;0;-0.42507935;4.3329163;9.108459 +25525;1;-0.38036314;3.9442232;8.974104 +25526;3;0.1262207;-0.0131073;-0.07084656 +25528;4;15.942383;-21.440125;-52.046204 +25528;6;-1.3332995;-0.44359946;0.046634793 +25528;7;0.21556824;-0.8778594;0.42766014;0.0;0.9755805;0.21249926;-0.05555742;0.0;-0.04210587 +25528;0;-0.4298401;4.370926;9.079834 +25528;3;0.12927246;-0.0063934326;-0.07084656 +25529;12;0.12538004;0.16381124;0.71220076;0.67098135 +25530;0;-0.43463135;4.366165;9.013062 +25530;1;-0.3813402;3.9500213;8.971512 +25531;2;0.06890726;-0.40362477;-0.1394329; +25531;3;0.13172913;-8.8500977E-4;-0.069625854 +25533;0;-0.44895935;4.370926;8.989227 +25533;12;0.12559137;0.16405272;0.7120304;0.6710636 +25533;3;0.13598633;0.0058288574;-0.069625854 +25535;0;-0.42507935;4.404175;8.974915 +25535;1;-0.38282862;3.9561303;8.968757 +25536;3;0.13720703;0.012527466;-0.06840515 +25536;5;999.59216 +25537;4;16.242981;-22.491455;-53.097534 +25537;6;-1.3218114;-0.45575356;0.047327682 +25537;7;0.22596344;-0.8702403;0.43774703;0.0;0.9732091;0.22126803;-0.062486608;0.0;-0.042481065 +25539;0;-0.43940735;4.432678;8.931976 +25539;3;0.13539124;0.014984131;-0.065963745 +25539;12;0.12579766;0.16432455;0.7118533;0.67114633 +25540;0;-0.45373535;4.432678;8.903381 +25540;1;-0.38477033;3.962423;8.965895 +25540;3;0.13539124;0.017425537;-0.065338135 +25542;0;-0.45851135;4.432678;8.898605 +25542;12;0.1259878;0.16462171;0.7116915;0.67120945 +25543;3;0.13354492;0.018035889;-0.06472778 +25545;0;-0.43463135;4.4897003;8.922455 +25545;1;-0.38684055;3.9686651;8.963044 +25545;3;0.12988281;0.01864624;-0.062286377 +25547;4;16.093445;-21.740723;-52.197266 +25547;6;-1.2605866;-0.4657216;0.048673607 +25547;7;0.28409058;-0.85085076;0.44197923;0.0;0.9578114;0.27274764;-0.09058722;0.0;-0.043472588 +25547;0;-0.44418335;4.537201;8.903381 +25548;12;0.12617269;0.16492364;0.71153456;0.671267 +25548;3;0.12683105;0.020477295;-0.06350708 +25550;1;-0.38895562;3.9747176;8.96027 +25550;2;0.065612346;-0.48694372;0.0340662; +25550;0;-0.46328735;4.52771;8.917694 +25550;3;0.123168945;0.02230835;-0.06472778 +25552;0;-0.49195862;4.53244;8.922455 +25552;12;0.12634441;0.16521859;0.71138364;0.671322 +25552;3;0.12010193;0.02230835;-0.06655884 +25554;0;-0.5349426;4.556198;8.893829 +25554;1;-0.39131966;3.9804783;8.95761 +25554;3;0.11462402;0.024139404;-0.06840515 +25556;4;16.54358;-22.190857;-51.14746 +25557;6;-1.2857162;-0.472697;0.06007524 +25557;7;0.25449514;-0.85440856;0.45301014;0.0;0.9655956;0.25039524;-0.0701961;0.0;-0.053455442 +25557;0;-0.5349426;4.537201;8.884293 +25557;3;0.10972595;0.024749756;-0.070236206 +25557;12;0.12649924;0.16550942;0.7112287;0.67138535 +25559;1;-0.3938784;3.9858184;8.955122 +25559;0;-0.5397186;4.52771;8.874756 +25559;3;0.10484314;0.023529053;-0.07267761 +25562;0;-0.5827179;4.522949;8.893829 +25562;12;0.12663114;0.16578877;0.7110747;0.6714548 +25563;3;0.10118103;0.02230835;-0.073898315 +25564;0;-0.6113739;4.546707;8.912918 +25564;1;-0.39652398;3.9907353;8.952815 +25564;3;0.094451904;0.020477295;-0.073898315 +25566;4;16.842651;-21.440125;-53.996277 +25566;6;-1.1511256;-0.4707658;0.068486854 +25566;7;0.37815884;-0.8138838;0.4411224;0.0;0.92372954;0.36313683;-0.121882945;0.0;-0.06098924 +25567;0;-0.60661316;4.5419617;8.960602 +25567;3;0.08956909;0.019256592;-0.077560425 +25567;12;0.12674716;0.16605179;0.7109172;0.6715346 +25569;0;-0.64004517;4.5419617;8.979691 +25569;1;-0.39911386;3.995138;8.950736 +25569;2;0.17772382;-0.5527036;0.0400486; +25569;3;0.08467102;0.016815186;-0.077560425 +25571;0;-0.6495819;4.522949;9.022598 +25571;12;0.12684652;0.1662907;0.71075934;0.6716239 +25572;3;0.07917786;0.014373779;-0.07817078 +25573;0;-0.70692444;4.513443;9.008301 +25574;1;-0.4016438;3.9990666;8.94887 +25574;3;0.074295044;0.013748169;-0.08061218 +25575;5;999.5875 +25576;4;16.242981;-22.790527;-51.597595 +25576;6;-1.3160865;-0.46324423;0.07831428 +25576;7;0.21736103;-0.8657443;0.45082256;0.0;0.9735788;0.22540942;-0.036535848;0.0;-0.06998895 +25576;0;-0.72125244;4.5086975;9.036911 +25577;12;0.12693284;0.16650745;0.71059835;0.67172414 +25577;3;0.06941223;0.01008606;-0.08000183 +25578;1;-0.40407303;4.0024767;8.947235 +25579;0;-0.6782532;4.480179;9.094147 +25579;3;0.06452942;0.00642395;-0.08061218 +25581;0;-0.72125244;4.4611816;9.108459 +25582;12;0.12700467;0.166697;0.71043926;0.6718319 +25582;3;0.059020996;0.00642395;-0.08061218 +25583;0;-0.73080444;4.432678;9.146606 +25583;3;0.054748535;0.005218506;-0.081832886 +25583;1;-0.40630198;4.005362;8.945843 +25585;4;16.693115;-22.04132;-51.74713 +25585;6;-1.3228326;-0.45002508;0.079729594 +25585;7;0.21106572;-0.87289566;0.4398914;0.0;0.9748376;0.22099447;-0.029211037;0.0;-0.071715385 +25586;0;-0.7403717;4.413666;9.170456 +25586;3;0.049865723;0.0033721924;-0.081832886 +25586;12;0.12706497;0.16685829;0.7102823;0.67194635 +25588;0;-0.7833557;4.3946686;9.175232 +25588;1;-0.40850624;4.007763;8.944667 +25588;2;0.3178074;-0.46844697;-0.14562607; +25588;3;0.046188354;0.0015563965;-0.081222534 +25590;0;-0.7403717;4.3614197;9.175232 +25590;12;0.12710993;0.16699879;0.7101268;0.67206734 +25591;3;0.042526245;3.3569336E-4;-0.08061218 +25594;1;-0.41054866;4.0097566;8.94368 +25594;0;-0.7833557;4.3376617;9.189545 +25594;3;0.043136597;-0.002105713;-0.081832886 +25597;4;16.093445;-22.640991;-52.946472 +25597;6;-1.3536234;-0.43961945;0.085038655 +25597;7;0.17939194;-0.88365763;0.43239745;0.0;0.9807706;0.19498163;-0.0084304735;0.0;-0.07685993 +25597;0;-0.816803;4.313904;9.232452 +25597;3;0.04374695;-0.0039520264;-0.08000183 +25597;12;0.12714756;0.16711521;0.7099598;0.67220765 +25599;0;-0.8072357;4.290146;9.261063 +25599;1;-0.41248146;4.0116205;8.942755 +25599;3;0.043136597;-0.004562378;-0.07939148 +25601;0;-0.8215637;4.2854004;9.275375 +25602;3;0.047424316;-0.0039520264;-0.08000183 +25602;12;0.12718351;0.16722412;0.7098078;0.6723344 +25603;0;-0.7881317;4.280655;9.313538 +25604;1;-0.41432348;4.0135174;8.941818 +25604;3;0.051696777;-0.004562378;-0.077560425 +25604;4;16.242981;-20.541382;-54.296875 +25605;6;-1.2067561;-0.42946988;0.08442104 +25605;7;0.3219753;-0.84960395;0.41773814;0.0;0.94363904;0.32371825;-0.068933465;0.0;-0.07666334 +25605;0;-0.7929077;4.2426453;9.304001 +25605;3;0.05657959;-0.005783081;-0.073898315 +25607;12;0.1272239;0.16733119;0.7096571;0.6724591 +25609;1;-0.41603336;4.015759;8.940733 +25613;2;0.38766685;-0.29086494;-0.30975056; +25613;0;-0.7929077;4.256897;9.294464 +25613;3;0.063308716;-0.0039520264;-0.073287964 +25613;12;0.12728147;0.16745023;0.70950896;0.6725749 +25613;0;-0.7833557;4.2473907;9.304001 +25613;3;0.07185364;-0.0015106201;-0.073287964 +25613;0;-0.7833557;4.2188873;9.318314 +25613;3;0.08041382;0.0015563965;-0.07145691 +25613;1;-0.41778636;4.0185513;8.939396 +25613;9;2AEC2AEBC4E1;-64;-2147483648 +25617;5;999.5875 +25617;12;0.12735842;0.16759017;0.7093468;0.6726966 +25617;4;17.593384;-22.190857;-52.046204 +25617;6;-1.4419136;-0.42381883;0.083869055 +25617;7;0.09390989;-0.90396506;0.41716683;0.0;0.992648;0.11715484;0.030406091;0.0;-0.07635915 +25617;0;-0.7929077;4.199875;9.342148 +25617;3;0.08895874;0.005218506;-0.070236206 +25617;0;-0.76901245;4.166626;9.375534 +25617;1;-0.41974694;4.021997;8.937755 +25617;3;0.09933472;0.009490967;-0.06718445 +25619;0;-0.7642517;4.176132;9.332611 +25619;12;0.12744865;0.1677681;0.70919776;0.6727922 +25619;3;0.1091156;0.015594482;-0.06655884 +25623;1;-0.42200467;4.026279;8.93572 +25623;0;-0.76901245;4.1713715;9.351685 +25624;3;0.11766052;0.019256592;-0.06411743 +25624;0;-0.73558044;4.1571198;9.332611 +25625;3;0.12561035;0.025970459;-0.061065674 +25625;4;15.342712;-21.740723;-51.74713 +25625;6;-1.4331036;-0.41790572;0.07865568 +25625;7;0.105246246;-0.9052907;0.4115482;0.0;0.9918498;0.12544578;0.022297323;0.0;-0.07181254 +25625;12;0.12755662;0.16799207;0.70905024;0.6728713 +25627;0;-0.75468445;4.1618805;9.323074 +25628;1;-0.42458197;4.031297;8.933335 +25628;3;0.13476562;0.028411865;-0.057403564 +25628;2;0.35608557;-0.16656733;-0.3964138; +25629;0;-0.7499237;4.185623;9.256302 +25629;3;0.14454651;0.033309937;-0.053131104 +25630;12;0.12767841;0.16826165;0.7089054;0.67293346 +25632;0;-0.7403717;4.1713715;9.270599 +25633;1;-0.42737302;4.0371437;8.930562 +25634;3;0.15249634;0.036361694;-0.048858643 +25634;4;17.74292;-21.740723;-51.446533 +25634;6;-1.4442668;-0.4216299;0.0796932 +25634;7;0.09347235;-0.905129;0.41473407;0.0;0.9929687;0.11514068;0.027492445;0.0;-0.07263697 +25634;0;-0.7499237;4.190384;9.256302 +25634;3;0.16165161;0.039413452;-0.045181274 +25639;12;0.1278279;0.16856623;0.7087314;0.67301214 +25639;1;-0.4303184;4.0437603;8.927426 +25639;12;0.12798788;0.16891797;0.70860136;0.67303044 +25640;0;-0.7594757;4.1713715;9.199066 +25640;3;0.17082214;0.04307556;-0.041519165 +25640;0;-0.7881317;4.176132;9.146606 +25640;3;0.18058777;0.04307556;-0.038467407 +25641;1;-0.43336377;4.051221;8.923896 +25641;0;-0.7403717;4.209381;9.179993 +25641;3;0.18669128;0.041244507;-0.036026 +25643;4;17.292786;-21.440125;-53.546143 +25643;6;-1.3235155;-0.428705;0.08047639 +25643;7;0.21157522;-0.8818391;0.42142093;0.0;0.974623;0.22261795;-0.023475029;0.0;-0.073114686 +25643;0;-0.7260437;4.2473907;9.151382 +25643;3;0.190979;0.039413452;-0.032348633 +25644;12;0.12817562;0.1693083;0.70847654;0.6730281 +25645;0;-0.70692444;4.2949066;9.11322 +25645;1;-0.4361118;4.0593433;8.92007 +25645;2;0.32146043;-0.15697765;-0.27124786; +25646;3;0.19647217;0.0388031;-0.030532837 +25649;0;-0.71170044;4.3186646;9.070297 +25649;12;0.12839681;0.16971827;0.70835406;0.6730116 +25649;3;0.20135498;0.036361694;-0.028686523 +25650;0;-0.7260437;4.3376617;9.013062 +25650;1;-0.43867305;4.068054;8.915976 +25651;3;0.2062378;0.030853271;-0.028686523 +25651;5;999.5875 +25652;4;16.093445;-21.740723;-52.6474 +25652;6;-1.2708097;-0.44728428;0.08038105 +25652;7;0.26137546;-0.8613589;0.43559602;0.0;0.9625185;0.26643696;-0.05069119;0.0;-0.07239555 +25653;0;-0.7833557;4.380417;9.008301 +25653;3;0.20930481;0.024139404;-0.029312134 +25653;12;0.12890784;0.16994374;0.70717514;0.674096 +25655;0;-0.7260437;4.4279175;8.955841 +25655;1;-0.44082555;4.07719;8.911695 +25655;3;0.21235657;0.015594482;-0.02809143 +25657;0;-0.7260437;4.456436;8.903381 +25657;12;0.12919173;0.17037135;0.7070474;0.6740676 +25658;3;0.21846008;0.00642395;-0.025039673 +25659;0;-0.68304443;4.522949;8.936752 +25660;1;-0.4421602;4.086768;8.90724 +25660;3;0.22029114;-0.002105713;-0.02381897 +25662;4;16.842651;-21.440125;-51.597595 +25662;6;-1.2262526;-0.46734855;0.076282635 +25662;7;0.3044693;-0.8402978;0.44855118;0.0;0.95008934;0.3015472;-0.079998806;0.0;-0.06803651 +25662;0;-0.6257019;4.5752106;8.903381 +25662;3;0.22212219;-0.008224487;-0.022598267 +25663;12;0.1295238;0.1707865;0.70691496;0.67403775 +25664;0;-0.5922699;4.6654816;8.946289 +25664;1;-0.44260398;4.0967255;8.902643 +25665;2;0.26725167;-0.37512445;-0.058728218; +25665;3;0.22273254;-0.014328003;-0.020751953 +25667;0;-0.5301666;4.7224884;8.951065 +25667;12;0.12990247;0.17118625;0.7067801;0.6740049 +25668;3;0.22395325;-0.01676941;-0.016479492 +25669;0;-0.48239136;4.803253;8.965378 +25669;1;-0.44237274;4.106902;8.8979645 +25669;3;0.22763062;-0.014328003;-0.014038086 +25672;12;0.13037564;0.17152663;0.7064046;0.67422056 +25672;4;16.242981;-22.491455;-52.796936 +25673;6;-1.1841145;-0.49123996;0.05375419 +25673;7;0.3530993;-0.8166452;0.45652124;0.0;0.9343857;0.33252272;-0.1278754;0.0;-0.04737486 +25673;0;-0.41073608;4.9267883;8.974915 +25673;3;0.227005;-0.00944519;-0.012817383 +25674;0;-0.3534088;5.0265503;8.936752 +25674;1;-0.442026;4.1174707;8.893096 +25674;3;0.22946167;-0.0027313232;-0.009155273 +25676;0;-0.3343048;5.107315;8.922455 +25677;12;0.13080224;0.17193058;0.70627934;0.6741663 +25677;3;0.23068237;0.0045928955;-0.0061035156 +25679;0;-0.3104248;5.15007;8.951065 +25679;1;-0.44203168;4.1283193;8.888064 +25679;3;0.23129272;0.012527466;-0.0030517578 +25682;4;16.842651;-23.54126;-53.996277 +25682;6;-1.1451434;-0.5218438;0.034666315 +25682;7;0.3969322;-0.7895474;0.46803835;0.0;0.9173561;0.35795718;-0.17413957;0.0;-0.030046262 +25682;0;-0.24832153;5.1928253;8.970154 +25683;3;0.22822571;0.022918701;0.0012359619 +25683;12;0.13121915;0.17235896;0.70616597;0.6740947 +25684;0;-0.21487427;5.264099;8.979691 +25684;1;-0.44249713;4.1392293;8.882966 +25684;2;-0.069132924;-0.8980608;-0.06674099; +25684;3;0.22090149;0.033920288;0.005508423 +25686;0;-0.12411499;5.2736053;9.065521 +25687;12;0.13161564;0.17281054;0.70606905;0.6740033 +25687;3;0.21174622;0.047958374;0.011001587 +25688;0;-0.16233826;5.3638763;9.127518 +25689;1;-0.4436477;4.14959;8.878074 +25689;3;0.19769287;0.06506348;0.016494751 +25690;5;999.5875 +25691;4;16.54358;-22.491455;-51.597595 +25691;6;-1.1553401;-0.53122747;0.01778371 +25691;7;0.39530134;-0.7888417;0.47060132;0.0;0.91842365;0.34798467;-0.18816194;0.0;-0.015332058 +25691;0;-0.16711426;5.47789;9.170456 +25692;3;0.18180847;0.08584595;0.02017212 +25692;12;0.13197426;0.17326319;0.7059338;0.6739586 +25693;0;-0.19577026;5.5301514;9.208603 +25694;1;-0.4461072;4.1589518;8.873569 +25694;3;0.16409302;0.10722351;0.019561768 +25696;0;-0.21009827;5.5301514;9.237228 +25696;12;0.13222009;0.17373902;0.7059013;0.6738219 +25697;3;0.14149475;0.124938965;0.018951416 +25698;0;-0.16711426;5.5253906;9.270599 +25699;3;0.11462402;0.14019775;0.017730713 +25699;1;-0.4502751;4.1667147;8.869716 +25701;4;16.392517;-22.340393;-50.247192 +25701;6;-1.1636178;-0.53741074;0.01802431 +25701;7;0.38748372;-0.78880376;0.47712153;0.0;0.9217465;0.34019592;-0.18614529;0.0;-0.015482712 +25701;0;-0.20533752;5.4731293;9.265839 +25701;3;0.08345032;0.15119934;0.016494751 +25702;12;0.13233599;0.17421453;0.70589906;0.6736788 +25703;0;-0.25787354;5.458893;9.313538 +25703;2;-0.257586;-1.2974973;-0.3326578; +25704;3;0.05230713;0.15853882;0.015274048 +25704;1;-0.455788;4.1720977;8.866902 +25705;0;-0.30085754;5.4493866;9.361221 +25706;12;0.13230765;0.17464635;0.7059251;0.67354524 +25706;3;0.017486572;0.16098022;0.010391235 +25708;0;-0.37252808;5.411377;9.385086 +25710;1;-0.46210268;4.174657;8.865372 +25710;3;-0.020385742;0.16036987;0.007949829 +25711;9;2AEC2AEBC4E1;-73;-2147483648 +25712;4;16.242981;-22.190857;-51.597595 +25713;6;-1.1219347;-0.52269024;0.039672796 +25713;7;0.4157602;-0.78064734;0.466619;0.0;0.9088248;0.37600026;-0.18072465;0.0;-0.03436664 +25713;0;-0.39163208;5.378128;9.451843 +25713;3;-0.057647705;0.15608215;0.0012359619 +25713;12;0.13233213;0.17484705;0.70523775;0.6742081 +25713;0;-0.44418335;5.302109;9.513855 +25713;3;-0.09613037;0.14753723;-0.005493164 +25714;1;-0.4686064;4.173907;8.865383 +25716;0;-0.49195862;5.1928253;9.537689 +25717;12;0.1320369;0.17506266;0.70530635;0.6741382 +25717;3;-0.13583374;0.13531494;-0.0146484375 +25718;0;-0.5015106;5.107315;9.642624 +25718;3;-0.1730957;0.12187195;-0.020751953 +25718;1;-0.4748179;4.1695805;8.867088 +25720;4;15.492249;-22.190857;-50.39673 +25720;6;-1.2484977;-0.4865349;0.051962946 +25720;7;0.29328537;-0.83844316;0.45934373;0.0;0.9549218;0.2799917;-0.09863523;0.0;-0.04591241 +25721;0;-0.49195862;4.998047;9.685532 +25721;3;-0.21157837;0.10661316;-0.029312134 +25721;12;0.13162597;0.17511673;0.70538044;0.67412704 +25723;0;-0.45373535;4.8460083;9.771393 +25723;1;-0.48009634;4.161717;8.870498 +25723;2;-0.037325233;-1.0658197;-0.664628; +25724;3;-0.2506714;0.0864563;-0.038467407 +25724;0;-0.48239136;4.7794952;9.842926 +25725;12;0.1311234;0.17499009;0.7054556;0.6741792 +25725;3;-0.2836609;0.06506348;-0.045791626 +25730;1;-0.48408356;4.1503816;8.87559 +25730;0;-0.48239136;4.6892242;9.9096985 +25730;3;-0.3190918;0.046142578;-0.053131104 +25730;5;999.5816 +25730;0;-0.43463135;4.5514526;9.990768 +25730;3;-0.3471985;0.024749756;-0.060455322 +25730;4;17.292786;-22.190857;-52.046204 +25730;6;-1.4610993;-0.42711627;0.043475885 +25730;7;0.091477886;-0.9046934;0.416127;0.0;0.99502116;0.099642254;-0.0021069087;0.0;-0.039557725 +25730;12;0.13054858;0.17467043;0.705524;0.674302 +25732;0;-0.43940735;4.437439;10.090927 +25732;1;-0.4865844;4.135896;8.882214 +25732;3;-0.3716278;0.0039978027;-0.06350708 +25734;0;-0.40119934;4.3043976;10.195847 +25735;3;-0.3899536;-0.013717651;-0.065963745 +25735;12;0.1299906;0.1741105;0.7053014;0.6747874 +25736;0;-0.36775208;4.252136;10.305542 +25736;1;-0.48745272;4.119063;8.889985 +25737;3;-0.40705872;-0.030822754;-0.07084656 +25739;4;16.992188;-23.690796;-52.197266 +25739;6;-1.6883432;-0.39110252;0.03566975 +25739;7;-0.13070267;-0.91810966;0.37415412;0.0;0.99087316;-0.10842076;0.08009434;0.0;-0.03296931 +25739;0;-0.3390808;4.1523743;10.362778 +25739;3;-0.41867065;-0.046707153;-0.073287964 +25740;12;0.12934062;0.17345205;0.7053593;0.6750213 +25742;0;-0.3104248;4.090622;10.448624 +25742;1;-0.48693845;4.1005187;8.898581 +25742;2;-0.06840521;-0.3228383;-1.2367344; +25744;12;0.12868154;0.17267303;0.70540947;0.6752945 +25744;3;-0.42599487;-0.05709839;-0.07450867 +25744;0;-0.3295288;3.962326;10.529694 +25744;3;-0.42721558;-0.06625366;-0.07695007 +25746;0;-0.3056488;3.9243164;10.610779 +25746;1;-0.48550355;4.0812545;8.907512 +25746;3;-0.42355347;-0.07420349;-0.07817078 +25749;4;14.743042;-22.04132;-51.446533 +25749;6;-1.771358;-0.35410643;0.028797537 +25749;7;-0.20892133;-0.9191552;0.33392456;0.0;0.97755945;-0.18685958;0.097267695;0.0;-0.02700711 +25750;0;-0.2722168;3.8673248;10.7109375 +25750;3;-0.4168396;-0.0778656;-0.07878113 +25750;12;0.12806445;0.17181034;0.70533794;0.67570645 +25754;1;-0.48344767;4.062089;8.916379 +25754;0;-0.27697754;3.7913055;10.763397 +25754;3;-0.40827942;-0.08091736;-0.08061218 +25755;0;-0.25787354;3.6867828;10.844482 +25755;3;-0.3972931;-0.08152771;-0.081222534 +25755;12;0.1274451;0.17095038;0.7053701;0.6760079 +25756;1;-0.48116127;4.043466;8.924964 +25756;0;-0.21009827;3.6677704;10.906479 +25756;3;-0.38201904;-0.0766449;-0.08061218 +25758;4;15.492249;-22.790527;-51.597595 +25758;6;-1.9070152;-0.3243557;0.01926124 +25758;7;-0.33565333;-0.89478475;0.29444376;0.0;0.9418087;-0.3127168;0.123307064;0.0;-0.018255757 +25758;0;-0.23399353;3.6345215;10.987549 +25758;3;-0.3655243;-0.06564331;-0.07878113 +25762;12;0.12685858;0.17010668;0.7053899;0.6763104 +25762;0;-0.27697754;3.5774994;10.99231 +25762;1;-0.47929832;4.0259843;8.932963 +25762;2;-0.19820741;0.24808264;-1.853406; +25762;3;-0.34597778;-0.051589966;-0.07633972 +25763;0;-0.3295288;3.5585022;11.006622 +25763;12;0.1262968;0.16932689;0.70540214;0.6765984 +25764;3;-0.32337952;-0.035720825;-0.073287964 +25765;0;-0.2960968;3.5062408;11.049545 +25765;1;-0.47857752;4.010107;8.940141 +25765;3;-0.29893494;-0.01676941;-0.0690155 +25767;5;999.5816 +25767;4;18.34259;-21.740723;-52.6474 +25767;6;-1.8395631;-0.3071665;0.026790781 +25767;7;-0.27325606;-0.91897357;0.28428614;0.0;0.9616024;-0.25311372;0.10608627;0.0;-0.025533762 +25768;0;-0.3056488;3.449234;11.10202 +25768;3;-0.2714386;0.0070495605;-0.065338135 +25768;12;0.12576714;0.16863969;0.7053461;0.6769271 +25770;0;-0.27697754;3.4634857;11.0877075 +25770;1;-0.47933838;3.9962773;8.946291 +25770;3;-0.24639893;0.030853271;-0.061065674 +25772;0;-0.3343048;3.4539795;11.082947 +25772;12;0.12523796;0.16810943;0.70536226;0.6771402 +25773;3;-0.21647644;0.053466797;-0.05557251 +25774;0;-0.41073608;3.4539795;11.040024 +25775;1;-0.4820344;3.984786;8.95127 +25775;3;-0.1865387;0.07850647;-0.05130005 +25777;4;16.392517;-21.740723;-52.6474 +25777;6;-1.8963684;-0.30301562;0.037187126 +25777;7;-0.33014104;-0.90430224;0.27063715;0.0;0.9432645;-0.3052788;0.13060294;0.0;-0.03548474 +25777;0;-0.45373535;3.449234;11.025711 +25777;3;-0.15905762;0.10232544;-0.046417236 +25778;12;0.124717176;0.16774751;0.70538396;0.67730343 +25779;0;-0.46806335;3.4302368;11.006622 +25780;3;-0.13032532;0.124313354;-0.042129517 +25780;1;-0.48671713;3.975836;8.954995 +25780;2;-0.11715233;0.49419832;-2.0897102; +25784;12;0.12421272;0.16756272;0.705411;0.6774137 +25784;0;-0.5349426;3.458725;10.925552 +25784;3;-0.097351074;0.14570618;-0.037246704 +25786;0;-0.5397186;3.458725;10.863541 +25786;3;-0.069244385;0.16525269;-0.032974243 +25786;1;-0.49322495;3.9694993;8.95745 +25787;4;17.74292;-22.640991;-51.74713 +25787;6;-1.9275534;-0.3078758;0.049640834 +25787;7;-0.362897;-0.8929744;0.26627514;0.0;0.9306286;-0.33281595;0.15219682;0.0;-0.047287267 +25787;0;-0.5779419;3.5632477;10.820633 +25788;3;-0.04359436;0.17930603;-0.030532837 +25789;0;-0.5922699;3.5774994;10.730011 +25789;1;-0.5012826;3.965786;8.958648 +25789;3;-0.016723633;0.19151306;-0.029907227 +25790;12;0.12373535;0.16755272;0.7054405;0.67747283 +25791;0;-0.6495819;3.615509;10.610779 +25792;12;0.1232927;0.16770636;0.70547014;0.6774847 +25792;3;0.009536743;0.2019043;-0.029312134 +25795;0;-0.72125244;3.6012573;10.53447 +25795;3;0.031539917;0.20617676;-0.03112793 +25795;1;-0.5104168;3.9644706;8.958714 +25797;4;16.093445;-22.04132;-52.946472 +25797;6;-1.8417475;-0.32868496;0.06835926 +25797;7;-0.2882676;-0.9119375;0.29201356;0.0;0.955365;-0.25332022;0.15200867;0.0;-0.064649455 +25797;0;-0.7833557;3.639267;10.405701 +25797;3;0.051086426;0.2055664;-0.030532837 +25797;12;0.122897476;0.16799402;0.7054874;0.6774672 +25799;0;-0.8072357;3.6962738;10.26738 +25799;1;-0.520103;3.965224;8.957823 +25799;2;0.14105862;0.38019514;-1.6824923; +25799;3;0.06941223;0.20373535;-0.032348633 +25802;0;-0.835907;3.7437897;10.224472 +25802;12;0.12256422;0.16838163;0.70548534;0.6774335 +25803;3;0.08345032;0.20007324;-0.036026 +25804;0;-0.855011;3.772293;10.086151 +25804;3;0.09567261;0.19396973;-0.040298462 +25804;1;-0.52974313;3.9676359;8.95619 +25805;5;999.5816 +25806;4;16.54358;-21.141052;-50.846863 +25806;6;-1.7036809;-0.3567269;0.084568605 +25806;7;-0.16125713;-0.9287837;0.33370188;0.0;0.9837335;-0.12415259;0.12982583;0.0;-0.079150155 +25806;0;-0.888443;3.7770538;9.976471 +25806;3;0.10543823;0.1847992;-0.045181274 +25807;12;0.12230336;0.16882496;0.70543504;0.6774227 +25808;0;-0.92666626;3.8150635;9.838165 +25808;1;-0.53909546;3.971194;8.954055 +25809;3;0.11277771;0.17381287;-0.048233032 +25811;0;-0.9219055;3.7865448;9.742767 +25811;12;0.12209569;0.1693022;0.705382;0.6773963 +25811;3;0.118881226;0.15975952;-0.052520752 +25813;0;-0.95054626;3.8150635;9.647385 +25813;1;-0.54766864;3.975473;8.951635 +25813;3;0.125;0.14509583;-0.056793213 +25814;9;2AEC2AEBC4E1;-64;-2147483648 +25816;4;18.492126;-21.890259;-51.597595 +25816;6;-1.638237;-0.37492928;0.098211914 +25816;7;-0.10289128;-0.9284182;0.35700575;0.0;0.990499;-0.06270827;0.1223908;0.0;-0.091242634 +25816;0;-0.90278625;3.8293152;9.585388 +25816;3;0.12866211;0.13226318;-0.061676025 +25817;12;0.12195123;0.16977438;0.7053029;0.6773865 +25818;0;-0.93144226;3.8958282;9.518616 +25818;1;-0.55518174;3.9803221;8.949018 +25818;2;0.35760587;0.16847587;-0.8743954; +25818;3;0.13294983;0.116989136;-0.06777954 +25821;0;-0.91233826;3.8958282;9.404144 +25821;12;0.12187418;0.17022742;0.7051956;0.6773984 +25821;3;0.14027405;0.10050964;-0.07450867 +25823;0;-0.897995;3.8815765;9.299225 +25823;1;-0.5616344;3.9856694;8.946235 +25823;3;0.14698792;0.08155823;-0.081222534 +25825;4;18.34259;-22.04132;-52.6474 +25825;6;-1.5383644;-0.39377606;0.096268155 +25825;7;-0.0045834677;-0.92298126;0.3848177;0.0;0.99604213;0.029944563;0.08368534;0.0;-0.08876319 +25826;0;-0.91711426;3.8673248;9.232452 +25826;3;0.15187073;0.060180664;-0.08856201 +25827;12;0.12186545;0.17065085;0.7050386;0.6774568 +25827;0;-0.874115;3.8293152;9.117996 +25827;1;-0.5667284;3.9915533;8.94329 +25828;3;0.15737915;0.036972046;-0.09649658 +25830;0;-0.816803;3.796051;9.051224 +25830;12;0.12193369;0.1710404;0.70486027;0.67753184 +25831;3;0.16470337;0.013153076;-0.10444641 +25832;0;-0.7785797;3.7770538;8.998749 +25833;1;-0.5700405;3.9978843;8.940251 +25833;3;0.17326355;-0.0076141357;-0.113601685 +25835;4;18.193054;-23.54126;-53.097534 +25835;6;-1.6228012;-0.39607033;0.08630596 +25835;7;-0.084998116;-0.9213369;0.3793596;0.0;0.99320245;-0.047957204;0.10606189;0.0;-0.0795257 +25836;0;-0.71647644;3.7817993;8.970154 +25836;3;0.18180847;-0.030212402;-0.12399292 +25836;12;0.12209517;0.17137706;0.704639;0.6776478 +25837;0;-0.68782043;3.729538;8.893829 +25837;1;-0.57169884;4.0048704;8.937017 +25838;2;0.26532924;0.17820501;-0.18013382; +25838;3;0.19036865;-0.048538208;-0.1343689 +25839;0;-0.6018219;3.682022;8.927231 +25840;12;0.122351415;0.17167035;0.70436937;0.67780775 +25840;3;0.19952393;-0.063201904;-0.14413452 +25842;0;-0.64482117;3.6867828;8.889069 +25842;1;-0.572066;4.0124617;8.933588 +25843;3;0.2080841;-0.076034546;-0.1539154 +25844;5;999.5816 +25844;4;17.442322;-21.740723;-52.6474 +25844;6;-1.5366176;-0.3922331;0.07241408 +25844;7;0.006442299;-0.9235181;0.3835008;0.0;0.9977419;0.03157691;0.05928044;0.0;-0.066856325 +25845;0;-0.47763062;3.6297607;8.779373 +25845;3;0.22090149;-0.083358765;-0.16308594 +25845;12;0.12272824;0.17190896;0.7039037;0.6781628 +25847;1;-0.57156855;4.020807;8.929868 +25847;0;-0.43463135;3.5774994;8.726913 +25847;3;0.23495483;-0.09008789;-0.17102051 +25852;12;0.123134926;0.1721666;0.70353836;0.6784028 +25852;0;-0.38208008;3.5109863;8.650604 +25852;3;0.25022888;-0.09680176;-0.17712402 +25852;0;-0.37252808;3.4872284;8.583832 +25852;1;-0.57068974;4.030238;8.925671 +25852;3;0.2685547;-0.10046387;-0.18141174 +25854;4;17.892456;-21.141052;-52.3468 +25854;6;-1.5470505;-0.3855594;0.04337159 +25854;7;0.007419866;-0.92632693;0.37664738;0.0;0.99916506;0.022000508;0.03442475;0.0;-0.04017501 +25854;0;-0.27697754;3.4444885;8.536133 +25854;3;0.2868805;-0.10475159;-0.18629456 +25855;12;0.12360519;0.17244968;0.7031326;0.6786659 +25856;0;-0.22442627;3.425476;8.531357 +25856;1;-0.5694402;4.041092;8.920842 +25857;2;-0.13108552;0.4796028;0.22119522; +25857;3;0.30337524;-0.10597229;-0.19119263 +25858;0;-0.138443;3.368454;8.521835 +25859;12;0.124146156;0.1727722;0.7026952;0.6789382 +25859;3;0.32414246;-0.10597229;-0.19422913 +25861;0;-0.08590698;3.3827057;8.497986 +25861;1;-0.5680253;4.0534625;8.9153185 +25862;3;0.3418579;-0.10168457;-0.19851685 +25864;4;18.34259;-22.640991;-52.6474 +25864;6;-1.6547225;-0.378815;0.010108754 +25864;7;-0.08754858;-0.9258333;0.36765188;0.0;0.99611586;-0.07788457;0.04107254;0.0;-0.009391919 +25864;0;-0.038131714;3.3637238;8.431213 +25864;3;0.36079407;-0.09375;-0.2003479 +25864;12;0.12475767;0.1731491;0.7022164;0.67922544 +25866;0;0.028747559;3.3447113;8.373978 +25866;1;-0.56695807;4.06725;8.909104 +25866;3;0.37606812;-0.087020874;-0.20217896 +25868;0;0.03352356;3.2877045;8.30722 +25869;12;0.12540591;0.1735962;0.70172864;0.679496 +25870;3;0.39378357;-0.0790863;-0.20401001 +25870;9;52ADB5BC186F;-84;-2147483648 +25872;1;-0.566505;4.0826254;8.902098 +25872;0;0.09085083;3.3161926;8.230911 +25872;3;0.41027832;-0.06991577;-0.20462036 +25873;4;18.492126;-22.491455;-53.097534 +25873;6;-1.6282793;-0.3829784;-0.011037312 +25873;7;-0.05333031;-0.92602366;0.37367892;0.0;0.9985244;-0.05328937;0.010448542;0.0;0.010237515 +25873;0;0.1720581;3.3019562;8.2165985 +25873;3;0.4243164;-0.060150146;-0.20462036 +25874;12;0.12609628;0.17412908;0.70121884;0.679758 +25876;0;0.19117737;3.335205;8.159363 +25876;1;-0.56668174;4.099308;8.894417 +25876;2;-0.58860654;0.75694513;0.55484486; +25876;3;0.4396057;-0.04914856;-0.20401001 +25878;0;0.23416138;3.3542175;8.135513 +25878;12;0.12680985;0.17474186;0.70070136;0.6800016 +25878;3;0.4524231;-0.03694153;-0.20462036 +25883;1;-0.56770927;4.117259;8.886056 +25883;0;0.25328064;3.3494568;8.09259 +25883;3;0.46403503;-0.024108887;-0.20645142 +25883;5;999.5816 +25883;4;18.492126;-21.890259;-51.14746 +25883;6;-1.6158924;-0.39225146;-0.031287633 +25883;7;-0.033112496;-0.9231113;0.38310456;0.0;0.9990336;-0.04165692;-0.01402614;0.0;0.028906643 +25884;0;0.26283264;3.434967;8.08783 +25884;3;0.47503662;-0.010055542;-0.20767212 +25884;12;0.12754646;0.17543289;0.70014447;0.68025947 +25885;0;0.3058319;3.449234;8.059219 +25885;1;-0.5698502;4.1362987;8.877072 +25885;3;0.4841919;0.005218506;-0.20829773 +25887;0;0.3201599;3.4444885;7.992447 +25888;12;0.12827346;0.17621356;0.69961387;0.6804669 +25888;3;0.49090576;0.019256592;-0.20829773 +25890;0;0.34883118;3.4729767;7.9542847 +25890;1;-0.5731956;4.1561284;8.86759 +25890;3;0.4976349;0.03147888;-0.20767212 +25892;4;17.442322;-22.340393;-51.446533 +25892;6;-1.5826453;-0.41131696;-0.04382642 +25892;7;0.0056784106;-0.9165306;0.39992392;0.0;0.99917704;-0.010860428;-0.03907656;0.0;0.04015822 +25892;0;0.38226318;3.4872284;7.978134 +25892;3;0.501297;0.04246521;-0.20767212 +25893;12;0.12898424;0.17707217;0.69908184;0.68065643 +25895;0;0.42526245;3.548996;7.9590607 +25895;1;-0.5774861;4.176495;8.857738 +25895;2;-0.8867997;0.7297268;0.8277283; +25895;3;0.5025177;0.05529785;-0.20889282 +25897;0;0.45869446;3.6297607;7.892288 +25897;12;0.12968174;0.17799294;0.69855213;0.6808275 +25897;3;0.5025177;0.06752014;-0.21073914 +25899;0;0.53034973;3.6677704;7.849365 +25899;1;-0.58272475;4.197156;8.847622 +25900;3;0.501297;0.07911682;-0.21195984 +25902;4;18.043518;-22.340393;-51.74713 +25902;6;-1.5218083;-0.43624943;-0.0674634 +25902;7;0.077307485;-0.90525556;0.41777512;0.0;0.9951335;0.044382222;-0.08797559;0.0;0.061098598 +25902;0;0.578125;3.70578;7.858902 +25903;3;0.49702454;0.08828735;-0.217453 +25903;12;0.13039361;0.17892982;0.69786644;0.6811491 +25904;0;0.582901;3.7390442;7.8302765 +25905;3;0.4890747;0.09805298;-0.22172546 +25905;1;-0.5888835;4.2177176;8.837431 +25906;0;0.592453;3.8103027;7.8016815 +25907;12;0.13102524;0.17993158;0.69733745;0.68130577 +25907;3;0.4805298;0.109054565;-0.22172546 +25911;0;0.587677;3.8293152;7.7969055 +25911;1;-0.5960168;4.2377453;8.827366 +25911;3;0.4695282;0.11883545;-0.22477722 +25911;4;17.442322;-23.690796;-49.79706 +25911;6;-1.5713924;-0.45540884;-0.07523086 +25911;7;0.03246318;-0.8980811;0.43863013;0.0;0.9971911;-5.352963E-4;-0.07489849;0.0;0.06749972 +25912;0;0.62112427;3.8673248;7.7587433 +25912;3;0.4548645;0.12799072;-0.22477722 +25912;12;0.13160145;0.18094619;0.696808;0.6814677 +25914;1;-0.6040409;4.2568655;8.8176155 +25915;0;0.578125;3.9148254;7.7635193 +25915;3;0.4402008;0.13594055;-0.22538757 +25915;2;-1.1663257;0.48209047;1.0009623; +25916;0;0.578125;3.9670868;7.730133 +25917;12;0.1321096;0.18196088;0.6962876;0.6816311 +25917;3;0.4225006;0.14326477;-0.22477722 +25919;0;0.59721375;4.009842;7.682434 +25919;1;-0.6127758;4.2747846;8.808339 +25919;3;0.4023285;0.14997864;-0.22416687 +25921;5;999.5826 +25922;4;18.043518;-23.091125;-49.49646 +25922;6;-1.4953164;-0.4798179;-0.07758155 +25922;7;0.11085672;-0.8845533;0.45307434;0.0;0.9914555;0.06689313;-0.11198817;0.0;0.06875194 +25923;9;2AEC2AEBC4E1;-71;-2147483648 +25924;0;0.602005;4.024109;7.7062836 +25924;3;0.38034058;0.15486145;-0.22538757 +25924;12;0.13254583;0.18295285;0.6957819;0.6817972 +25924;0;0.582901;4.0763702;7.7062836 +25924;3;0.35713196;0.15853882;-0.22599792 +25924;1;-0.6221112;4.291145;8.799726 +25926;0;0.602005;4.123871;7.7015076 +25927;12;0.13289945;0.18390809;0.69529575;0.6819673 +25927;3;0.33146667;0.16220093;-0.22477722 +25928;0;0.55900574;4.1713715;7.7253723 +25928;1;-0.63174474;4.305489;8.792028 +25929;3;0.3052063;0.16525269;-0.22355652 +25932;4;18.792725;-23.390198;-51.446533 +25932;6;-1.4339026;-0.49400938;-0.072233826 +25932;7;0.17001107;-0.8722021;0.45864993;0.0;0.9833914;0.1201504;-0.13603401;0.0;0.06354217 +25932;0;0.55422974;4.190384;7.8350525 +25932;3;0.27954102;0.17196655;-0.22477722 +25933;12;0.13316049;0.1847939;0.69483376;0.6821478 +25933;1;-0.64177215;4.3175993;8.785361 +25933;2;-1.215872;0.21648073;1.0506353; +25934;0;0.5207825;4.2046356;7.811203 +25934;3;0.24961853;0.17930603;-0.22599792 +25935;0;0.55422974;4.256897;7.8731995 +25936;12;0.13332291;0.18560675;0.6943986;0.6823385 +25936;3;0.22029114;0.18785095;-0.22538757 +25938;1;-0.6524433;4.3272743;8.779814 +25938;0;0.544693;4.2473907;7.9208984 +25938;3;0.18974304;0.19519043;-0.22477722 +25940;4;18.043518;-23.991394;-51.446533 +25940;6;-1.4564822;-0.49122486;-0.06865848 +25940;7;0.14594662;-0.87600076;0.45969805;0.0;0.98744136;0.10057782;-0.12183538;0.0;0.060492456 +25940;0;0.50645447;4.2046356;8.021057 +25941;3;0.15615845;0.20129395;-0.22416687 +25941;12;0.1333632;0.18634401;0.6939849;0.68255055 +25942;0;0.4443512;4.252136;8.025818 +25943;1;-0.66381365;4.334208;8.77554 +25943;3;0.12132263;0.20861816;-0.22111511 +25945;0;0.48735046;4.2283936;8.106903 +25945;12;0.13327223;0.18700264;0.6936116;0.68276757 +25946;3;0.08956909;0.21534729;-0.217453 +25948;0;0.4300232;4.2378845;8.14505 +25949;1;-0.6756724;4.338242;8.772641 +25949;3;0.05657959;0.22084045;-0.21318054 +25950;4;18.043518;-23.991394;-51.446533 +25950;6;-1.4765787;-0.47918725;-0.052746676 +25950;7;0.11814764;-0.8834343;0.4534148;0.0;0.9918933;0.08348225;-0.09580362;0.0;0.046784114 +25950;0;0.37747192;4.2378845;8.187988 +25950;3;0.022979736;0.22389221;-0.20951843 +25951;12;0.13304535;0.18756892;0.69328105;0.68299216 +25952;1;-0.68795156;4.3394637;8.771082 +25953;0;0.3201599;4.233139;8.2595215 +25953;3;-0.010604858;0.22511292;-0.20584106 +25953;2;-1.1487558;0.09630442;0.70619774; +25954;0;0.30104065;4.2046356;8.340591 +25955;12;0.13268986;0.18803923;0.692996;0.6832212 +25956;3;-0.04359436;0.22572327;-0.2003479 +25957;1;-0.7002677;4.337755;8.770952 +25957;0;0.26760864;4.1713715;8.378754 +25957;3;-0.07597351;0.22207642;-0.19546509 +25960;5;999.5826 +25960;4;19.242859;-22.491455;-51.14746 +25960;6;-1.4579715;-0.46172366;-0.031928103 +25960;7;0.12665921;-0.8895938;0.43883985;0.0;0.99153453;0.10079642;-0.081850186;0.0;0.028579926 +25961;12;0.13241485;0.18825682;0.6920293;0.6841938 +25961;0;0.22940063;4.1523743;8.426437 +25961;3;-0.109558105;0.2171936;-0.18997192 +25962;0;0.20072937;4.11911;8.512299 +25963;1;-0.71220845;4.33319;8.772247 +25963;3;-0.14439392;0.20925903;-0.18751526 +25964;0;0.114746094;4.052597;8.583832 +25964;12;0.13183874;0.18849061;0.6918336;0.6844386 +25964;3;-0.17860413;0.2000885;-0.18385315 +25966;0;0.09562683;3.9908295;8.669678 +25967;1;-0.7235149;4.3255334;8.775101 +25967;3;-0.21463013;0.18849182;-0.18141174 +25969;4;19.242859;-22.491455;-51.14746 +25969;6;-1.5271512;-0.43138006;-0.011029586 +25969;7;0.04823587;-0.90752447;0.41721997;0.0;0.9987857;0.03963419;-0.029261064;0.0;0.010018958 +25969;0;0.009643555;3.9290771;8.76506 +25969;3;-0.251297;0.17749023;-0.17712402 +25970;12;0.1311653;0.188578;0.6916762;0.68470293 +25971;0;-0.033355713;3.8293152;8.879532 +25971;1;-0.733925;4.3146243;8.779607 +25971;3;-0.2885437;0.16343689;-0.17408752 +25972;2;-0.8871507;0.25293827;0.21237278; +25973;0;-0.09068298;3.7913055;8.994003 +25974;12;0.13039885;0.18850228;0.69155526;0.68499225 +25974;3;-0.32582092;0.1506195;-0.1685791 +25976;0;-0.157547;3.6962738;9.117996 +25976;1;-0.7432152;4.3003488;8.785826 +25976;3;-0.36186218;0.13717651;-0.16186523 +25980;12;0.12956017;0.18824005;0.6914071;0.685373 +25980;4;18.492126;-22.790527;-50.846863 +25981;6;-1.6785094;-0.38508564;0.017276967 +25981;7;-0.11394073;-0.92139524;0.37154853;0.0;0.9933585;-0.09963183;0.057552908;0.0;-0.016010914 +25981;0;-0.24832153;3.6297607;9.213379 +25981;3;-0.39666748;0.12251282;-0.15513611 +25981;0;-0.3152008;3.5727692;9.318314 +25981;1;-0.7512918;4.2828236;8.793696 +25981;3;-0.4290619;0.10723877;-0.14842224 +25983;0;-0.36775208;3.4777374;9.451843 +25984;12;0.12862217;0.18781736;0.69136953;0.6857034 +25984;3;-0.45898438;0.09257507;-0.138031 +25985;0;-0.40596008;3.3827057;9.561539 +25986;1;-0.75791174;4.2623286;8.8030815 +25986;3;-0.4846344;0.076690674;-0.12887573 +25988;4;18.492126;-22.790527;-50.846863 +25988;6;-1.8282368;-0.33975756;0.042432126 +25988;7;-0.26804784;-0.91176414;0.3111856;0.0;0.962575;-0.2400518;0.12579478;0.0;-0.039994508 +25988;0;-0.43940735;3.2877045;9.680771 +25988;3;-0.5084686;0.061416626;-0.11911011 +25992;12;0.12762047;0.18722469;0.69137746;0.6860446 +25992;0;-0.49195862;3.2211914;9.771393 +25992;1;-0.7629191;4.239405;8.813711 +25992;2;-0.45454776;0.7287631;-0.57394314; +25992;3;-0.5274048;0.047973633;-0.10871887 +25993;0;-0.43463135;3.1641693;9.86676 +25993;12;0.12658295;0.18648136;0.6914311;0.6863851 +25993;3;-0.54389954;0.036376953;-0.097717285 +25995;0;-0.46806335;3.1404114;9.990768 +25995;1;-0.7663292;4.2147202;8.825247 +25995;3;-0.5554962;0.025985718;-0.08427429 +25997;5;999.5826 +25998;4;18.34259;-22.04132;-50.247192 +25998;6;-1.9156005;-0.30423892;0.046815354 +25998;7;-0.35083616;-0.89791995;0.26580784;0.0;0.9353718;-0.3224893;0.14519027;0.0;-0.044649053 +25998;0;-0.5110626;3.0976562;10.076614 +25998;3;-0.561615;0.013168335;-0.07267761 +25999;12;0.12554033;0.18561065;0.6914867;0.6867565 +26000;0;-0.5349426;3.0834198;10.119553 +26000;1;-0.76835704;4.1890306;8.837294 +26000;3;-0.5652771;0.0015716553;-0.060455322 +26002;0;-0.54927063;3.0073853;10.205383 +26003;12;0.12449212;0.18466255;0.6916261;0.6870625 +26003;3;-0.5603943;-0.0069885254;-0.04763794 +26005;0;-0.5445099;2.9361267;10.248322 +26005;1;-0.76897407;4.162924;8.849567 +26005;3;-0.548172;-0.01737976;-0.03541565 +26007;4;18.34259;-22.04132;-50.247192 +26007;6;-1.9978446;-0.2786514;0.053081706 +26007;7;-0.42688572;-0.8750837;0.22802888;0.0;0.9028658;-0.3982097;0.16205712;0.0;-0.051010236 +26007;0;-0.5874939;2.9266357;10.248322 +26007;3;-0.53167725;-0.026535034;-0.025634766 +26008;12;0.123473056;0.18365337;0.69180095;0.68734074 +26010;0;-0.60661316;2.8791046;10.310318 +26011;2;-0.24574476;1.1090984;-1.2727785; +26011;3;-0.51213074;-0.0332489;-0.0146484375 +26011;1;-0.76835734;4.1379333;8.861334 +26012;0;-0.6018219;2.8933716;10.362778 +26013;12;0.12253688;0.1826484;0.69199634;0.68757933 +26013;3;-0.4828186;-0.039367676;-0.0030517578 +26015;0;-0.54927063;2.8933716;10.391388 +26015;1;-0.76666677;4.114788;8.872252 +26016;3;-0.4516449;-0.041809082;0.005508423 +26017;4;17.892456;-21.890259;-50.09613 +26017;6;-2.0251572;-0.2712007;0.052809108 +26017;7;-0.45098194;-0.8657;0.21720687;0.0;0.89108306;-0.4228467;0.16483825;0.0;-0.050855286 +26017;0;-0.5206146;2.898117;10.400925 +26018;3;-0.4174347;-0.038146973;0.015274048 +26018;12;0.12170844;0.18168132;0.6921982;0.6877795 +26021;0;-0.49671936;2.898117;10.391388 +26022;1;-0.7643564;4.0943923;8.881882 +26022;3;-0.37835693;-0.034484863;0.02444458 +26023;0;-0.5110626;2.9266357;10.381866 +26023;12;0.12099938;0.18080866;0.6924077;0.68792367 +26023;3;-0.33802795;-0.028366089;0.034835815 +26024;9;2AEC2AEBC4E1;-62;-2147483648 +26025;1;-0.76204765;4.077363;8.88991 +26026;0;-0.5253906;2.931366;10.343704 +26026;3;-0.29466248;-0.020431519;0.043380737 +26027;4;17.593384;-22.190857;-52.3468 +26027;6;-2.0025208;-0.27581736;0.050749663 +26027;7;-0.43044624;-0.87391645;0.22580078;0.0;0.90129536;-0.4026219;0.15988123;0.0;-0.04881051 +26027;0;-0.5301666;2.931366;10.2912445 +26027;3;-0.2506714;-0.016159058;0.050094604 +26028;12;0.12041179;0.1800742;0.692617;0.6880088 +26029;0;-0.5062866;2.921875;10.272156 +26029;1;-0.7599625;4.0639944;8.896208 +26029;2;-0.23749274;1.1566477;-1.4609156; +26029;3;-0.2036438;-0.010040283;0.057434082 +26032;0;-0.47283936;2.9978943;10.229233 +26033;12;0.119952;0.1794967;0.69282174;0.68803376 +26033;3;-0.15965271;-2.746582E-4;0.06536865 +26034;1;-0.7581062;4.0547876;8.900566 +26035;0;-0.46328735;3.0644073;10.129074 +26035;3;-0.11445618;0.008880615;0.07026672 +26037;4;18.043518;-21.290588;-51.446533 +26037;6;-1.8953712;-0.29349208;0.045706518 +26037;7;-0.33110088;-0.9072585;0.25933418;0.0;0.9425812;-0.30526933;0.13546704;0.0;-0.04373685 +26037;0;-0.4298401;3.1214142;10.062302 +26038;3;-0.073532104;0.016830444;0.07637024 +26038;5;999.5826 +26038;12;0.119667806;0.17907788;0.69290084;0.68811285 +26040;1;-0.7567689;4.049545;8.903067 +26040;0;-0.46328735;3.1594238;9.952621 +26040;3;-0.03504944;0.024765015;0.0806427 +26043;0;-0.46806335;3.1736755;9.828613 +26043;12;0.11947955;0.17885736;0.69307774;0.68802476 +26045;1;-0.75594944;4.047808;8.903926 +26046;3;0.0022125244;0.03086853;0.08308411 +26046;0;-0.47763062;3.259201;9.737991 +26046;3;0.035812378;0.03881836;0.08552551 +26046;4;17.292786;-22.190857;-52.796936 +26046;6;-1.8404412;-0.32260895;0.04900889 +26046;7;-0.28103983;-0.9141412;0.29216874;0.0;0.9585707;-0.25264663;0.13157424;0.0;-0.04646199 +26046;0;-0.44418335;3.2971954;9.647385 +26046;3;0.063308716;0.044311523;0.08859253 +26047;12;0.11940584;0.17879541;0.6932384;0.6878918 +26048;0;-0.44895935;3.3399658;9.504303 +26048;1;-0.75558954;4.0491014;8.903369 +26048;2;-0.30562532;0.87971354;-0.98711205; +26048;3;0.08589172;0.050430298;0.09225464 +26050;0;-0.43463135;3.3827057;9.361221 +26051;12;0.119428344;0.17887126;0.6933821;0.6877233 +26051;3;0.106674194;0.05470276;0.09713745 +26053;0;-0.43940735;3.4539795;9.270599 +26053;1;-0.7555474;4.052632;8.901766 +26053;3;0.12132263;0.05958557;0.098358154 +26055;4;19.993591;-21.740723;-50.247192 +26056;6;-1.7141583;-0.3562747;0.047362495 +26056;7;-0.15905492;-0.92758816;0.3380559;0.0;0.9862721;-0.13389942;0.09663464;0.0;-0.044371665 +26056;0;-0.4298401;3.5014954;9.127518 +26056;3;0.13232422;0.060195923;0.10018921 +26056;12;0.11952236;0.1790489;0.6935179;0.68752366 +26061;1;-0.7556999;4.0577345;8.899427 +26061;0;-0.39163208;3.5965118;9.027374 +26061;3;0.13842773;0.064468384;0.103256226 +26061;0;-0.40119934;3.615509;8.889069 +26061;3;0.14393616;0.0675354;0.106292725 +26061;12;0.11966711;0.17929691;0.6936509;0.68729967 +26063;1;-0.75600874;4.0636663;8.896694 +26065;0;-0.41552734;3.6487732;8.812759 +26065;3;0.1433258;0.07119751;0.10813904 +26066;4;18.043518;-21.740723;-51.446533 +26066;6;-1.578849;-0.3921527;0.047115754 +26066;7;-0.026043013;-0.92405856;0.3813628;0.0;0.998713;-0.0074412823;0.050170906;0.0;-0.043523025 +26066;0;-0.38685608;3.7010345;8.6839905 +26066;3;0.1396637;0.07485962;0.109954834 +26066;12;0.11983417;0.1795842;0.69378716;0.687058 +26067;0;-0.37728882;3.6915283;8.631531 +26068;3;0.13294983;0.07913208;0.110580444 +26069;0;-0.28652954;3.7200317;8.531357 +26070;3;0.125;0.08401489;0.1124115 +26070;2;-0.3563788;0.5042386;-0.08631039; +26070;1;-0.75650007;4.0697913;8.893853 +26071;12;0.11999884;0.17988446;0.69393206;0.6868043 +26072;0;-0.35820007;3.796051;8.445526 +26072;3;0.11643982;0.088912964;0.114852905 +26072;1;-0.7572321;4.0755863;8.891136 +26074;4;18.94226;-21.141052;-50.39673 +26074;6;-1.4716496;-0.42208114;0.04238759 +26074;7;0.081621334;-0.9077584;0.4114763;0.0;0.99591357;0.09029727;0.0016533323;0.0;-0.038656007 +26075;0;-0.40119934;3.8958282;8.340591 +26075;3;0.10606384;0.09623718;0.11546326 +26075;12;0.12014886;0.18018405;0.69404924;0.68658113 +26077;5;999.5754 +26077;0;-0.36297607;3.962326;8.230911 +26078;1;-0.75842994;4.0808783;8.888607 +26078;3;0.09567261;0.09989929;0.11546326 +26080;0;-0.3390808;3.9765778;8.125992 +26080;12;0.12025306;0.1804832;0.69421786;0.6863138 +26080;3;0.087127686;0.10418701;0.11546326 +26082;0;-0.36775208;4.024109;8.08783 +26082;1;-0.7600091;4.085574;8.886314 +26083;3;0.08041382;0.105407715;0.11546326 +26084;4;19.692993;-20.690918;-51.74713 +26084;6;-1.2962961;-0.46127486;0.045438513 +26084;7;0.2513257;-0.86195946;0.44029668;0.0;0.9670474;0.2427356;-0.07680191;0.0;-0.04067554 +26084;0;-0.36775208;4.024109;8.025818 +26084;3;0.070632935;0.105407715;0.11729431 +26085;12;0.120314114;0.18077417;0.69439936;0.68604285 +26086;0;-0.37728882;4.1286316;7.9542847 +26086;1;-0.76172763;4.0897274;8.884256 +26086;2;-0.41453594;0.1566906;0.66192245; +26087;3;0.062072754;0.1035614;0.11546326 +26088;0;-0.37728882;4.1571198;7.887512 +26089;12;0.120351985;0.18105091;0.6945874;0.68577284 +26089;3;0.054748535;0.101745605;0.11302185 +26091;0;-0.39640808;4.2188873;7.8684235 +26091;1;-0.7633913;4.0933466;8.882446 +26091;3;0.047424316;0.09623718;0.109954834 +26093;4;17.892456;-21.890259;-51.14746 +26093;6;-1.2406238;-0.49164292;0.050337046 +26093;7;0.3013257;-0.8339423;0.4623235;0.0;0.95248896;0.28580675;-0.10525768;0.0;-0.044356313 +26093;0;-0.39640808;4.2426453;7.8302765 +26094;3;0.038864136;0.09074402;0.106918335 +26094;12;0.12037758;0.18129659;0.69474995;0.6855387 +26096;0;-0.4202881;4.252136;7.8016815 +26096;1;-0.76480925;4.0964026;8.880916 +26096;3;0.031539917;0.085250854;0.103256226 +26098;0;-0.42507935;4.275894;7.773056 +26099;12;0.120385535;0.18151215;0.69493353;0.6852942 +26099;3;0.024810791;0.07974243;0.098358154 +26101;0;-0.4298401;4.299652;7.7969055 +26101;1;-0.7659356;4.0988584;8.879685 +26101;3;0.017486572;0.07424927;0.09408569 +26103;4;19.392395;-23.091125;-51.446533 +26103;6;-1.2735265;-0.5033192;0.055073824 +26103;7;0.26708058;-0.8375654;0.47660473;0.0;0.962467;0.2565859;-0.088435486;0.0;-0.04821954 +26103;0;-0.44895935;4.3851776;7.76828 +26104;3;0.00831604;0.0687561;0.08918762 +26104;12;0.12038696;0.18169095;0.6951071;0.6850705 +26105;0;-0.4202881;4.432678;7.6728973 +26105;1;-0.7667837;4.1008186;8.878707 +26106;2;-0.36366844;-0.17606354;1.0750065; +26106;3;-0.001449585;0.061416626;0.08493042 +26108;0;-0.44895935;4.480179;7.677658 +26109;12;0.12038583;0.18183658;0.6952677;0.6848691 +26109;3;-0.010009766;0.053482056;0.078811646 +26110;0;-0.45851135;4.503952;7.677658 +26110;1;-0.7672534;4.1020765;8.878085 +26111;3;-0.017944336;0.045532227;0.07208252 +26113;4;19.242859;-20.541382;-51.597595 +26113;6;-1.0675766;-0.52975476;0.059649367 +26113;7;0.45500112;-0.75595725;0.4706407;0.0;0.8890037;0.4161473;-0.19103342;0.0;-0.05144277 +26113;0;-0.47763062;4.4754486;7.677658 +26113;3;-0.028930664;0.03515625;0.06536865 +26114;12;0.12070691;0.18170944;0.69415075;0.68597835 +26114;5;999.5754 +26115;0;-0.49671936;4.52771;7.691971 +26115;1;-0.7673035;4.102536;8.877869 +26115;3;-0.041152954;0.024154663;0.06048584 +26117;0;-0.45851135;4.560959;7.7205963 +26118;12;0.12068956;0.18175448;0.6942799;0.6858388 +26118;3;-0.052139282;0.01499939;0.05621338 +26120;0;-0.44418335;4.546707;7.687195 +26120;1;-0.7666181;4.1020226;8.878165 +26121;3;-0.06741333;0.0040130615;0.050720215 +26123;4;18.94226;-21.890259;-52.046204 +26123;6;-1.0985831;-0.5333902;0.05771806 +26123;7;0.42798;-0.766854;0.478297;0.0;0.90242213;0.3916732;-0.17951705;0.0;-0.049672756 +26123;0;-0.44895935;4.5894623;7.734909 +26123;3;-0.081466675;-0.007598877;0.04460144 +26123;12;0.12066637;0.18172967;0.69439614;0.6857317 +26125;0;-0.4298401;4.6084595;7.7635193 +26125;1;-0.7652127;4.100311;8.879078 +26126;2;-0.31918955;-0.43260384;1.1724501; +26126;3;-0.097351074;-0.01737976;0.039718628 +26127;9;2AEC2AEBC4E1;-69;-2147483648 +26128;0;-0.41073608;4.622711;7.8302765 +26128;12;0.120629594;0.18162553;0.69450104;0.6856596 +26129;3;-0.11323547;-0.02897644;0.03666687 +26129;0;-0.3534088;4.594223;7.8684235 +26129;1;-0.7629952;4.0972004;8.880704 +26130;3;-0.12484741;-0.03630066;0.031158447 +26132;4;19.093323;-22.04132;-50.9964 +26132;6;-1.1726211;-0.52804434;0.044884652 +26132;7;0.3665077;-0.79621947;0.4813591;0.0;0.9296074;0.33492488;-0.15380315;0.0;-0.03875808 +26132;0;-0.3390808;4.594223;7.887512 +26132;3;-0.1388855;-0.043640137;0.027496338 +26133;12;0.120575875;0.18143079;0.69459033;0.68563014 +26134;0;-0.3390808;4.5657043;7.9542847 +26134;1;-0.7601736;4.0928535;8.88295 +26135;3;-0.1547699;-0.050964355;0.022613525 +26136;0;-0.32476807;4.546707;8.025818 +26137;12;0.120496616;0.18116352;0.694681;0.6856229 +26137;3;-0.16882324;-0.055252075;0.02078247 +26139;0;-0.32476807;4.537201;8.083054 +26139;1;-0.75692034;4.087078;8.885886 +26139;3;-0.18041992;-0.060134888;0.015899658 +26142;4;19.392395;-23.091125;-52.6474 +26142;6;-1.2376136;-0.5111505;0.04015728 +26142;7;0.30822986;-0.82421774;0.47503638;0.0;0.9506674;0.28524932;-0.12192015;0.0;-0.035015058 +26142;0;-0.2817688;4.5419617;8.159363 +26143;9;52ADB5BC186F;-78;-2147483648 +26144;3;-0.19203186;-0.063797;0.016494751 +26144;12;0.12038415;0.18082239;0.69476914;0.6856434 +26144;1;-0.7533145;4.080068;8.889414 +26144;0;-0.2817688;4.4849396;8.2642975 +26144;3;-0.20181274;-0.0662384;0.015899658 +26145;2;-0.4343738;-0.47933626;0.87844944; +26146;0;-0.2722168;4.465927;8.340591 +26147;12;0.120236784;0.18041733;0.6948581;0.6856858 +26147;3;-0.20791626;-0.066848755;0.014678955 +26148;0;-0.26742554;4.4897003;8.407364 +26149;1;-0.7495318;4.072178;8.893351 +26149;3;-0.21463013;-0.066848755;0.015274048 +26151;0;-0.22921753;4.4421844;8.46936 +26152;3;-0.2195282;-0.0650177;0.015899658 +26152;4;17.593384;-21.440125;-51.14746 +26152;6;-1.2729284;-0.4829048;0.02705772 +26152;7;0.28136575;-0.8466497;0.45168322;0.0;0.9593014;0.25992295;-0.110366896;0.0;-0.02396074 +26152;12;0.12006515;0.17997254;0.69495237;0.68573725 +26152;5;999.5754 +26153;0;-0.21009827;4.4279175;8.536133 +26153;1;-0.7456989;4.063651;8.897572 +26154;3;-0.22257996;-0.061965942;0.015899658 +26156;0;-0.21487427;4.3851776;8.6410675 +26156;12;0.11988879;0.17948778;0.6949747;0.6858725 +26156;3;-0.22441101;-0.05708313;0.019561768 +26159;0;-0.19577026;4.356659;8.674438 +26159;1;-0.74207807;4.054703;8.901956 +26159;3;-0.22746277;-0.050964355;0.025054932 +26161;4;18.492126;-21.890259;-52.046204 +26161;6;-1.3452243;-0.46533674;0.022564808 +26161;7;0.213739;-0.8710306;0.4422911;0.0;0.9766828;0.19988188;-0.07834648;0.0;-0.020163793 +26161;0;-0.19099426;4.3329163;8.703064 +26162;3;-0.22929382;-0.046081543;0.026275635 +26162;12;0.11966767;0.17901123;0.6950847;0.6859242 +26164;0;-0.157547;4.3281555;8.73645 +26164;1;-0.7387317;4.045503;8.906418 +26165;3;-0.22807312;-0.041809082;0.029937744 +26166;12;0.11942266;0.17853922;0.6952134;0.6859595 +26167;0;-0.16233826;4.3043976;8.76506 +26167;3;-0.22441101;-0.038146973;0.03237915 +26167;2;-0.53586483;-0.35768795;0.34148312; +26168;0;-0.16233826;4.275894;8.855682 +26168;3;-0.22135925;-0.034484863;0.033599854 +26168;1;-0.73563033;4.036326;8.910838 +26170;4;19.692993;-20.690918;-51.446533 +26170;6;-1.3663838;-0.4497613;0.018329483 +26170;7;0.19515546;-0.88180184;0.42934835;0.0;0.98063344;0.18280458;-0.07028919;0.0;-0.016505707 +26171;0;-0.147995;4.3281555;8.917694 +26171;3;-0.2195282;-0.030807495;0.038497925 +26171;12;0.11925523;0.17801991;0.69500834;0.6863313 +26173;0;-0.12890625;4.280655;8.984451 +26173;1;-0.7327155;4.02736;8.915133 +26173;3;-0.21585083;-0.026535034;0.041549683 +26175;0;-0.147995;4.2854004;9.03215 +26175;12;0.118995704;0.17757796;0.69515586;0.6863414 +26175;3;-0.21157837;-0.019821167;0.045211792 +26177;0;-0.157547;4.266403;9.022598 +26177;1;-0.73008746;4.018642;8.919282 +26178;3;-0.2048645;-0.01737976;0.046432495 +26181;4;18.34259;-23.390198;-50.546265 +26181;6;-1.5368841;-0.4416399;0.017459603 +26181;7;0.026442658;-0.9035322;0.4277037;0.0;0.9995258;0.03065259;0.0029587885;0.0;-0.015783586 +26181;0;-0.171875;4.266403;9.075058 +26181;3;-0.19815063;-0.012481689;0.050094604 +26181;12;0.11873246;0.17716046;0.695315;0.68633366 +26182;0;-0.138443;4.256897;9.065521 +26183;1;-0.72772473;4.0104303;8.923171 +26183;3;-0.19203186;-0.011260986;0.05621338 +26183;2;-0.5915117;-0.2727561;-0.04286194; +26184;0;-0.157547;4.2188873;9.127518 +26185;12;0.1184764;0.1767732;0.6954796;0.686311 +26185;3;-0.185318;-0.007598877;0.058654785 +26187;0;-0.16233826;4.209381;9.13707 +26187;1;-0.72543204;4.0027204;8.926819 +26187;3;-0.17738342;-0.0039367676;0.062927246 +26189;4;18.94226;-21.890259;-52.046204 +26189;6;-1.4586102;-0.4316503;0.017765125 +26189;7;0.104547985;-0.9025669;0.41766348;0.0;0.99438894;0.10168241;-0.02917704;0.0;-0.016134797 +26190;0;-0.157547;4.223633;9.175232 +26190;3;-0.16577148;-0.0027160645;0.06904602 +26190;12;0.11823587;0.17641117;0.6956478;0.6862752 +26191;5;999.5754 +26192;0;-0.171875;4.2473907;9.16568 +26192;1;-0.7232467;3.9957805;8.930104 +26192;3;-0.15905762;-2.746582E-4;0.07330322 +26196;12;0.11801603;0.17608778;0.6958317;0.68620956 +26196;0;-0.15278625;4.2426453;9.184769 +26196;3;-0.14865112;0.0027923584;0.07698059 +26196;0;-0.17666626;4.266403;9.227692 +26197;1;-0.72108585;3.9896395;8.933024 +26197;3;-0.1376648;0.0046081543;0.08003235 +26199;4;19.692993;-22.04132;-52.6474 +26199;6;-1.4515736;-0.43300503;0.019142888 +26199;7;0.110943876;-0.9012655;0.4188222;0.0;0.99367493;0.10796338;-0.030892506;0.0;-0.017375112 +26199;0;-0.147995;4.2616425;9.222916 +26199;3;-0.12850952;0.008285522;0.08369446 +26200;12;0.11782167;0.17579903;0.69602436;0.6861216 +26202;0;-0.171875;4.299652;9.284912 +26203;1;-0.7190167;3.9844203;8.93552 +26203;2;-0.5741801;-0.2622316;-0.25642395; +26203;3;-0.11994934;0.010101318;0.08918762 +26205;12;0.117655665;0.17555174;0.6962207;0.6860143 +26205;0;-0.157547;4.290146;9.313538 +26205;3;-0.11199951;0.013168335;0.09284973 +26206;0;-0.16233826;4.323395;9.289688 +26206;1;-0.71699893;3.9799733;8.937664 +26206;3;-0.10345459;0.015609741;0.0965271 +26211;12;0.11751461;0.17534009;0.6964252;0.685885 +26211;4;18.492126;-22.190857;-51.14746 +26211;6;-1.4805552;-0.43552583;0.017473325 +26211;7;0.08276351;-0.9029592;0.42168102;0.0;0.9964434;0.08170594;-0.020612769;0.0;-0.015841356 +26211;0;-0.16233826;4.3329163;9.332611 +26211;3;-0.09429932;0.013763428;0.09591675 +26211;0;-0.17666626;4.366165;9.323074 +26211;3;-0.08879089;0.012542725;0.09713745 +26213;0;-0.171875;4.375656;9.351685 +26214;3;-0.081466675;0.007659912;0.0965271 +26214;12;0.11739958;0.17516243;0.6966322;0.6857398 +26214;1;-0.7150291;3.9763126;8.93945 +26216;0;-0.19577026;4.3614197;9.413681 +26216;1;-0.7128636;3.9732165;8.941 +26216;3;-0.07475281;0.0052337646;0.0953064 +26218;4;19.392395;-21.290588;-52.946472 +26218;6;-1.4028958;-0.43378183;0.020793358 +26218;7;0.15846056;-0.89462286;0.41777998;0.0;0.9871849;0.15163518;-0.04972371;0.0;-0.018866172 +26218;0;-0.157547;4.3614197;9.451843 +26218;3;-0.06863403;0.0015716553;0.0977478 +26219;12;0.11731212;0.17499706;0.6968347;0.6855912 +26220;0;-0.171875;4.3851776;9.4423065 +26221;1;-0.7104049;3.9706907;8.942318 +26221;2;-0.5598995;-0.3797109;-0.4236393; +26221;3;-0.064971924;-0.0027160645;0.09713745 +26223;0;-0.19099426;4.389923;9.4470825 +26223;12;0.11725928;0.17484531;0.6970277;0.6854428 +26224;3;-0.06008911;-0.0057678223;0.09713745 +26225;0;-0.20054626;4.370926;9.46138 +26225;1;-0.70765156;3.9685647;8.94348 +26226;3;-0.05519104;-0.010650635;0.0977478 +26228;4;18.94226;-21.440125;-52.3468 +26228;6;-1.4233218;-0.4326825;0.021193128 +26228;7;0.1381182;-0.89798987;0.41777694;0.0;0.9902289;0.13339908;-0.040637925;0.0;-0.01923862 +26228;0;-0.18144226;4.404175;9.4804535 +26229;3;-0.053375244;-0.011260986;0.098968506 +26229;12;0.11724074;0.17469132;0.69718784;0.68532234 +26229;5;999.58673 +26231;1;-0.7045834;3.9668133;8.944499 +26233;12;0.117242046;0.17454594;0.6973721;0.68517166 +26233;0;-0.19577026;4.389923;9.43277 +26234;3;-0.049697876;-0.015533447;0.0965271 +26234;0;-0.17666626;4.4184265;9.427994 +26234;3;-0.045425415;-0.019821167;0.0977478 +26235;0;-0.171875;4.432678;9.4423065 +26235;1;-0.701237;3.9653888;8.945394 +26235;3;-0.041763306;-0.021652222;0.0977478 +26237;4;18.193054;-21.440125;-51.597595 +26237;6;-1.4182557;-0.43884552;0.01820064 +26237;7;0.1442814;-0.89473134;0.42265671;0.0;0.98939955;0.13755138;-0.046563618;0.0;-0.016475089 +26237;0;-0.15278625;4.4231873;9.4423065 +26238;3;-0.03564453;-0.025924683;0.09713745 +26238;12;0.11726673;0.17440128;0.69754964;0.6850236 +26240;0;-0.16233826;4.44693;9.427994 +26240;1;-0.6976066;3.9643545;8.9461355 +26240;2;-0.5389733;-0.44649124;-0.5001726; +26240;3;-0.030761719;-0.028366089;0.0977478 +26242;0;-0.12411499;4.4754486;9.427994 +26243;12;0.11731854;0.17426248;0.697722;0.6848745 +26243;3;-0.028320312;-0.029586792;0.09713745 +26244;1;-0.69374174;3.963772;8.946694 +26245;0;-0.16233826;4.480179;9.389847 +26245;3;-0.019760132;-0.031417847;0.098968506 +26247;4;17.593384;-21.141052;-50.846863 +26247;6;-1.3966581;-0.44512683;0.01728698 +26247;7;0.16590326;-0.88890594;0.4269921;0.0;0.9860186;0.15637642;-0.05756492;0.0;-0.015601692 +26247;0;-0.157547;4.4849396;9.394608 +26247;3;-0.013061523;-0.033859253;0.09957886 +26248;12;0.1173979;0.17413066;0.69787705;0.6847364 +26249;0;-0.10499573;4.513443;9.346909 +26250;1;-0.68967545;3.9638;8.946997 +26250;3;-0.0038909912;-0.035079956;0.09957886 +26252;0;-0.07635498;4.5086975;9.332611 +26252;12;0.11750732;0.17401646;0.69804025;0.6845803 +26252;3;0.0046539307;-0.033859253;0.10140991 +26255;0;-0.100234985;4.494446;9.327835 +26255;1;-0.6854574;3.9645739;8.946978 +26255;3;0.014434814;-0.034484863;0.10079956 +26256;4;19.242859;-21.890259;-51.597595 +26256;6;-1.4239645;-0.44898498;0.010745379 +26257;7;0.1416826;-0.8911942;0.43092805;0.0;0.9898648;0.13180429;-0.052870583;0.0;-0.0096801985 +26257;0;-0.052444458;4.53244;9.337372 +26257;3;0.023590088;-0.0320282;0.10018921 +26257;12;0.11764844;0.17392686;0.6981979;0.684418 +26259;0;-0.028564453;4.503952;9.313538 +26259;1;-0.6812338;3.966164;8.946595 +26259;2;-0.60243124;-0.53513026;-0.41301727; +26260;3;0.03337097;-0.031417847;0.09713745 +26261;0;-0.033355713;4.5514526;9.275375 +26262;3;0.041305542;-0.029586792;0.0965271 +26262;12;0.11782087;0.17387034;0.69834816;0.68424934 +26264;0;-0.042907715;4.5847015;9.265839 +26264;1;-0.67720056;3.968606;8.945819 +26264;3;0.049865723;-0.027145386;0.09591675 +26266;4;18.043518;-22.04132;-52.197266 +26266;6;-1.3804705;-0.4594716;0.0046307095 +26266;7;0.18716031;-0.8801023;0.43633798;0.0;0.9823205;0.16955853;-0.07934804;0.0;-0.0041504297 +26267;0;-0.01423645;4.522949;9.265839 +26267;3;0.06085205;-0.025314331;0.09347534 +26267;12;0.11801983;0.17385082;0.69848084;0.68408465 +26267;5;999.58673 +26268;0;-0.047683716;4.560959;9.256302 +26269;1;-0.67338526;3.9717827;8.944697 +26269;3;0.06880188;-0.024093628;0.09225464 +26271;0;-0.047683716;4.537201;9.21814 +26272;12;0.11823854;0.17387068;0.69860786;0.6839121 +26272;3;0.078567505;-0.022262573;0.09162903 +26274;0;-0.023803711;4.556198;9.208603 +26274;1;-0.6697635;3.9757588;8.943202 +26274;3;0.08529663;-0.020431519;0.08981323 +26276;4;18.492126;-22.190857;-52.046204 +26276;6;-1.3975713;-0.45945853;0.0025849368 +26276;7;0.17123024;-0.88287884;0.4372701;0.0;0.98522824;0.15448499;-0.07388875;0.0;-0.0023168575 +26276;0;0.023986816;4.5847015;9.227692 +26277;3;0.0920105;-0.019195557;0.08918762 +26277;12;0.1184837;0.17392667;0.6987237;0.68373704 +26278;0;-0.01423645;4.5894623;9.199066 +26278;1;-0.66628134;3.9804046;8.941396 +26278;2;-0.66506034;-0.58367753;-0.29862595; +26279;3;0.09262085;-0.015533447;0.08859253 +26281;12;0.11874736;0.17401482;0.69883007;0.6835602 +26281;0;0.009643555;4.5799713;9.19429 +26282;3;0.09933472;-0.01737976;0.08796692 +26283;0;-0.019012451;4.603714;9.203827 +26283;1;-0.66298187;3.9853635;8.939432 +26283;3;0.10055542;-0.02104187;0.086746216 +26285;4;18.043518;-22.640991;-52.946472 +26285;6;-1.3805732;-0.4638033;0.0020657086 +26285;7;0.18817015;-0.8782252;0.43967316;0.0;0.98213476;0.16910334;-0.08255594;0.0;-0.0018474809 +26286;0;-0.009475708;4.5847015;9.179993 +26286;3;0.10055542;-0.022262573;0.08552551 +26287;12;0.11901732;0.17412119;0.698929;0.68338495 +26288;0;-0.019012451;4.5657043;9.151382 +26288;3;0.09996033;-0.027755737;0.08615112 +26288;1;-0.6595002;3.990531;8.937385 +26290;0;-0.023803711;4.57045;9.14183 +26291;12;0.1193025;0.17422846;0.6990246;0.6832101 +26291;3;0.09996033;-0.03263855;0.08615112 +26293;1;-0.65566325;3.995639;8.935384 +26293;0;0.009643555;4.5657043;9.14183 +26293;3;0.094451904;-0.039978027;0.08308411 +26295;4;18.94226;-22.491455;-53.546143 +26295;6;-1.3736811;-0.46319127;-0.001054882 +26295;7;0.19630332;-0.87730724;0.43794647;0.0;0.9805428;0.17520566;-0.08853732;0.0;9.4373E-4 +26295;0;0.023986816;4.560959;9.184769 +26296;3;0.09017944;-0.046081543;0.082473755 +26296;12;0.11959996;0.17431815;0.6991178;0.68303984 +26299;1;-0.6513135;4.000361;8.933589 +26299;0;0.009643555;4.560959;9.21814 +26299;3;0.08407593;-0.05340576;0.0806427 +26300;0;0.0048675537;4.5657043;9.208603 +26301;2;-0.6745605;-0.5778458;-0.24343681; +26301;12;0.11990321;0.17437412;0.699205;0.6828831 +26303;3;0.07978821;-0.058303833;0.08003235 +26306;0;0.019195557;4.53244;9.203827 +26306;3;0.0761261;-0.063797;0.07759094 +26307;1;-0.6464729;4.004607;8.932038 +26307;12;0.12020941;0.17439045;0.6992869;0.6827413 +26308;17;1;38dead6d7725;5627;4806;-70; +26309;17;1;38dead6d60ff;10381;3680;-69; +26309;17;1;1c1bb5efa29a;-949;4902;-69; +26310;17;1;1c1bb5ecd182;2559;1321;-58; +26310;1;-0.6412782;4.0083756;8.930722 +26313;12;0.12051234;0.1743731;0.6993669;0.68261033 +26313;1;-0.6358454;4.011719;8.929609 +26313;4;18.34259;-22.340393;-51.74713 +26313;6;-1.4200681;-0.4575899;-0.002085603 +26313;7;0.15106875;-0.8869483;0.4364641;0.0;0.98852146;0.13470984;-0.06839976;0.0;0.0018710345 +26313;0;0.019195557;4.53244;9.208603 +26313;3;0.06819153;-0.06806946;0.07637024 +26313;5;999.58673 +26313;0;-0.0046844482;4.503952;9.232452 +26313;3;0.063308716;-0.071121216;0.074539185 +26314;0;0.052627563;4.4991913;9.246765 +26314;3;0.063308716;-0.07296753;0.06904602 +26314;0;0.04307556;4.4849396;9.246765 +26314;3;0.06085205;-0.074798584;0.06719971 +26315;4;18.193054;-22.190857;-51.14746 +26315;6;-1.445727;-0.4515941;-0.004658413 +26315;7;0.12675925;-0.8927246;0.43240592;0.0;0.9919246;0.112238325;-0.059059553;0.0;0.0041914037 +26315;0;-0.01423645;4.503952;9.294464 +26315;3;0.061462402;-0.07418823;0.066589355 +26315;12;0.12080884;0.17433159;0.6994409;0.68249273 +26317;1;-0.63050395;4.0148935;8.928561 +26317;0;0.009643555;4.44693;9.265839 +26317;2;-0.6740071;-0.49879122;-0.30958462; +26317;3;0.0602417;-0.07052612;0.06536865 +26320;0;-0.01423645;4.4516907;9.270599 +26320;12;0.12109942;0.17428277;0.69950664;0.6823862 +26320;3;0.062683105;-0.066848755;0.065979004 +26321;0;-0.0046844482;4.4231873;9.284912 +26322;1;-0.6254492;4.0180306;8.9275055 +26322;3;0.06575012;-0.06440735;0.066589355 +26325;4;18.193054;-21.890259;-52.046204 +26325;6;-1.4272727;-0.44457722;5.045226E-4 +26325;7;0.14281665;-0.89351016;0.4257263;0.0;0.98974895;0.1291277;-0.06101507;0.0;-4.554792E-4 +26325;0;-0.033355713;4.413666;9.256302 +26325;3;0.06880188;-0.061965942;0.065979004 +26327;12;0.12138272;0.1742402;0.69955343;0.68229884 +26327;1;-0.62065256;4.0213923;8.926327 +26327;0;-0.028564453;4.4089203;9.261063 +26327;3;0.07002258;-0.058303833;0.06536865 +26329;0;-0.07156372;4.432678;9.270599 +26329;12;0.1216605;0.17422058;0.6996186;0.6821875 +26329;3;0.07673645;-0.055252075;0.066589355 +26333;1;-0.6162138;4.0250063;8.925005 +26334;0;-0.100234985;4.3994293;9.261063 +26334;3;0.08407593;-0.051574707;0.0647583 +26334;0;-0.11456299;4.370926;9.251541 +26334;3;0.086517334;-0.047302246;0.06536865 +26335;4;19.093323;-22.04132;-52.6474 +26335;6;-1.4276226;-0.4413392;0.0123824915 +26335;7;0.1374392;-0.89492905;0.42451462;0.0;0.99044704;0.12901306;-0.048687883;0.0;-0.01119572 +26335;12;0.12193361;0.17422217;0.6996823;0.68207294 +26337;1;-0.6121594;4.0290837;8.923445 +26337;2;-0.5789383;-0.38714552;-0.33955002; +26337;0;-0.12890625;4.3851776;9.251541 +26337;3;0.0932312;-0.041809082;0.0647583 +26338;0;-0.11933899;4.3946686;9.237228 +26339;12;0.122212954;0.17425685;0.6997414;0.68195343 +26339;3;0.098739624;-0.03753662;0.0635376 +26341;1;-0.60855716;4.0336347;8.921635 +26342;0;-0.143219;4.370926;9.179993 +26342;3;0.10484314;-0.033859253;0.06109619 +26343;4;17.442322;-20.991516;-51.446533 +26343;6;-1.3764174;-0.44432765;0.015599945 +26343;7;0.18655466;-0.8858963;0.42471766;0.0;0.9823436;0.17440166;-0.06771318;0.0;-0.014084617 +26344;0;-0.15278625;4.389923;9.151382 +26345;3;0.11155701;-0.029586792;0.05987549 +26345;12;0.122623526;0.17423499;0.699282;0.68235654 +26345;5;999.58673 +26346;1;-0.6054048;4.038725;8.919545 +26346;0;-0.16233826;4.380417;9.132294 +26346;3;0.12072754;-0.02897644;0.05682373 +26348;0;-0.16711426;4.380417;9.127518 +26349;12;0.12290825;0.17434105;0.6993286;0.6822304 +26349;3;0.1274414;-0.02897644;0.054382324 +26351;1;-0.6024872;4.044497;8.917128 +26351;0;-0.17666626;4.4089203;9.089371 +26351;3;0.13354492;-0.027145386;0.050720215 +26353;4;17.593384;-21.141052;-49.197388 +26353;6;-1.4162745;-0.4515529;0.01943413 +26353;7;0.14549977;-0.88905;0.43407357;0.0;0.9892038;0.13848154;-0.047945574;0.0;-0.017485159 +26354;12;0.123211965;0.1744815;0.6993609;0.6821066 +26355;0;-0.21009827;4.366165;9.08461 +26355;3;0.14149475;-0.025314331;0.050094604 +26355;1;-0.59985095;4.0508637;8.914415 +26357;2;-0.4579124;-0.34333897;-0.21958542; +26357;0;-0.24354553;4.413666;9.075058 +26357;3;0.15065002;-0.025314331;0.04826355 +26358;0;-0.2817688;4.375656;9.0607605 +26358;12;0.12353038;0.17465419;0.6993793;0.681986 +26359;3;0.1567688;-0.021652222;0.0476532 +26360;0;-0.29130554;4.3946686;9.013062 +26360;1;-0.597477;4.0578794;8.911383 +26360;3;0.16409302;-0.020431519;0.045211792 +26363;4;18.193054;-22.190857;-51.597595 +26363;6;-1.3969007;-0.4534639;0.03230913 +26363;7;0.15899213;-0.8853774;0.4368389;0.0;0.98685265;0.15553425;-0.04394133;0.0;-0.029038755 +26364;0;-0.3295288;4.389923;9.003525 +26364;3;0.17141724;-0.017974854;0.04399109 +26365;12;0.123868644;0.174859;0.6993788;0.6818726 +26365;0;-0.3438568;4.4184265;8.989227 +26365;1;-0.5954315;4.065466;8.908062 +26365;3;0.18058777;-0.0149383545;0.041549683 +26367;0;-0.39163208;4.456436;9.013062 +26368;12;0.12421659;0.17509876;0.69937545;0.6817512 +26369;3;0.18669128;-0.010040283;0.042160034 +26369;0;-0.43940735;4.470688;8.994003 +26369;1;-0.593813;4.0738635;8.904332 +26370;3;0.19586182;-0.0069885254;0.039718628 +26372;4;17.593384;-22.491455;-51.597595 +26372;6;-1.3642669;-0.46082935;0.048816778 +26372;7;0.18358144;-0.8766493;0.44472882;0.0;0.98203224;0.18367283;-0.043321285;0.0;-0.04370704 +26372;0;-0.42507935;4.465927;8.989227 +26372;3;0.20135498;-0.0027160645;0.039718628 +26373;12;0.124580845;0.17538325;0.699362;0.6816254 +26375;1;-0.5925716;4.0828424;8.900301 +26375;2;-0.25952804;-0.3548255;-0.10519314; +26375;0;-0.40596008;4.4754486;8.989227 +26375;3;0.2086792;0.0015716553;0.038497925 +26378;0;-0.44418335;4.560959;8.974915 +26378;12;0.124955736;0.17570578;0.69934064;0.6814956 +26378;3;0.21479797;0.0046081543;0.039108276 +26383;0;-0.43940735;4.5894623;8.970154 +26383;1;-0.5917198;4.092484;8.895928 +26383;3;0.21968079;0.008880615;0.038497925 +26383;4;18.193054;-20.840454;-52.3468 +26383;6;-1.2241315;-0.47242802;0.048946362 +26383;7;0.31841636;-0.8374932;0.4440903;0.0;0.94694924;0.30254734;-0.10840765;0.0;-0.043567672 +26383;0;-0.4202881;4.6179657;8.960602 +26383;3;0.22395325;0.012542725;0.038497925 +26383;12;0.12568437;0.17582113;0.69797325;0.68273264 +26383;5;999.58044 +26384;1;-0.5911813;4.1026006;8.891304 +26384;0;-0.43940735;4.646469;8.974915 +26384;3;0.22640991;0.015609741;0.03727722 +26386;0;-0.43463135;4.7224884;8.970154 +26386;12;0.12607694;0.17621382;0.69794345;0.6825894 +26387;3;0.22946167;0.021102905;0.03727722 +26388;0;-0.43463135;4.7652435;8.994003 +26389;1;-0.59099275;4.1130657;8.88648 +26389;3;0.22946167;0.024765015;0.037887573 +26391;4;18.043518;-22.640991;-51.74713 +26391;6;-1.2843856;-0.48673928;0.048287004 +26391;7;0.26052412;-0.8478578;0.46180552;0.0;0.9645243;0.24970096;-0.08568747;0.0;-0.042662505 +26391;0;-0.43463135;4.7700043;8.974915 +26391;3;0.23007202;0.029052734;0.037887573 +26391;12;0.12646897;0.17663199;0.6979107;0.68244225 +26393;0;-0.41073608;4.827011;8.994003 +26393;1;-0.5911369;4.1236486;8.881564 +26393;2;-0.18982619;-0.57177687;-0.09355068; +26394;3;0.2257843;0.03515625;0.037887573 +26396;12;0.1268536;0.17706926;0.69788027;0.68228865 +26396;0;-0.42507935;4.8982697;9.008301 +26396;3;0.22395325;0.041870117;0.04032898 +26398;1;-0.59176224;4.1341295;8.876649 +26403;12;0.1275129;0.17730609;0.6966964;0.68331337 +26403;1;-0.59291357;4.1442814;8.871837 +26406;12;0.1278386;0.17776513;0.69668406;0.6831458 +26406;0;-0.44895935;4.950531;8.989227 +26407;3;0.22029114;0.047973633;0.041549683 +26407;4;18.792725;-22.340393;-54.14734 +26407;6;-1.1630728;-0.5028683;0.04990269 +26407;7;0.37395737;-0.80437785;0.4616625;0.0;0.92641556;0.3474328;-0.14506851;0.0;-0.043706786 +26407;0;-0.44895935;5.007553;9.03215 +26407;3;0.21174622;0.05470276;0.042160034 +26407;0;-0.49195862;5.017044;9.079834 +26407;3;0.19952393;0.061416626;0.045822144 +26407;0;-0.5015106;5.0788116;9.08461 +26407;3;0.18913269;0.0675354;0.0476532 +26407;0;-0.5445099;5.0883026;9.127518 +26408;1;-0.5945845;4.153551;8.86739 +26408;3;0.17448425;0.07485962;0.04826355 +26410;4;18.94226;-21.890259;-51.597595 +26410;6;-1.183159;-0.5078039;0.05958524 +26410;7;0.35052302;-0.8089816;0.47189242;0.0;0.9351074;0.33030373;-0.12834926;0.0;-0.052035637 +26410;0;-0.5445099;5.121567;9.156143 +26410;3;0.15553284;0.080963135;0.050720215 +26411;12;0.12810785;0.17820965;0.69669235;0.6829711 +26412;0;-0.5874939;5.1025696;9.19429 +26412;1;-0.59681463;4.161556;8.863486 +26413;2;-0.12887996;-0.8811636;-0.21816444; +26413;3;0.13417053;0.085250854;0.051940918 +26415;0;-0.6113739;5.15007;9.242004 +26415;12;0.12830485;0.17862648;0.6967215;0.68279546 +26415;3;0.11277771;0.089523315;0.05316162 +26417;0;-0.63049316;5.1833344;9.308762 +26417;1;-0.5994421;4.1677914;8.860378 +26417;3;0.086517334;0.093185425;0.054992676 +26419;4;18.792725;-22.640991;-52.197266 +26420;6;-1.1887605;-0.5070945;0.06762786 +26420;7;0.34150627;-0.8111389;0.4747916;0.0;0.93802124;0.32589555;-0.117932945;0.0;-0.05907247 +26420;0;-0.68782043;5.173828;9.356461 +26421;3;0.05718994;0.09562683;0.054992676 +26421;12;0.12842667;0.17898211;0.69673824;0.68266237 +26421;5;999.58044 +26423;0;-0.70692444;5.188095;9.404144 +26423;1;-0.6024011;4.1717896;8.858295 +26423;3;0.031539917;0.09623718;0.058044434 +26424;0;-0.7499237;5.154831;9.451843 +26424;12;0.1284389;0.17926867;0.69682086;0.6825005 +26425;3;9.918213E-4;0.09867859;0.06109619 +26426;0;-0.75468445;5.1595764;9.4852295 +26427;1;-0.6054738;4.1733713;8.857341 +26427;3;-0.028930664;0.09806824;0.0635376 +26429;4;17.593384;-22.190857;-50.39673 +26429;6;-1.210273;-0.49687013;0.07939692 +26429;7;0.31627625;-0.82256496;0.47260588;0.0;0.94610155;0.3101073;-0.09340988;0.0;-0.06972284 +26429;0;-0.7785797;5.1453247;9.513855 +26430;3;-0.058258057;0.09562683;0.065979004 +26430;12;0.12835297;0.17946571;0.69693667;0.6823466 +26431;0;-0.835907;5.1785736;9.575851 +26431;1;-0.608456;4.172386;8.8576 +26432;2;0.080040455;-1.0054026;-0.55663204; +26432;3;-0.08451843;0.09440613;0.07026672 +26434;0;-0.883667;5.140564;9.628311 +26434;12;0.12816846;0.17955977;0.6970854;0.6822046 +26434;3;-0.11077881;0.09196472;0.07575989 +26436;0;-0.9219055;5.1453247;9.671219 +26436;1;-0.6112251;4.1690583;8.858976 +26437;3;-0.13522339;0.08769226;0.08003235 +26439;4;17.593384;-22.491455;-52.046204 +26439;6;-1.1817584;-0.4870647;0.095037475 +26439;7;0.33649176;-0.8176747;0.46709892;0.0;0.9379451;0.33519;-0.08891998;0.0;-0.08385925 +26439;0;-0.9553375;5.074051;9.718933 +26440;3;-0.1572113;0.08401489;0.08369446 +26440;12;0.12792887;0.1795322;0.69715613;0.6821845 +26441;0;-0.98876953;5.0122986;9.742767 +26441;1;-0.613588;4.163559;8.861399 +26442;3;-0.17616272;0.07974243;0.086746216 +26444;0;-1.0317688;4.9457855;9.776154 +26444;12;0.12758783;0.17942627;0.6973741;0.6820535 +26445;3;-0.19386292;0.07485962;0.08981323 +26446;0;-1.0365448;4.917267;9.799988 +26446;1;-0.6155364;4.1562977;8.864673 +26446;3;-0.20791626;0.06997681;0.09225464 +26448;4;16.693115;-23.091125;-50.546265 +26448;6;-1.3472764;-0.46283063;0.10537821 +26448;7;0.17463948;-0.8725328;0.45627585;0.0;0.980124;0.19834262;0.004146822;0.0;-0.09411719 +26449;0;-1.0317688;4.850769;9.881073 +26449;3;-0.22257996;0.0663147;0.09408569 +26449;12;0.12719488;0.17923534;0.69761723;0.6819285 +26451;0;-1.0126648;4.8127594;9.9049225 +26451;1;-0.61698025;4.147624;8.868633 +26451;2;0.33564484;-0.8515277;-0.8934393; +26451;3;-0.23356628;0.06263733;0.09713745 +26453;0;-0.99354553;4.7794952;9.981247 +26454;12;0.12676625;0.17897151;0.6978795;0.68180925 +26454;3;-0.24273682;0.05836487;0.09957886 +26456;0;-0.9696655;4.703491;10.043243 +26456;3;-0.2531128;0.05407715;0.10385132 +26456;1;-0.6179431;4.1378565;8.873128 +26458;4;19.242859;-22.190857;-53.996277 +26458;6;-1.3335567;-0.43620798;0.096250705 +26458;7;0.19446635;-0.8809736;0.4313566;0.0;0.97703433;0.21301332;-0.005427502;0.0;-0.087103195 +26458;0;-0.9696655;4.65123;10.076614 +26459;3;-0.25923157;0.044906616;0.10507202 +26459;12;0.12661631;0.17843024;0.69697803;0.68290013 +26459;5;999.58044 +26460;0;-0.97442627;4.61322;10.095703 +26460;1;-0.6183093;4.127206;8.878062 +26461;3;-0.2665558;0.03514099;0.10569763 +26463;0;-0.99354553;4.52771;10.176773 +26463;12;0.12614584;0.17805305;0.6972725;0.68278503 +26464;3;-0.2732849;0.020477295;0.106918335 +26465;0;-0.98399353;4.465927;10.181549 +26465;1;-0.6177407;4.1158066;8.883391 +26465;3;-0.27694702;0.0039978027;0.106918335 +26468;12;0.1256842;0.17761151;0.6975699;0.6826814 +26469;4;19.093323;-22.340393;-50.247192 +26470;6;-1.5515622;-0.41165075;0.09634556 +26470;7;-0.019339599;-0.916292;0.4000436;0.0;0.99591845;0.017626226;0.08851893;0.0;-0.088160455 +26470;0;-0.98876953;4.413666;10.205383 +26470;3;-0.27755737;-0.01739502;0.10751343 +26470;0;-0.9792175;4.3186646;10.2816925 +26470;1;-0.61568785;4.1039457;8.889019 +26471;2;0.336496;-0.46659136;-1.2381086; +26471;3;-0.27511597;-0.040603638;0.10873413 +26474;12;0.12526274;0.17709403;0.69786257;0.68259424 +26474;0;-0.9553375;4.2949066;10.334152 +26474;3;-0.2732849;-0.06442261;0.10935974 +26476;1;-0.611596;4.092083;8.894769 +26476;0;-0.9219055;4.252136;10.400925 +26476;3;-0.2689972;-0.087646484;0.10873413 +26478;4;18.94226;-21.890259;-51.597595 +26478;6;-1.5888712;-0.38672042;0.08840585 +26478;7;-0.05129704;-0.92599964;0.37402308;0.0;0.9953302;-0.016739197;0.09506633;0.0;-0.08177055 +26478;0;-0.850235;4.166626;10.472473 +26479;12;0.12492957;0.17649253;0.69811106;0.68255705 +26479;3;-0.26228333;-0.11022949;0.106918335 +26480;1;-0.6054317;4.0804205;8.900547 +26480;0;-0.8215637;4.1571198;10.53447 +26480;3;-0.25801086;-0.13101196;0.106918335 +26483;0;-0.7833557;4.0621033;10.620316 +26483;12;0.12467607;0.17582817;0.69837445;0.68250537 +26487;1;-0.5974239;4.0691123;8.906263 +26489;12;0.12450999;0.17510957;0.6986203;0.6824687 +26489;3;-0.24884033;-0.14994812;0.10751343 +26489;0;-0.73558044;4.028839;10.658463 +26489;3;-0.24029541;-0.16400146;0.10813904 +26490;4;18.043518;-22.640991;-51.74713 +26490;6;-1.7443444;-0.36060825;0.06890449 +26490;7;-0.19619673;-0.92162687;0.3348295;0.0;0.9784461;-0.16157192;0.12859951;0.0;-0.06442171 +26490;0;-0.68304443;4.000351;10.687088 +26490;3;-0.22685242;-0.17315674;0.10751343 +26490;1;-0.58813274;4.058552;8.911698 +26490;2;0.18818766;-0.06326771;-1.6411495; +26492;12;0.124421395;0.17437269;0.6988512;0.6824371 +26494;0;-0.6925812;3.933838;10.734772 +26494;3;-0.21401978;-0.18171692;0.106292725 +26494;0;-0.6018219;3.9290771;10.77771 +26494;1;-0.5781134;4.049042;8.916678 +26497;3;-0.19937134;-0.18537903;0.106918335 +26497;0;-0.5636139;3.872055;10.811081 +26497;3;-0.18348694;-0.18659973;0.106292725 +26497;4;17.892456;-22.491455;-51.597595 +26497;6;-1.7980366;-0.3434917;0.05208583 +26497;7;-0.24206676;-0.9173781;0.31594494;0.0;0.9690204;-0.21212924;0.1264933;0.0;-0.04902103 +26497;0;-0.55882263;3.862564;10.825394 +26497;3;-0.16699219;-0.18415833;0.10507202 +26498;12;0.1244015;0.17365128;0.6990625;0.6824084 +26498;5;999.58044 +26499;17;1;38dead6d7725;9775;3141;-71; +26500;17;1;38dead6d60ff;9865;2736;-66; +26500;17;1;1c1bb5efa29a;6963;1499;-63; +26501;17;1;1c1bb5ecd182;3316;255;-56; +26501;1;-0.5679487;4.0407557;8.921089 +26501;0;-0.5445099;3.8007965;10.787231 +26501;3;-0.14927673;-0.18232727;0.10569763 +26502;12;0.124433264;0.1729723;0.69926286;0.6823697 +26502;0;-0.48718262;3.7390442;10.811081 +26503;3;-0.13095093;-0.1798706;0.10447693 +26504;0;-0.4202881;3.7485352;10.83017 +26504;1;-0.5580033;4.033961;8.924791 +26504;3;-0.11262512;-0.17559814;0.102630615 +26506;4;17.892456;-22.491455;-51.14746 +26507;6;-1.8363751;-0.3329813;0.038787693 +26507;7;-0.27450112;-0.9119386;0.30498734;0.0;0.9608882;-0.24805103;0.123144686;0.0;-0.03664797 +26507;0;-0.37728882;3.6915283;10.877853 +26507;3;-0.09552002;-0.16949463;0.10079956 +26507;12;0.12451492;0.1723616;0.6994475;0.68232006 +26509;1;-0.5482806;4.028549;8.927838 +26509;2;-0.088213444;0.2308898;-1.9001961; +26509;0;-0.36297607;3.6772919;10.916 +26509;3;-0.07597351;-0.16339111;0.10018921 +26512;12;0.12464069;0.17181584;0.699617;0.682261 +26512;0;-0.3152008;3.6582794;10.887405 +26512;3;-0.05519104;-0.15361023;0.098968506 +26514;1;-0.53918815;4.024783;8.93009 +26514;0;-0.2817688;3.6535187;10.873093 +26514;3;-0.03564453;-0.1444397;0.09713745 +26516;4;17.442322;-21.740723;-51.74713 +26516;6;-1.8139943;-0.32406047;0.02590852 +26516;7;-0.24873292;-0.92005485;0.30270618;0.0;0.96826077;-0.22827369;0.10179513;0.0;-0.024557242 +26516;0;-0.2817688;3.591751;10.811081 +26516;3;-0.017318726;-0.13711548;0.09347534 +26516;12;0.124810204;0.1713551;0.69974816;0.6822114 +26518;1;-0.5309313;4.022608;8.931564 +26519;0;-0.2817688;3.5394897;10.815857 +26519;3;0.002822876;-0.13284302;0.08918762 +26521;0;-0.26264954;3.4919891;10.801544 +26521;12;0.12500273;0.17099069;0.6998846;0.6821277 +26521;3;0.021148682;-0.12611389;0.08918762 +26523;0;-0.24354553;3.4444885;10.796783 +26523;1;-0.52325374;4.021966;8.932307 +26523;3;0.038253784;-0.11878967;0.08552551 +26527;4;16.992188;-22.640991;-51.74713 +26527;6;-1.9184891;-0.30874836;0.022553407 +26527;7;-0.3470855;-0.8957055;0.27792686;0.0;0.9375873;-0.32461804;0.12471199;0.0;-0.021485137 +26527;0;-0.21966553;3.3874664;10.77771 +26527;3;0.053527832;-0.1096344;0.08369446 +26527;12;0.12523396;0.17070661;0.6999994;0.6820386 +26527;1;-0.516307;4.0226645;8.932397 +26528;0;-0.24832153;3.3447113;10.75386 +26528;2;-0.2797433;0.50391054;-1.8819141; +26528;3;0.070632935;-0.099853516;0.082473755 +26530;0;-0.24354553;3.358963;10.691864 +26530;12;0.1254905;0.17050463;0.7000975;0.6819413 +26530;3;0.08589172;-0.087646484;0.0806427 +26532;0;-0.18144226;3.3637238;10.625092 +26532;1;-0.51027864;4.024766;8.931796 +26532;3;0.10543823;-0.07481384;0.0806427 +26535;4;18.043518;-20.991516;-50.9964 +26535;6;-1.8288823;-0.30655837;0.017075112 +26535;7;-0.26017526;-0.9218022;0.28738397;0.0;0.9654243;-0.24333107;0.09352082;0.0;-0.016278243 +26535;0;-0.17666626;3.3209534;10.563095 +26535;3;0.12132263;-0.060150146;0.0806427 +26535;12;0.12578522;0.17037748;0.7001122;0.6819036 +26537;5;999.58044 +26537;1;-0.50537544;4.0283203;8.930472 +26537;0;-0.20533752;3.2259216;10.443863 +26537;3;0.1396637;-0.048538208;0.082473755 +26539;0;-0.21009827;3.2306824;10.3198395 +26540;12;0.12607162;0.1703646;0.70019066;0.68177336 +26540;3;0.1579895;-0.03326416;0.08308411 +26543;1;-0.50160694;4.0334005;8.928391 +26543;0;-0.21966553;3.2164307;10.276932 +26543;3;0.17326355;-0.021057129;0.08308411 +26544;4;18.193054;-22.491455;-52.3468 +26544;6;-1.8941494;-0.30325317;0.021371368 +26544;7;-0.32372588;-0.9049101;0.2762954;0.0;0.9459311;-0.30324882;0.11512845;0.0;-0.020394642 +26544;0;-0.21487427;3.1499176;10.119553 +26545;3;0.19036865;-0.011276245;0.08369446 +26545;12;0.12637183;0.17045468;0.70026594;0.681618 +26548;1;-0.49889907;4.0398774;8.925615 +26548;2;-0.32045865;0.7866168;-1.4584045; +26548;0;-0.22442627;3.145172;10.024155 +26548;3;0.20684814;3.3569336E-4;0.08552551 +26549;12;0.12668476;0.17064245;0.7003357;0.68144125 +26553;1;-0.4970337;4.0478816;8.9220915 +26554;0;-0.25787354;3.1404114;9.881073 +26554;3;0.22518921;0.00642395;0.08796692 +26554;0;-0.2817688;3.1309204;9.771393 +26554;3;0.240448;0.014373779;0.08796692 +26554;4;17.292786;-22.491455;-53.546143 +26554;6;-1.874969;-0.30996042;0.028828105 +26554;7;-0.30776784;-0.9086283;0.28226513;0.0;0.9510654;-0.28523123;0.118817955;0.0;-0.027450519 +26554;0;-0.29130554;3.0834198;9.728455 +26554;3;0.2563324;0.018035889;0.08981323 +26555;12;0.12703522;0.17091022;0.7003453;0.681299 +26556;1;-0.49570066;4.0572553;8.917908 +26556;0;-0.2817688;3.08815;9.623535 +26556;3;0.2746582;0.025360107;0.090408325 +26558;0;-0.26742554;3.0834198;9.470917 +26559;12;0.1274053;0.17126442;0.70040554;0.6810789 +26560;3;0.28871155;0.033309937;0.09284973 +26561;0;-0.2960968;3.102417;9.323074 +26561;3;0.306427;0.040634155;0.09347534 +26561;1;-0.49487576;4.068151;8.912989 +26563;4;17.892456;-23.240662;-52.046204 +26563;6;-1.895074;-0.3210903;0.031748895 +26563;7;-0.32795978;-0.89943665;0.28888753;0.0;0.9442113;-0.30233988;0.13059667;0.0;-0.030121207 +26564;0;-0.3199768;3.1214142;9.222916 +26564;12;0.12781194;0.17170094;0.7004592;0.68083763 +26564;3;0.3210907;0.047958374;0.09591675 +26566;0;-0.3343048;3.0691528;9.070297 +26566;1;-0.4946958;4.0805006;8.9073515 +26566;2;-0.23493773;0.9790416;-0.60635567; +26566;3;0.33514404;0.052246094;0.0953064 +26568;0;-0.39640808;3.078659;8.922455 +26568;12;0.12824634;0.17221878;0.700508;0.6805749 +26568;3;0.35162354;0.0546875;0.09957886 +26571;0;-0.39640808;3.078659;8.893829 +26571;1;-0.49495938;4.094265;8.901018 +26571;3;0.36628723;0.05407715;0.10018921 +26573;4;17.292786;-23.54126;-51.14746 +26573;6;-1.9103125;-0.33294025;0.044541657 +26573;7;-0.3464223;-0.89113617;0.29303238;0.0;0.9371344;-0.31474268;0.15071943;0.0;-0.042081755 +26573;0;-0.38208008;3.0691528;8.78891 +26573;3;0.37973022;0.05834961;0.103256226 +26574;12;0.12871869;0.17280708;0.7005508;0.68029255 +26574;5;999.57666 +26575;0;-0.37252808;3.102417;8.703064 +26575;1;-0.49522558;4.1092577;8.894092 +26575;3;0.39317322;0.06262207;0.10569763 +26578;0;-0.4298401;3.0929108;8.593384 +26578;3;0.4047699;0.06752014;0.106918335 +26578;12;0.12923595;0.17344837;0.70058787;0.67999303 +26580;0;-0.47763062;3.1166687;8.521835 +26580;1;-0.49589244;4.1254387;8.88656 +26580;3;0.41577148;0.073013306;0.10751343 +26583;4;19.093323;-22.640991;-52.6474 +26583;6;-1.747086;-0.350111;0.05598928 +26583;7;-0.19400008;-0.924776;0.32734263;0.0;0.9795921;-0.16473861;0.11515346;0.0;-0.052565195 +26583;0;-0.45851135;3.1404114;8.455063 +26583;3;0.4267578;0.07972717;0.11180115 +26584;12;0.12978292;0.17415205;0.70062244;0.6796732 +26585;0;-0.48718262;3.1736755;8.321533 +26585;1;-0.49699932;4.1426854;8.878471 +26585;2;-0.103475034;1.0392075;0.22519016; +26585;3;0.44082642;0.0864563;0.11424255 +26587;0;-0.5349426;3.2069397;8.249985 +26588;12;0.13035232;0.17491795;0.70065457;0.6793344 +26588;3;0.45181274;0.092559814;0.11668396 +26590;1;-0.49865848;4.161133;8.869747 +26590;0;-0.5540619;3.2116852;8.130753 +26590;3;0.46220398;0.09805298;0.119140625 +26592;4;18.492126;-22.491455;-52.3468 +26592;6;-1.6589358;-0.3754018;0.0680388 +26592;7;-0.11265189;-0.9267489;0.3583936;0.0;0.9916191;-0.08189532;0.09992191;0.0;-0.06325177 +26592;0;-0.5874939;3.2116852;8.068741 +26592;3;0.47135925;0.09866333;0.12402344 +26593;12;0.13097036;0.17573135;0.7005839;0.6790785 +26594;0;-0.6113739;3.244934;7.9638214 +26594;1;-0.500654;4.1805325;8.860509 +26595;3;0.4805298;0.10110474;0.1295166 +26597;12;0.13158612;0.17661804;0.70061874;0.67869335 +26597;0;-0.59706116;3.29245;7.901825 +26598;3;0.48846436;0.104766846;0.13623047 +26599;0;-0.6018219;3.3209534;7.8398285 +26599;1;-0.5026204;4.2009797;8.85072 +26600;3;0.4915161;0.10722351;0.14234924 +26601;4;17.892456;-23.840332;-51.597595 +26601;6;-1.6721276;-0.39963046;0.076614425 +26602;7;-0.13048822;-0.91647935;0.37820405;0.0;0.9889395;-0.093187146;0.11538972;0.0;-0.070508555 +26607;0;-0.6687012;3.368454;7.7921295 +26607;12;0.13223568;0.1775506;0.70066386;0.6782771 +26607;12;0.13290164;0.1785011;0.7007245;0.6778346 +26607;1;-0.5045415;4.22188;8.840661 +26607;2;0.065752506;0.94500923;0.88010406; +26607;3;0.49824524;0.105392456;0.14967346 +26608;0;-0.65437317;3.3922272;7.7062836 +26608;3;0.4988556;0.108444214;0.15760803 +26608;0;-0.64004517;3.4112244;7.653824 +26608;3;0.49946594;0.11210632;0.1637268 +26609;17;1;38dead6d7725;11059;2461;-75; +26610;17;1;38dead6d60ff;8432;1720;-62; +26610;17;1;1c1bb5efa29a;6511;1314;-63; +26611;17;1;1c1bb5ecd182;1842;1137;-55; +26611;0;-0.65437317;3.4302368;7.5918274 +26611;1;-0.5062999;4.2430725;8.830407 +26611;3;0.49702454;0.11515808;0.17105103 +26611;4;16.842651;-23.54126;-51.14746 +26611;6;-1.5671512;-0.42299008;0.08598191 +26611;7;-0.031619262;-0.91185963;0.4092827;0.0;0.9964279;0.0033238512;0.08438471;0.0;-0.07830739 +26611;0;-0.6639252;3.449234;7.563202 +26612;3;0.4915161;0.116989136;0.17532349 +26612;12;0.13357805;0.17946284;0.70080036;0.67736906 +26613;5;999.57666 +26613;0;-0.63526917;3.4729767;7.467819 +26614;3;0.4854126;0.120651245;0.18083191 +26614;1;-0.508039;4.2641563;8.820147 +26616;0;-0.67349243;3.525238;7.434433 +26616;12;0.13424529;0.18042763;0.70090455;0.6768729 +26616;3;0.47747803;0.12249756;0.18510437 +26618;0;-0.67349243;3.5680084;7.353348 +26619;1;-0.5098334;4.2848616;8.810002 +26619;3;0.46769714;0.124313354;0.18937683 +26621;4;16.842651;-23.54126;-51.14746 +26621;6;-1.436816;-0.45011738;0.09133508 +26621;7;0.0936967;-0.8923268;0.4415585;0.0;0.99220806;0.12027481;0.032516222;0.0;-0.08212346 +26621;0;-0.64482117;3.606018;7.3342896 +26621;3;0.45793152;0.12371826;0.19303894 +26622;12;0.13489227;0.18138272;0.7010295;0.67635953 +26623;0;-0.6782532;3.6867828;7.2913513 +26624;1;-0.51151925;4.304937;8.800112 +26624;3;0.4426422;0.12371826;0.19793701 +26624;2;0.11635953;0.79077625;1.3348293; +26626;0;-0.6925812;3.7342834;7.300888 +26626;12;0.13551375;0.18231489;0.7011739;0.67583466 +26627;3;0.42738342;0.12249756;0.20281982 +26628;0;-0.6687012;3.7200317;7.229355 +26628;1;-0.512984;4.323956;8.790697 +26628;3;0.41027832;0.117614746;0.20709229 +26631;4;17.74292;-23.991394;-50.546265 +26631;6;-1.3924817;-0.47350714;0.09223559 +26631;7;0.13528246;-0.8758631;0.46320894;0.0;0.9874105;0.15785585;0.010105152;0.0;-0.081970975 +26632;0;-0.63049316;3.7580414;7.215042 +26632;3;0.3870697;0.11515808;0.2119751 +26632;12;0.13610052;0.18319593;0.7013401;0.67530584 +26633;0;-0.64482117;3.8007965;7.1959686 +26633;1;-0.5138851;4.341538;8.781975 +26633;3;0.36201477;0.10966492;0.21687317 +26637;0;-0.67349243;3.8483124;7.172119 +26637;3;0.33636475;0.10722351;0.22114563 +26637;12;0.1366467;0.18400738;0.7015367;0.67477053 +26638;1;-0.51428825;4.3571615;8.77421 +26639;0;-0.67349243;3.9005737;7.2007446 +26639;3;0.3100891;0.10295105;0.22724915 +26641;4;17.74292;-23.991394;-50.546265 +26641;6;-1.3028208;-0.49461934;0.093259625 +26641;7;0.22100109;-0.848736;0.48042253;0.0;0.97182333;0.23304582;-0.035343118;0.0;-0.08196348 +26641;0;-0.67349243;3.938568;7.2007446 +26641;3;0.28076172;0.09928894;0.2315216 +26642;12;0.13713336;0.18472332;0.7017662;0.6742373 +26643;1;-0.51414496;4.3707104;8.767477 +26644;0;-0.68304443;3.9860992;7.191208 +26644;2;0.12419951;0.5387492;1.5505238; +26644;3;0.24777222;0.09378052;0.23518372 +26645;0;-0.7260437;4.0668488;7.181656 +26645;12;0.13755625;0.18534322;0.7020335;0.67370254 +26646;3;0.21540833;0.088897705;0.24130249 +26648;1;-0.5134272;4.3816476;8.762059 +26648;0;-0.6782532;4.085861;7.186432 +26648;3;0.17875671;0.07911682;0.2449646 +26650;4;17.593384;-24.591064;-50.39673 +26650;6;-1.2582861;-0.5150721;0.09410094 +26650;7;0.2620443;-0.82810616;0.49555317;0.0;0.9615854;0.26755905;-0.06136714;0.0;-0.081771225 +26650;0;-0.68304443;4.1381226;7.224579 +26650;3;0.1421051;0.0693512;0.24984741 +26651;12;0.13789889;0.18583472;0.7023353;0.67318237 +26651;5;999.57666 +26652;0;-0.68782043;4.1381226;7.2532043 +26652;1;-0.511751;4.389641;8.758155 +26652;3;0.10055542;0.056518555;0.25413513 +26655;12;0.13815862;0.1861748;0.7026801;0.6726752 +26657;0;-0.65437317;4.1476135;7.300888 +26657;3;0.05718994;0.04185486;0.25779724 +26657;1;-0.5087673;4.3942356;8.756024 +26658;0;-0.64004517;4.223633;7.31044 +26658;3;0.011978149;0.025970459;0.260849 +26659;4;17.593384;-24.591064;-50.39673 +26659;6;-1.2409072;-0.5222489;0.08732952 +26659;7;0.28154236;-0.81996566;0.49838775;0.0;0.9565667;0.280757;-0.078458846;0.0;-0.07559229 +26659;0;-0.6257019;4.2426453;7.3724365 +26660;3;-0.037490845;0.013748169;0.26391602 +26660;12;0.13833714;0.18633497;0.70306635;0.6721903 +26662;0;-0.62094116;4.280655;7.4248962 +26663;1;-0.5043687;4.3950257;8.755882 +26663;2;0.13182431;0.23226976;1.4710436; +26663;3;-0.085128784;-2.89917E-4;0.26879883 +26665;0;-0.6018219;4.3329163;7.4582825 +26665;12;0.13842222;0.1862911;0.703494;0.67173743 +26665;3;-0.13095093;-0.00944519;0.27001953 +26667;0;-0.63526917;4.323395;7.553665 +26667;3;-0.17675781;-0.020446777;0.27061462 +26667;1;-0.4987719;4.391839;8.757801 +26670;4;16.992188;-24.290466;-51.446533 +26670;6;-1.1933225;-0.51832795;0.08390334 +26670;7;0.32868043;-0.8074948;0.48981774;0.0;0.94163144;0.32016075;-0.10405438;0.0;-0.072797045 +26670;0;-0.64482117;4.3091583;7.644287 +26670;3;-0.22380066;-0.030212402;0.27124023 +26670;12;0.13841192;0.18602832;0.7039028;0.67138404 +26672;1;-0.49234667;4.384635;8.761774 +26672;0;-0.67349243;4.299652;7.7205963 +26673;3;-0.26472473;-0.04182434;0.27061462 +26677;0;-0.64482117;4.299652;7.8302765 +26677;12;0.13826486;0.18558542;0.70441353;0.67100114 +26677;3;-0.3062744;-0.047317505;0.27001953 +26677;0;-0.6639252;4.275894;7.98291 +26677;3;-0.34780884;-0.05342102;0.26817322 +26678;1;-0.4851179;4.373686;8.767647 +26682;4;16.992188;-24.290466;-51.446533 +26682;6;-1.3102876;-0.49031124;0.08297735 +26682;7;0.21897356;-0.8524205;0.47479445;0.0;0.9729872;0.2272266;-0.040787894;0.0;-0.0731175 +26682;0;-0.6639252;4.2473907;8.06398 +26682;3;-0.38812256;-0.05831909;0.26513672 +26682;0;-0.7021332;4.2188873;8.192749 +26682;1;-0.47754008;4.359061;8.775344 +26682;3;-0.42538452;-0.063201904;0.2632904 +26682;2;0.14858681;0.072626114;0.9669914; +26682;12;0.13800569;0.18496042;0.70495576;0.6706575 +26683;0;-0.65914917;4.185623;8.364441 +26685;12;0.137623;0.18417153;0.70552576;0.67035383 +26686;3;-0.4638672;-0.06503296;0.26023865 +26686;0;-0.72125244;4.142868;8.483673 +26686;1;-0.46973228;4.3409443;8.78474 +26686;3;-0.4992981;-0.06503296;0.25779724 +26688;4;16.842651;-23.54126;-50.09613 +26688;6;-1.4678141;-0.45285326;0.08481258 +26688;7;0.06556333;-0.89443845;0.44235888;0.0;0.9949368;0.09243827;0.0394453;0.0;-0.07617228 +26688;0;-0.7403717;4.0668488;8.588608 +26689;3;-0.53411865;-0.06686401;0.25413513 +26689;12;0.13712503;0.18322815;0.7060929;0.67011714 +26690;5;999.57666 +26690;0;-0.7881317;4.009842;8.731674 +26691;1;-0.46208853;4.3195;8.79571 +26691;3;-0.56588745;-0.067474365;0.25169373 +26693;0;-0.816803;3.9053192;8.81752 +26693;12;0.13649121;0.18215893;0.70670867;0.6698889 +26694;3;-0.5939789;-0.07054138;0.24803162 +26696;0;-0.835907;3.8340607;8.979691 +26697;3;-0.62086487;-0.07359314;0.2437439 +26698;1;-0.45454562;4.2950506;8.808066 +26699;4;18.043518;-22.640991;-49.046326 +26699;6;-1.6507627;-0.40198267;0.09282112 +26699;7;-0.11568496;-0.91734624;0.38091058;0.0;0.98961663;-0.07351361;0.12351017;0.0;-0.08529948 +26706;0;-0.86935425;3.8103027;9.103683 +26706;3;-0.64346313;-0.0778656;0.23947144 +26706;0;-0.8120117;3.7437897;9.199066 +26706;3;-0.6660614;-0.083358765;0.23518372 +26706;0;-0.831131;3.663025;9.294464 +26707;3;-0.6874542;-0.09068298;0.2315216 +26707;0;-0.850235;3.615509;9.46138 +26707;3;-0.703949;-0.099853516;0.2278595 +26707;1;-0.4469229;4.268141;8.8215275 +26707;1;-0.43901175;4.239058;8.835937 +26707;12;0.13574657;0.18097097;0.7073414;0.6696944 +26707;12;0.13491939;0.17967741;0.7079813;0.66953367 +26707;2;0.30676183;0.30874872;0.03516102; +26708;4;17.442322;-23.091125;-51.74713 +26708;6;-1.7790709;-0.36367097;0.08962301 +26708;7;-0.23709098;-0.9143998;0.32811686;0.0;0.9678795;-0.19324853;0.16082397;0.0;-0.083649345 +26708;0;-0.835907;3.5442505;9.566299 +26708;3;-0.7186127;-0.10900879;0.22236633 +26708;12;0.13407807;0.17824575;0.7084307;0.66960996 +26709;0;-0.7881317;3.4824982;9.652161 +26710;1;-0.4304558;4.2080503;8.851166 +26710;3;-0.7332611;-0.119400024;0.21748352 +26712;0;-0.7833557;3.4207153;9.699844 +26714;12;0.13314559;0.17675123;0.70907193;0.6695135 +26714;1;-0.42128095;4.175865;8.866837 +26717;12;0.13220067;0.17518605;0.7096961;0.6694508 +26718;3;-0.74365234;-0.13040161;0.21260071 +26718;0;-0.7785797;3.3827057;9.761841 +26718;3;-0.7503662;-0.1426239;0.20831299 +26718;4;17.892456;-22.491455;-52.3468 +26718;6;-1.8389682;-0.33259457;0.07958899 +26718;7;-0.2891606;-0.9114141;0.2927635;0.0;0.9543264;-0.25044838;0.16290087;0.0;-0.075147994 +26718;0;-0.8072357;3.3304443;9.790451 +26718;3;-0.7540436;-0.1572876;0.20465088 +26722;17;1;38dead6d7725;9067;4138;-76; +26722;17;1;38dead6d60ff;10619;1531;-66; +26723;17;1;1c1bb5efa29a;7502;1490;-68; +26723;17;1;1c1bb5ecd182;3535;1616;-55; +26725;1;-0.41124725;4.142917;8.882749 +26725;2;0.3673188;0.6826315;-0.7565346; +26725;12;0.13126993;0.17355382;0.71030295;0.66941553 +26725;1;-0.40007076;4.1100574;8.89851 +26726;0;-0.7594757;3.2877045;9.8572235 +26726;3;-0.7503662;-0.17315674;0.19915771 +26726;0;-0.71647644;3.2306824;9.923996 +26726;3;-0.739975;-0.18537903;0.1960907 +26726;0;-0.69737244;3.1594238;9.962158 +26726;3;-0.72654724;-0.19636536;0.19181824 +26726;4;16.693115;-23.390198;-51.74713 +26726;6;-2.025769;-0.30640513;0.06988814 +26726;7;-0.45728564;-0.8564351;0.239601;0.0;0.8868241;-0.41897044;0.19495293;0.0;-0.0665788 +26727;0;-0.65914917;3.1404114;10.057541 +26727;3;-0.70700073;-0.20675659;0.18815613 +26727;12;0.13039441;0.17188181;0.7108785;0.669407 +26728;5;999.57544 +26729;0;-0.6161499;3.1166687;10.110016 +26729;1;-0.3880287;4.0782475;8.913666 +26729;3;-0.6831665;-0.21408081;0.18388367 +26731;0;-0.5301666;3.111908;10.110016 +26731;12;0.12960024;0.17022078;0.7114251;0.66940504 +26731;3;-0.65141296;-0.21958923;0.1796112 +26733;0;-0.5158386;3.0834198;10.143387 +26733;1;-0.37537634;4.0484676;8.927772 +26734;3;-0.6202545;-0.2238617;0.17715454 +26736;4;17.74292;-23.991394;-51.446533 +26736;6;-2.0457947;-0.29474798;0.0508109 +26736;7;-0.46986756;-0.85094297;0.23477748;0.0;0.8813981;-0.43761453;0.17785071;0.0;-0.04859878 +26736;0;-0.49671936;3.0644073;10.229233 +26736;3;-0.58421326;-0.2238617;0.17227173 +26737;12;0.12890851;0.1686187;0.7119318;0.6694053 +26738;0;-0.43463135;3.0644073;10.200623 +26738;1;-0.3625107;4.021376;8.940538 +26739;2;0.19560426;0.9089327;-1.1566925; +26739;3;-0.54512024;-0.22142029;0.16677856 +26741;0;-0.3534088;3.0311584;10.21492 +26741;12;0.12833355;0.16711505;0.71239746;0.6693975 +26741;3;-0.5023651;-0.21531677;0.1625061 +26743;0;-0.3199768;3.0358887;10.253082 +26743;1;-0.34993586;3.997578;8.951705 +26744;3;-0.45593262;-0.2079773;0.15701294 +26745;4;17.593384;-24.591064;-52.046204 +26745;6;-2.0679896;-0.28773814;0.03119774 +26745;7;-0.4845085;-0.8427906;0.23442578;0.0;0.874275;-0.4573517;0.16270393;0.0;-0.029910294 +26746;0;-0.3104248;3.0691528;10.248322 +26746;3;-0.40766907;-0.195755;0.15272522 +26746;12;0.12787406;0.16575572;0.7128158;0.669378 +26748;1;-0.33822298;3.9777687;8.960975 +26748;0;-0.27697754;3.1071625;10.172012 +26748;3;-0.35757446;-0.18354797;0.14967346 +26751;12;0.12753598;0.16458659;0.7131851;0.66933775 +26751;0;-0.26264954;3.135666;10.152924 +26751;3;-0.3050537;-0.16949463;0.14294434 +26753;1;-0.32773995;3.9623582;8.968189 +26753;0;-0.25787354;3.1641693;10.071854 +26753;3;-0.2531128;-0.15116882;0.13990784 +26755;4;16.093445;-22.340393;-51.74713 +26755;6;-1.9387033;-0.30430242;0.02559779 +26755;7;-0.3667012;-0.89021283;0.27028006;0.0;0.9300183;-0.34313896;0.131612;0.0;-0.024419066 +26756;0;-0.21966553;3.2069397;10.000305 +26756;3;-0.2012024;-0.13406372;0.13562012 +26757;12;0.12731807;0.16363683;0.7135069;0.66926914 +26758;1;-0.3188468;3.9515252;8.973288 +26758;2;-0.06602654;0.8433423;-1.1656218; +26758;0;-0.22442627;3.2116852;9.947845 +26759;3;-0.14927673;-0.11817932;0.13012695 +26760;0;-0.20054626;3.3019562;9.876312 +26761;12;0.12721168;0.16292675;0.713783;0.66916806 +26762;3;-0.10101318;-0.10046387;0.12646484 +26763;0;-0.21009827;3.3542175;9.785706 +26764;1;-0.3115575;3.9452496;8.976305 +26764;3;-0.052749634;-0.08274841;0.122177124 +26765;4;16.392517;-23.390198;-52.6474 +26765;6;-1.8844656;-0.33014607;0.021466617 +26765;7;-0.31509882;-0.8998378;0.30166963;0.0;0.9488416;-0.2918876;0.12042101;0.0;-0.020305753 +26765;0;-0.18621826;3.449234;9.671219 +26766;3;-0.010009766;-0.06259155;0.11607361 +26766;12;0.12721771;0.16245624;0.7140118;0.6690372 +26767;5;999.57544 +26768;1;-0.30600777;3.9432418;8.977378 +26768;0;-0.19099426;3.5014954;9.571075 +26768;3;0.026641846;-0.0460968;0.110580444 +26770;0;-0.18144226;3.5585022;9.456619 +26771;12;0.12731685;0.1622166;0.7141993;0.6688764 +26772;3;0.061462402;-0.0289917;0.106918335 +26772;0;-0.17666626;3.6012573;9.304001 +26773;1;-0.30216146;3.9446816;8.976875 +26773;3;0.08834839;-0.0131073;0.102630615 +26775;4;16.54358;-22.190857;-51.14746 +26775;6;-1.7064689;-0.36924574;0.018985922 +26775;7;-0.14202131;-0.9240298;0.35496327;0.0;0.98970526;-0.12614049;0.06761735;0.0;-0.017705204 +26775;0;-0.18144226;3.6915283;9.16568 +26775;3;0.11155701;9.3078613E-4;0.09713745 +26775;12;0.12748247;0.16217516;0.7143496;0.6686943 +26777;0;-0.18621826;3.7247925;9.027374 +26777;1;-0.29985005;3.9487858;8.975148 +26777;3;0.12866211;0.014373779;0.090408325 +26777;2;-0.13627517;0.43939185;-0.5139408; +26781;0;-0.18144226;3.8007965;8.893829 +26781;12;0.12768993;0.1622928;0.71447164;0.66849583 +26781;3;0.13842773;0.021697998;0.08552551 +26783;0;-0.171875;3.862564;8.793686 +26784;3;0.14271545;0.029037476;0.078811646 +26784;1;-0.29878953;3.9546154;8.972616 +26787;4;16.842651;-24.14093;-52.046204 +26787;6;-1.6369113;-0.4138021;0.019542783 +26787;7;-0.07389447;-0.91359824;0.39984718;0.0;0.9971055;-0.060490612;0.046058767;0.0;-0.017892208 +26787;0;-0.157547;3.9480896;8.669678 +26787;3;0.14393616;0.030853271;0.07330322 +26789;12;0.12791789;0.16252163;0.7145675;0.6682942 +26790;0;-0.18144226;3.9860992;8.550446 +26794;3;0.1396637;0.033309937;0.066589355 +26795;0;-0.13366699;4.024109;8.459839 +26795;12;0.12814283;0.16279545;0.7146413;0.66810554 +26795;3;0.12988281;0.033309937;0.06109619 +26795;0;-0.10499573;4.090622;8.326294 +26795;3;0.12132263;0.030853271;0.05253601 +26795;4;17.292786;-23.240662;-51.597595 +26795;6;-1.4520614;-0.4566236;0.012609472 +26795;7;0.1129262;-0.891227;0.4392746;0.0;0.9935391;0.106319845;-0.03970517;0.0;-0.011317286 +26795;1;-0.29846528;3.9610448;8.969791 +26795;1;-0.298446;3.9673874;8.966989 +26795;0;-0.11456299;4.1618805;8.2595215 +26795;3;0.10972595;0.025970459;0.047042847 +26795;12;0.12835793;0.1630754;0.71469903;0.6679341 +26796;0;-0.100234985;4.223633;8.149826 +26796;2;-0.18117207;-0.026304483;0.44497013; +26797;1;-0.29846472;3.9731102;8.964454 +26797;3;0.095062256;0.01864624;0.039718628 +26799;12;0.12855329;0.16332582;0.71473825;0.66779345 +26800;0;-0.100234985;4.252136;8.078278 +26800;3;0.0773468;0.00642395;0.0317688 +26803;0;-0.08111572;4.299652;8.025818 +26803;3;0.06085205;-0.0051727295;0.023223877 +26803;1;-0.29804546;3.9777427;8.962413 +26804;4;16.392517;-22.340393;-51.74713 +26804;6;-1.2759175;-0.49179825;0.010106504 +26804;7;0.28604272;-0.8434378;0.45474395;0.0;0.95817536;0.25618064;-0.1275589;0.0;-0.008908581 +26804;0;-0.057235718;4.299652;8.011505 +26804;3;0.042526245;-0.01739502;0.017120361 +26805;12;0.1287312;0.1635075;0.71475446;0.6676973 +26805;5;999.57544 +26807;0;-0.01423645;4.3329163;7.944748 +26807;1;-0.2968199;3.9809623;8.961024 +26807;3;0.023590088;-0.030212402;0.011001587 +26812;12;0.12889421;0.16360009;0.7147579;0.6676395 +26812;0;0.0048675537;4.356659;7.892288 +26812;3;0.005874634;-0.043655396;0.0036773682 +26812;0;-0.009475708;4.3614197;7.8731995 +26812;3;-0.011230469;-0.056488037;-0.0024261475 +26812;1;-0.29469046;3.9826884;8.960327 +26816;1;-0.2916986;3.9829175;8.960322 +26816;2;-0.29272833;-0.3398564;1.0152435; +26816;12;0.12903944;0.16359414;0.71474713;0.66762453 +26816;4;17.442322;-22.04132;-52.197266 +26816;6;-1.2371935;-0.5058764;0.0012035392 +26816;7;0.32689807;-0.826524;0.45825285;0.0;0.945059;0.28643635;-0.15753622;0.0;-0.0010527958 +26816;0;0.019195557;4.366165;7.858902 +26816;3;-0.030761719;-0.06686401;-0.00793457 +26816;0;0.03352356;4.3994293;7.8302765 +26816;3;-0.049087524;-0.07725525;-0.012817383 +26817;0;0.03352356;4.4184265;7.863678 +26818;12;0.12916866;0.16349287;0.7147223;0.6676508 +26818;3;-0.06741333;-0.087646484;-0.018310547 +26820;1;-0.28802156;3.981556;8.961046 +26820;0;0.014419556;4.413666;7.8779755 +26820;3;-0.08451843;-0.09741211;-0.021972656 +26823;4;17.442322;-22.640991;-51.74713 +26823;6;-1.2656128;-0.5106808;-0.001830361 +26823;7;0.301321;-0.8320994;0.4656353;0.0;0.95352143;0.26213208;-0.14860578;0.0;0.001596828 +26823;0;0.03831482;4.380417;7.901825 +26824;3;-0.10345459;-0.10597229;-0.02746582 +26824;12;0.12926842;0.1632961;0.7146866;0.66771793 +26825;0;0.057418823;4.380417;7.9638214 +26825;1;-0.28366247;3.9785678;8.962513 +26825;3;-0.121170044;-0.112075806;-0.030532837 +26827;12;0.12933943;0.16300783;0.71464735;0.6678166 +26827;0;0.066970825;4.413666;7.9638214 +26827;3;-0.1376648;-0.11756897;-0.032974243 +26839;1;-0.27886513;3.9740345;8.964674 +26839;2;-0.35147047;-0.42159486;0.9906254; +26839;12;0.12937099;0.16263798;0.71460694;0.6679439 +26839;1;-0.27371973;3.968079;8.967471 +26839;12;0.12936352;0.16219753;0.71456873;0.66809326 +26839;1;-0.26835302;3.9606462;8.970919 +26839;0;0.04786682;4.380417;8.025818 +26839;3;-0.15232849;-0.12245178;-0.034805298 +26840;4;16.992188;-22.640991;-50.9964 +26840;6;-1.315814;-0.4995983;-0.0059640342 +26840;7;0.25498867;-0.8493946;0.4620709;0.0;0.96692985;0.22139975;-0.1266048;0.0;0.0052350494 +26840;0;0.07652283;4.389923;8.059219 +26840;3;-0.17004395;-0.1267395;-0.037857056 +26840;0;0.066970825;4.4089203;8.121216 +26840;3;-0.185318;-0.13040161;-0.037857056 +26840;0;0.03831482;4.370926;8.2118225 +26840;3;-0.19874573;-0.13284302;-0.03907776 +26840;0;0.057418823;4.323395;8.273819 +26840;3;-0.20974731;-0.13284302;-0.03968811 +26843;17;1;38dead6d7725;10068;3285;-69; +26844;17;1;38dead6d60ff;10084;1140;-69; +26844;17;1;1c1bb5efa29a;6468;865;-65; +26845;17;1;1c1bb5ecd182;751;2804;-58; +26845;4;16.842651;-22.491455;-52.046204 +26845;6;-1.3360386;-0.48150608;-0.0069397097 +26845;7;0.23572741;-0.8619879;0.4487866;0.0;0.9717998;0.20615952;-0.114470534;0.0;0.0061506047 +26845;0;0.08129883;4.3186646;8.335815 +26845;12;0.12931322;0.16168658;0.71453434;0.6682637 +26845;3;-0.22135925;-0.13345337;-0.03907776 +26845;0;0.08607483;4.323395;8.397842 +26845;1;-0.26289126;3.9521034;8.974847 +26846;3;-0.23112488;-0.13101196;-0.036636353 +26846;5;999.57544 +26846;0;0.07652283;4.3376617;8.502762 +26846;12;0.12922436;0.16113122;0.71451104;0.6684399 +26846;3;-0.2366333;-0.1267395;-0.036026 +26848;0;0.08607483;4.3329163;8.555222 +26848;1;-0.25756344;3.9427068;8.979134 +26849;3;-0.24090576;-0.12185669;-0.034805298 +26851;4;17.593384;-22.491455;-51.597595 +26851;6;-1.3977516;-0.46878546;-0.010060748 +26851;7;0.1766512;-0.87879395;0.4433007;0.0;0.98423254;0.15360697;-0.08769893;0.0;0.00897522 +26851;0;0.08129883;4.3329163;8.6410675 +26851;3;-0.24273682;-0.11390686;-0.033569336 +26851;12;0.12909712;0.16054772;0.7145012;0.66861534 +26853;1;-0.2526237;3.9328275;8.983605 +26853;0;0.10997009;4.3376617;8.717377 +26854;2;-0.3581436;-0.39477324;0.52518845; +26854;3;-0.24395752;-0.107788086;-0.03175354 +26856;0;0.071746826;4.299652;8.78891 +26856;12;0.12893444;0.15996023;0.7145016;0.66878706 +26856;3;-0.24456787;-0.09741211;-0.030532837 +26858;0;0.08129883;4.299652;8.889069 +26858;1;-0.24834266;3.9227912;8.9881115 +26858;3;-0.24395752;-0.08641052;-0.03112793 +26860;4;16.392517;-22.640991;-51.74713 +26860;6;-1.4478731;-0.45050725;-0.009145678 +26860;7;0.12656084;-0.8934337;0.43099734;0.0;0.9919247;0.1103802;-0.0624631;0.0;0.008233066 +26861;0;0.08607483;4.275894;8.970154 +26861;3;-0.24090576;-0.07235718;-0.030532837 +26861;12;0.12873922;0.15939157;0.71451217;0.6689491 +26863;0;0.09562683;4.2949066;9.022598 +26863;1;-0.2450381;3.9127424;8.992581 +26863;3;-0.23846436;-0.05770874;-0.032348633 +26865;0;0.066970825;4.280655;9.103683 +26866;12;0.12850462;0.15886126;0.71453065;0.66910064 +26866;3;-0.23234558;-0.043045044;-0.03112793 +26868;0;0.08607483;4.2616425;9.11322 +26868;1;-0.24302097;3.9029276;8.9969 +26868;3;-0.22807312;-0.024719238;-0.032974243 +26870;4;17.292786;-22.790527;-52.3468 +26870;6;-1.4889823;-0.4374033;-0.0094447695 +26870;7;0.08570643;-0.90282464;0.42138115;0.0;0.99628377;0.07402899;-0.044028353;0.0;0.008555462 +26870;0;0.07652283;4.2426453;9.16568 +26871;3;-0.22135925;-0.0076141357;-0.03175354 +26871;12;0.1282286;0.15838724;0.71455413;0.66924083 +26872;0;0.066970825;4.256897;9.199066 +26873;1;-0.24249588;3.8935196;9.00099 +26873;3;-0.21585083;0.008270264;-0.032348633 +26873;2;-0.35062814;-0.3766811;-0.034108162; +26875;0;0.071746826;4.266403;9.265839 +26876;12;0.12790947;0.15798602;0.7145829;0.66936606 +26876;3;-0.21096802;0.023529053;-0.03175354 +26877;0;0.023986816;4.290146;9.270599 +26878;1;-0.24337822;3.884595;9.004821 +26878;3;-0.2036438;0.039413452;-0.03112793 +26880;4;17.442322;-23.091125;-51.74713 +26880;6;-1.5277187;-0.43342045;-0.0025874015 +26880;7;0.044149794;-0.9066926;0.41947502;0.0;0.9990222;0.039082337;-0.02067097;0.0;0.0023481536 +26880;0;7.6293945E-5;4.252136;9.280151 +26880;3;-0.19752502;0.05041504;-0.030532837 +26881;12;0.12755147;0.1576573;0.7146169;0.66947556 +26882;5;999.5817 +26884;0;-0.009475708;4.280655;9.304001 +26884;1;-0.24555646;3.876207;9.008376 +26885;3;-0.19447327;0.060180664;-0.028686523 +26885;0;-0.023803711;4.2473907;9.275375 +26885;12;0.12716356;0.1573974;0.7146568;0.66956794 +26885;3;-0.18592834;0.06690979;-0.028686523 +26887;0;-0.06678772;4.266403;9.289688 +26887;1;-0.2485688;3.8682184;9.011726 +26887;3;-0.17919922;0.072402954;-0.028686523 +26889;4;16.693115;-23.390198;-53.396606 +26889;6;-1.5047681;-0.4305199;0.007189323 +26889;7;0.06298466;-0.9067686;0.41689742;0.0;0.99799305;0.05995945;-0.020362096;0.0;-0.0065332334 +26889;0;-0.08590698;4.2616425;9.294464 +26890;3;-0.17248535;0.072402954;-0.02809143 +26890;12;0.12675664;0.15718533;0.7147015;0.6696472 +26892;0;-0.100234985;4.2854004;9.318314 +26892;1;-0.251996;3.8609161;9.014762 +26892;2;-0.25794864;-0.4021945;-0.27585888; +26892;3;-0.16760254;0.07606506;-0.02809143 +26894;0;-0.12890625;4.3186646;9.323074 +26895;12;0.12636048;0.15701585;0.7147429;0.66971755 +26895;3;-0.1572113;0.07850647;-0.02809143 +26896;0;-0.15278625;4.3281555;9.375534 +26897;1;-0.2556856;3.8542328;9.017518 +26897;3;-0.14865112;0.07972717;-0.029907227 +26899;4;16.093445;-22.340393;-52.197266 +26899;6;-1.4598056;-0.43244392;0.01629483 +26899;7;0.10396156;-0.9023575;0.41826174;0.0;0.9944712;0.10056658;-0.030219749;0.0;-0.014794141 +26899;0;-0.147995;4.3091583;9.385086 +26899;3;-0.1413269;0.08155823;-0.032348633 +26900;12;0.12597649;0.1568778;0.7147801;0.6697826 +26902;0;-0.16233826;4.299652;9.356461 +26903;1;-0.25958905;3.8482726;9.019952 +26903;3;-0.13217163;0.08218384;-0.03541565 +26906;0;-0.157547;4.3186646;9.365997 +26906;3;-0.11933899;0.08340454;-0.036636353 +26909;12;0.1256134;0.1567765;0.71480757;0.6698452 +26909;0;-0.138443;4.3519135;9.375534 +26909;1;-0.26366106;3.8431761;9.022006 +26909;3;-0.1071167;0.08218384;-0.038467407 +26910;4;16.54358;-21.890259;-53.097534 +26910;6;-1.4073821;-0.43453965;0.014765337 +26910;7;0.15653706;-0.89497966;0.41774103;0.0;0.98758125;0.14756827;-0.053914867;0.0;-0.013392618 +26910;0;-0.19577026;4.356659;9.351685 +26910;3;-0.09613037;0.08218384;-0.041519165 +26910;12;0.12527764;0.15671523;0.7148201;0.6699091 +26912;0;-0.24832153;4.389923;9.318314 +26912;1;-0.26787162;3.839182;9.023582 +26912;2;-0.13130897;-0.49001503;-0.33590126; +26913;3;-0.08390808;0.07911682;-0.045791626 +26915;0;-0.28652954;4.4184265;9.332611 +26915;3;-0.069244385;0.073013306;-0.05130005 +26916;12;0.1249794;0.15670162;0.7148156;0.6699728 +26916;1;-0.27209464;3.8362944;9.024684 +26916;0;-0.34864807;4.389923;9.332611 +26916;3;-0.057647705;0.06690979;-0.05984497 +26918;4;17.292786;-22.190857;-51.597595 +26918;6;-1.4331889;-0.43940786;0.037340675 +26918;7;0.12134684;-0.8964487;0.4262096;0.0;0.9920349;0.12414253;-0.021334335;0.0;-0.033785596 +26919;0;-0.35820007;4.404175;9.346909 +26919;3;-0.045425415;0.055908203;-0.06350708 +26920;12;0.12472508;0.15672573;0.71478504;0.67004704 +26922;5;999.5817 +26922;0;-0.34864807;4.432678;9.361221 +26922;1;-0.27596578;3.8344784;9.025338 +26922;3;-0.033203125;0.048583984;-0.0690155 +26924;0;-0.39640808;4.437439;9.337372 +26925;12;0.12453193;0.15677519;0.71471983;0.67014104 +26925;3;-0.022827148;0.04185486;-0.07206726 +26926;0;-0.38685608;4.470688;9.318314 +26926;1;-0.27934563;3.8337195;9.025557 +26926;3;-0.0087890625;0.030853271;-0.077560425 +26928;4;17.292786;-22.491455;-52.796936 +26928;6;-1.3853209;-0.44700086;0.04149185 +26928;7;0.16663232;-0.8862814;0.43213293;0.0;0.98530936;0.16629466;-0.038878135;0.0;-0.03740444 +26928;0;-0.43463135;4.513443;9.289688 +26928;3;0.0022125244;0.021087646;-0.08427429 +26929;12;0.124402836;0.156846;0.7146258;0.6702487 +26931;1;-0.28215477;3.834081;9.025315 +26931;0;-0.43940735;4.503952;9.332611 +26931;2;0.063138306;-0.60849;-0.30868626; +26932;3;0.011978149;0.012527466;-0.089782715 +26933;0;-0.47763062;4.5086975;9.313538 +26933;12;0.124340475;0.15693337;0.7144989;0.6703751 +26934;3;0.025421143;0.0021514893;-0.09466553 +26935;1;-0.28440273;3.8353503;9.024706 +26935;0;-0.48239136;4.4754486;9.337372 +26935;3;0.037643433;-0.005783081;-0.09893799 +26938;4;15.492249;-23.840332;-53.546143 +26938;6;-1.4201442;-0.44643566;0.051616542 +26938;7;0.12785962;-0.8917752;0.4340378;0.0;0.99069977;0.13537355;-0.013703249;0.0;-0.046537023 +26938;0;-0.5062866;4.494446;9.308762 +26938;3;0.047424316;-0.014328003;-0.105667114 +26938;12;0.12433927;0.1570316;0.71434075;0.6705209 +26940;1;-0.2861303;3.8376617;9.023668 +26940;0;-0.5253906;4.5181885;9.284912 +26940;3;0.057800293;-0.023498535;-0.11116028 +26942;0;-0.5349426;4.522949;9.265839 +26942;12;0.12440322;0.15714912;0.7141515;0.6706831 +26943;3;0.07002258;-0.030822754;-0.11543274 +26945;0;-0.5683899;4.5419617;9.256302 +26945;1;-0.28736874;3.8409233;9.022242 +26946;3;0.07978821;-0.038772583;-0.12214661 +26947;4;16.842651;-22.190857;-51.14746 +26947;6;-1.3562706;-0.455427;0.061328717 +26947;7;0.18614352;-0.8774872;0.44200322;0.0;0.98097956;0.1911855;-0.033574786;0.0;-0.05504316 +26947;0;-0.5779419;4.503952;9.280151 +26947;3;0.09140015;-0.0460968;-0.12458801 +26948;12;0.12452503;0.15728045;0.713931;0.67086434 +26952;1;-0.28816104;3.8450706;9.020449 +26952;12;0.124703445;0.15742774;0.71368146;0.6710622 +26953;0;-0.5683899;4.522949;9.280151 +26953;3;0.10177612;-0.054656982;-0.13131714 +26953;0;-0.60661316;4.52771;9.246765 +26953;3;0.10972595;-0.060150146;-0.13497925 +26953;2;0.21305457;-0.66354895;-0.27244854; +26955;17;1;38dead6d7725;10831;906;-70; +26956;17;1;38dead6d60ff;8314;780;-67; +26957;17;1;1c1bb5efa29a;7394;1650;-67; +26958;17;1;1c1bb5ecd182;1911;1764;-59; +26958;1;-0.28851363;3.8501215;9.018283 +26958;0;-0.57315063;4.556198;9.222916 +26958;3;0.12072754;-0.06745911;-0.13987732 +26958;4;16.693115;-21.290588;-53.396606 +26958;6;-1.2170126;-0.45807803;0.062064376 +26958;7;0.32005256;-0.8413576;0.43552712;0.0;0.9457652;0.31073216;-0.094730504;0.0;-0.055630066 +26958;12;0.12495913;0.15757453;0.713318;0.6713666 +26958;0;-0.5779419;4.5799713;9.203827 +26958;3;0.12927246;-0.07662964;-0.14537048 +26959;1;-0.28844374;3.8560658;9.015745 +26959;0;-0.64482117;4.5989685;9.14183 +26960;3;0.1396637;-0.08578491;-0.15208435 +26960;5;999.5817 +26962;0;-0.6161499;4.5752106;9.13707 +26963;12;0.12524684;0.15775333;0.71301216;0.67159575 +26963;3;0.14881897;-0.094955444;-0.16001892 +26964;0;-0.47283936;4.636963;9.213379 +26964;1;-0.2877475;3.8628292;9.012872 +26964;3;0.1592102;-0.10411072;-0.1685791 +26967;4;17.292786;-23.240662;-52.3468 +26967;6;-1.3607231;-0.4657449;0.05127596 +26967;7;0.18574604;-0.87384456;0.44932628;0.0;0.9815302;0.18632022;-0.043399267;0.0;-0.04579435 +26967;0;-0.3534088;4.6654816;9.213379 +26968;3;0.16531372;-0.10411072;-0.17224121 +26968;12;0.1256012;0.15793297;0.71267325;0.67184705 +26969;0;-0.37728882;4.6797333;9.246765 +26969;2;0.213009;-0.73126817;-0.19488049; +26969;1;-0.28649268;3.8703845;9.009669 +26970;3;0.16897583;-0.09983826;-0.17346191 +26971;12;0.12600319;0.15812539;0.71230006;0.6721222 +26971;0;-0.42507935;4.670227;9.213379 +26971;3;0.17326355;-0.09739685;-0.17774963 +26973;0;-0.44418335;4.6322327;9.16568 +26977;1;-0.28567362;3.8783004;9.006291 +26977;3;0.17692566;-0.094955444;-0.1820221 +26977;4;17.74292;-23.690796;-53.396606 +26977;6;-1.3579013;-0.4674774;0.0484237 +26977;7;0.18972225;-0.87255347;0.45017302;0.0;0.98088634;0.1886206;-0.047791444;0.0;-0.043211326 +26977;0;-0.44895935;4.5847015;9.170456 +26977;12;0.12640427;0.15834308;0.7119164;0.67240214 +26977;3;0.17753601;-0.09373474;-0.18751526 +26979;1;-0.28523025;3.8863935;9.002816 +26979;0;-0.4298401;4.5514526;9.094147 +26979;3;0.17997742;-0.09251404;-0.19241333 +26981;12;0.12680349;0.15857856;0.7115171;0.67269397 +26981;0;-0.41552734;4.53244;9.089371 +26981;3;0.18486023;-0.091293335;-0.19607544 +26983;0;-0.39163208;4.560959;9.103683 +26984;1;-0.28503218;3.8946803;8.999241 +26984;3;0.18730164;-0.09007263;-0.2003479 +26985;4;17.74292;-22.04132;-52.197266 +26985;6;-1.3196098;-0.46407834;0.04299257 +26985;7;0.22968999;-0.8661717;0.44383436;0.0;0.9725046;0.22226506;-0.06951887;0.0;-0.038433596 +26985;0;-0.37728882;4.5514526;9.16568 +26986;3;0.190979;-0.08822632;-0.2003479 +26986;12;0.12720408;0.15882757;0.7111015;0.672999 +26988;0;-0.40119934;4.53244;9.160919 +26988;1;-0.28505367;3.9031925;8.995551 +26988;2;0.10377279;-0.6744633;-0.1504898; +26988;3;0.19281006;-0.08456421;-0.19729614 +26990;0;-0.39640808;4.494446;9.19429 +26990;12;0.1276048;0.15909162;0.7106744;0.6733119 +26990;3;0.19586182;-0.079071045;-0.19485474 +26992;0;-0.37252808;4.470688;9.19429 +26992;1;-0.28531432;3.9118361;8.991787 +26993;3;0.19952393;-0.07234192;-0.19178772 +26996;12;0.12814812;0.15925245;0.7096315;0.6742699 +26997;4;16.093445;-20.991516;-52.946472 +26997;6;-1.2570248;-0.45226163;0.04049518 +26997;7;0.29156736;-0.85554606;0.42781943;0.0;0.95585704;0.27761707;-0.09626144;0.0;-0.036413886 +26997;0;-0.34864807;4.456436;9.19429 +26997;3;0.20135498;-0.06440735;-0.18812561 +26997;0;-0.36297607;4.4516907;9.094147 +26998;1;-0.28601643;3.9207845;8.987867 +27003;12;0.12853694;0.15956455;0.7092203;0.6745547 +27003;3;0.20135498;-0.05708313;-0.1856842 +27003;5;999.5817 +27003;0;-0.38208008;4.4231873;9.065521 +27003;3;0.20684814;-0.050964355;-0.18629456 +27003;0;-0.37728882;4.3946686;9.036911 +27003;1;-0.28730282;3.9298246;8.983877 +27003;3;0.20930481;-0.04486084;-0.18629456 +27005;4;16.842651;-22.491455;-53.097534 +27005;6;-1.351187;-0.45228696;0.041725524 +27005;7;0.19986682;-0.87784755;0.43524352;0.0;0.9791044;0.19594368;-0.054410454;0.0;-0.03751913 +27005;0;-0.2817688;4.4184265;9.065521 +27005;3;0.21418762;-0.03753662;-0.1856842 +27005;12;0.12890694;0.1599003;0.70882124;0.67482394 +27007;0;-0.21009827;4.4184265;9.075058 +27007;1;-0.28896707;3.9391778;8.979726 +27007;2;0.024826467;-0.5036442;-0.13541126; +27007;3;0.21723938;-0.027145386;-0.1820221 +27009;0;-0.23399353;4.437439;9.079834 +27009;12;0.12927169;0.16026582;0.7084238;0.67508477 +27010;3;0.2257843;-0.014312744;-0.17652893 +27011;1;-0.2914093;3.9489694;8.975346 +27012;0;-0.28652954;4.456436;9.070297 +27012;3;0.23007202;-0.0027160645;-0.1697998 +27014;4;17.442322;-23.390198;-52.197266 +27014;6;-1.4295665;-0.45648372;0.03157937 +27014;7;0.12691148;-0.8886711;0.4406327;0.0;0.991509;0.12634799;-0.030755902;0.0;-0.028341182 +27014;0;-0.3438568;4.4089203;9.0607605 +27014;3;0.23434448;0.010101318;-0.1661377 +27015;12;0.12961636;0.16068181;0.70803857;0.6753239 +27016;0;-0.3534088;4.4089203;9.03215 +27016;1;-0.29481253;3.9591863;8.970733 +27017;3;0.23556519;0.01927185;-0.16308594 +27019;0;-0.38685608;4.3946686;9.013062 +27019;3;0.23983765;0.025985718;-0.16247559 +27020;12;0.12993807;0.1611528;0.70767474;0.6755312 +27021;0;-0.41073608;4.356659;8.994003 +27022;1;-0.2990038;3.9696097;8.965986 +27022;3;0.24351501;0.03086853;-0.15698242 +27024;4;17.292786;-22.190857;-51.597595 +27024;6;-1.3840184;-0.45067805;0.04563606 +27024;7;0.16597494;-0.8844962;0.43602607;0.0;0.98527455;0.1671526;-0.03597275;0.0;-0.04106513 +27024;0;-0.43463135;4.380417;8.984451 +27024;3;0.24839783;0.038208008;-0.15513611 +27027;12;0.13023518;0.16166252;0.70732254;0.67572105 +27027;0;-0.40596008;4.380417;8.994003 +27027;1;-0.30361053;3.9803858;8.961053 +27027;2;0.02596289;-0.42548156;-0.06721878; +27027;3;0.25083923;0.04309082;-0.1502533 +27028;0;-0.43940735;4.404175;9.003525 +27029;12;0.13052845;0.1622034;0.70698136;0.6758919 +27029;3;0.25450134;0.05104065;-0.14659119 +27030;0;-0.44895935;4.432678;9.003525 +27031;1;-0.30863988;3.9914703;8.955949 +27031;3;0.25694275;0.057754517;-0.14537048 +27033;4;16.693115;-23.690796;-52.197266 +27033;6;-1.4219022;-0.4569985;0.04982358 +27033;7;0.12642777;-0.8874521;0.44322094;0.0;0.9909685;0.13312162;-0.016124874;0.0;-0.044692233 +27033;0;-0.47283936;4.389923;9.008301 +27033;3;0.2599945;0.06324768;-0.14169312 +27034;12;0.13081309;0.16277465;0.70665306;0.67604285 +27035;0;-0.49195862;4.3994293;8.994003 +27035;1;-0.3142032;4.002758;8.950716 +27036;3;0.26184082;0.0663147;-0.13865662 +27036;5;999.5817 +27038;0;-0.5015106;4.389923;9.03215 +27038;12;0.13108347;0.16337545;0.7063344;0.6761785 +27038;3;0.2624359;0.06997681;-0.13621521 +27040;0;-0.5349426;4.389923;9.046463 +27040;1;-0.32002106;4.0141606;8.945402 +27041;3;0.26184082;0.07791138;-0.1355896 +27043;4;16.693115;-22.340393;-52.946472 +27043;6;-1.3270959;-0.45110434;0.059064016 +27043;7;0.21590054;-0.8733738;0.43658367;0.0;0.97496915;0.21715775;-0.047726195;0.0;-0.053124715 +27043;0;-0.55882263;4.3994293;9.03215 +27044;3;0.26365662;0.08279419;-0.1343689 +27044;12;0.13134632;0.1639932;0.7060261;0.6762999 +27045;0;-0.6113739;4.4089203;9.003525 +27045;1;-0.32640314;4.025592;8.940033 +27045;2;0.15424007;-0.3800063;-0.07473278; +27045;3;0.26428223;0.085861206;-0.13253784 +27047;0;-0.6495819;4.4231873;8.970154 +27048;12;0.13158861;0.164635;0.70572406;0.6764121 +27048;3;0.26609802;0.09196472;-0.13070679 +27050;0;-0.68304443;4.404175;8.965378 +27050;1;-0.33319572;4.0371413;8.934573 +27050;3;0.26550293;0.09501648;-0.12887573 +27052;4;17.442322;-22.340393;-50.9964 +27052;6;-1.3603289;-0.4554729;0.076040015 +27052;7;0.17563388;-0.8782361;0.44480792;0.0;0.9820888;0.18761854;-0.01734389;0.0;-0.06822218 +27052;0;-0.6925812;4.3851776;8.998749 +27052;3;0.26794434;0.096847534;-0.12887573 +27053;12;0.13181871;0.1652936;0.7054264;0.67651725 +27055;0;-0.73558044;4.404175;8.984451 +27055;1;-0.34029365;4.0486975;8.929073 +27055;3;0.26609802;0.09989929;-0.12887573 +27061;12;0.13203566;0.1659664;0.70513636;0.67661256 +27061;1;-0.34765324;4.060159;8.923584 +27062;0;-0.7881317;4.3519135;8.998749 +27062;3;0.26672363;0.0993042;-0.12887573 +27062;0;-0.802475;4.3614197;9.022598 +27062;3;0.26306152;0.09989929;-0.12765503 +27063;12;0.13224235;0.16664393;0.7048472;0.6767069 +27065;4;17.74292;-23.690796;-51.446533 +27065;6;-1.4518598;-0.44872844;0.08870716 +27065;7;0.080028765;-0.8946342;0.4395737;0.0;0.9935914;0.106909275;0.03669188;0.0;-0.07982031 +27065;0;-0.816803;4.380417;9.0607605 +27065;3;0.26062012;0.0993042;-0.12704468 +27065;1;-0.35502335;4.071379;8.91818 +27065;0;-0.850235;4.342407;9.056 +27065;2;0.37164068;-0.31477976;-0.08791733; +27065;3;0.2563324;0.101119995;-0.12582397 +27067;17;1;38dead6d7725;11123;1002;-73; +27067;17;1;38dead6d60ff;6634;3221;-68; +27068;17;1;1c1bb5efa29a;1681;3678;-64; +27068;17;1;1c1bb5ecd182;1664;1594;-60; +27070;12;0.13243935;0.16731401;0.7045617;0.6768004 +27070;1;-0.36257517;4.0824547;8.912812 +27071;0;-0.883667;4.3946686;9.041687 +27071;3;0.2563324;0.10296631;-0.12458801 +27071;0;-0.90278625;4.3851776;9.017838 +27071;3;0.25572205;0.1023407;-0.12155151 +27073;4;16.842651;-23.54126;-52.046204 +27073;6;-1.3916583;-0.45065206;0.09977872 +27073;7;0.13460265;-0.8857585;0.44420034;0.0;0.9868342;0.16039236;0.020797826;0.0;-0.089668185 +27073;12;0.13262448;0.16798389;0.7042792;0.6768923 +27074;0;-0.92666626;4.3851776;9.03215 +27074;3;0.25328064;0.1035614;-0.12033081 +27075;1;-0.3700827;4.093355;8.907502 +27075;0;-0.93144226;4.3614197;8.989227 +27075;3;0.253891;0.1005249;-0.117874146 +27075;5;999.5801 +27077;0;-0.9219055;4.3376617;8.951065 +27077;12;0.13280392;0.1686462;0.70400685;0.6769756 +27078;3;0.2551117;0.09806824;-0.11665344 +27080;1;-0.37734848;4.1042156;8.902198 +27080;0;-0.91233826;4.3186646;8.960602 +27080;3;0.2551117;0.09440613;-0.11543274 +27083;12;0.132989;0.16929863;0.7037395;0.6770544 +27083;4;16.693115;-23.091125;-50.546265 +27083;6;-1.4280459;-0.44709933;0.10146697 +27083;7;0.0981857;-0.89253324;0.44016358;0.0;0.99096787;0.12828211;0.03906997;0.0;-0.09133636 +27083;0;-0.93144226;4.3043976;8.994003 +27083;3;0.25572205;0.09257507;-0.11238098 +27084;0;-0.9219055;4.290146;9.003525 +27084;1;-0.3843033;4.115039;8.896903 +27084;2;0.5081315;-0.23718548;-0.10058212; +27084;3;0.25572205;0.09013367;-0.11116028 +27087;0;-0.93621826;4.2949066;8.989227 +27087;12;0.1331849;0.16994026;0.70347536;0.6771297 +27087;3;0.2575531;0.08769226;-0.10749817 +27088;0;-0.94099426;4.3186646;8.984451 +27088;1;-0.39098433;4.1259127;8.891574 +27089;3;0.2599945;0.08279419;-0.10505676 +27091;4;16.54358;-22.190857;-51.14746 +27091;6;-1.3358449;-0.44594783;0.104355395 +27091;7;0.18783551;-0.8774149;0.4414307;0.0;0.97769415;0.21002887;0.0014425293;0.0;-0.09397888 +27091;0;-0.93621826;4.347168;8.970154 +27092;3;0.26306152;0.076690674;-0.10505676 +27092;12;0.13340257;0.17056963;0.7031806;0.6772347 +27094;1;-0.39718646;4.1370554;8.88612 +27094;0;-0.94099426;4.370926;8.931976 +27094;3;0.26794434;0.07119751;-0.10444641 +27096;12;0.1336391;0.1711988;0.70292264;0.6772971 +27096;0;-0.90278625;4.375656;8.965378 +27096;3;0.27404785;0.06324768;-0.10322571 +27098;1;-0.40276954;4.148574;8.880497 +27099;0;-0.888443;4.3376617;8.941528 +27099;3;0.28198242;0.057144165;-0.10505676 +27101;4;17.442322;-22.340393;-52.6474 +27101;6;-1.2974871;-0.4497421;0.099036366 +27101;7;0.22720799;-0.8671332;0.44323426;0.0;0.96976703;0.24307826;-0.02156327;0.0;-0.08904239 +27102;0;-0.91233826;4.3994293;8.936752 +27102;3;0.2905426;0.050430298;-0.102005005 +27103;12;0.13391289;0.17182162;0.7026588;0.67735916 +27104;1;-0.4077651;4.160792;8.874551 +27104;0;-0.874115;4.4516907;8.965378 +27104;2;0.4861474;-0.20673752;-0.084534645; +27104;3;0.29971313;0.048599243;-0.101379395 +27105;0;-0.840683;4.480179;8.994003 +27105;12;0.13423896;0.17244887;0.7023843;0.6774199 +27106;3;0.3100891;0.048599243;-0.10076904 +27111;0;-0.7738037;4.513443;8.989227 +27111;1;-0.41236627;4.1738367;8.868211 +27111;3;0.3186493;0.050430298;-0.097717285 +27111;4;16.992188;-23.091125;-52.946472 +27111;6;-1.2879183;-0.46384338;0.08586954 +27111;7;0.24124706;-0.85879517;0.45196328;0.0;0.96742797;0.24962844;-0.042059727;0.0;-0.0767022 +27111;0;-0.7403717;4.5894623;8.979691 +27111;3;0.3259735;0.052261353;-0.09710693 +27111;12;0.13463351;0.17308044;0.70202005;0.677558 +27113;1;-0.41692126;4.187749;8.861436 +27113;0;-0.74513245;4.636963;8.917694 +27113;3;0.3357544;0.052871704;-0.09588623 +27113;5;999.5801 +27115;12;0.13503942;0.17376427;0.7017388;0.6775936 +27115;0;-0.65437317;4.6797333;8.912918 +27115;3;0.34490967;0.05531311;-0.09527588 +27117;1;-0.42141718;4.2025285;8.854223 +27117;0;-0.6257019;4.73674;8.884293 +27118;3;0.35346985;0.057144165;-0.09466553 +27120;4;18.492126;-23.240662;-50.846863 +27120;6;-1.3138889;-0.48879522;0.070311785 +27120;7;0.22155693;-0.85392284;0.47088042;0.0;0.9731727;0.22433645;-0.051068492;0.0;-0.06202708 +27120;0;-0.5540619;4.8365173;8.831833 +27120;3;0.35957336;0.060806274;-0.093444824 +27120;12;0.13548099;0.1744839;0.7014532;0.67761624 +27122;0;-0.5445099;4.9220276;8.836609 +27122;2;0.23703209;-0.46276045;-0.06968117; +27122;1;-0.42596528;4.218184;8.846558 +27123;3;0.36750793;0.06263733;-0.09222412 +27124;0;-0.48718262;5.0455627;8.855682 +27125;12;0.13595197;0.1752426;0.70116353;0.67762583 +27125;3;0.37423706;0.06692505;-0.08734131 +27126;0;-0.40119934;5.173828;8.831833 +27127;1;-0.43052438;4.2346573;8.838463 +27127;3;0.37973022;0.07180786;-0.08673096 +27129;4;17.442322;-23.390198;-50.247192 +27129;6;-1.2186396;-0.52947533;0.045395304 +27129;7;0.32305387;-0.8101063;0.48924837;0.0;0.94556975;0.29769346;-0.13143964;0.0;-0.03916597 +27129;0;-0.3390808;5.278351;8.84137 +27130;12;0.13645379;0.17603667;0.7008738;0.6776189 +27130;3;0.38217163;0.07546997;-0.08366394 +27131;0;-0.26264954;5.3828583;8.879532 +27131;1;-0.43516865;4.2517457;8.830029 +27132;3;0.385849;0.0821991;-0.08000183 +27135;12;0.13697071;0.17686242;0.7005912;0.6775918 +27135;0;-0.20533752;5.501648;8.86998 +27135;3;0.385849;0.089523315;-0.07511902 +27136;1;-0.44005197;4.2693257;8.8213 +27137;0;-0.16711426;5.5919037;8.884293 +27137;3;0.3864441;0.09867859;-0.07145691 +27138;4;17.892456;-22.790527;-51.597595 +27138;6;-1.1115246;-0.5616878;0.018807862 +27138;7;0.4342382;-0.75865406;0.485676;0.0;0.9006574;0.37518632;-0.2192063;0.0;-0.015917234 +27139;0;-0.11456299;5.7106934;8.903381 +27139;3;0.38034058;0.109680176;-0.065963745 +27139;12;0.13749145;0.17772192;0.7003202;0.6775417 +27141;0;-0.11933899;5.791458;8.908142 +27141;1;-0.44539967;4.2868576;8.812525 +27141;2;-0.20559946;-1.1567507;-0.05600357; +27142;3;0.37301636;0.12310791;-0.062286377 +27143;0;-0.057235718;5.905472;8.917694 +27144;12;0.13798639;0.17860276;0.7000709;0.6774671 +27144;3;0.36323547;0.13961792;-0.061676025 +27146;0;-0.052444458;6.0005035;8.922455 +27146;1;-0.45166892;4.3039017;8.803893 +27146;3;0.34735107;0.153656;-0.061065674 +27148;4;16.992188;-24.7406;-52.197266 +27148;6;-1.0923281;-0.592034;0.005877738 +27148;7;0.45750037;-0.73662096;0.49807927;0.0;0.88919604;0.3820599;-0.2517153;0.0;-0.004877362 +27148;0;-0.009475708;6.081253;8.931976 +27149;3;0.32780457;0.16648865;-0.061676025 +27149;12;0.13842253;0.17950282;0.6998442;0.6773744 +27151;0;-0.033355713;6.152527;8.941528 +27151;1;-0.4590845;4.3197618;8.795738 +27151;3;0.3027649;0.17871094;-0.06411743 +27151;5;999.5801 +27153;0;7.6293945E-5;6.1952972;8.965378 +27153;12;0.1387645;0.18040094;0.69964254;0.67727417 +27153;3;0.2734375;0.19215393;-0.065338135 +27155;0;-0.019012451;6.238037;8.998749 +27156;1;-0.46760988;4.333558;8.7885 +27156;3;0.24105835;0.20314026;-0.070236206 +27158;4;17.74292;-22.640991;-50.546265 +27158;6;-1.0459871;-0.60615444;0.0021127851 +27158;7;0.50000507;-0.71124065;0.4940967;0.0;0.8660206;0.41178367;-0.28362352;0.0;-0.0017363805 +27158;0;-0.052444458;6.2475433;9.075058 +27158;12;0.13898139;0.1812582;0.69946474;0.67718446 +27159;3;0.20257568;0.21536255;-0.073898315 +27160;0;-0.09068298;6.2570496;9.175232 +27160;1;-0.47735092;4.3444614;8.782591 +27161;2;-0.46135563;-1.8028135;-0.20352077; +27161;3;0.1592102;0.22756958;-0.07939148 +27163;0;-0.11933899;6.233307;9.21814 +27164;12;0.1390411;0.18204284;0.6993117;0.67711973 +27164;3;0.11338806;0.23796082;-0.08427429 +27165;1;-0.4883352;4.351597;8.778454 +27165;0;-0.138443;6.1952972;9.337372 +27166;3;0.062072754;0.2489624;-0.09222412 +27167;4;18.043518;-23.690796;-51.446533 +27167;6;-1.0977063;-0.5857528;0.014825677 +27167;7;0.44829345;-0.7417708;0.4988078;0.0;0.8938011;0.37968227;-0.23866501;0.0;-0.012353726 +27168;0;-0.21966553;6.086014;9.4470825 +27168;3;0.005874634;0.25811768;-0.101379395 +27168;12;0.13892117;0.18270847;0.6991382;0.6771442 +27170;0;-0.2960968;5.962494;9.580612 +27170;1;-0.500719;4.354076;8.776526 +27170;3;-0.056427002;0.2672882;-0.10932922 +27172;0;-0.3438568;5.872223;9.680771 +27173;12;0.1385599;0.18324542;0.69904375;0.67717075 +27173;3;-0.1230011;0.27339172;-0.1197052 +27174;0;-0.46328735;5.734436;9.80954 +27175;1;-0.5142486;4.350965;8.777287 +27175;3;-0.19264221;0.27461243;-0.13070679 +27177;4;18.043518;-24.290466;-50.9964 +27177;6;-1.2528747;-0.52851695;0.047193177 +27177;7;0.28964865;-0.8202806;0.49319717;0.0;0.9562656;0.26994154;-0.11263901;0.0;-0.040738814 +27177;0;-0.47763062;5.6061707;9.881073 +27177;3;-0.26472473;0.27400208;-0.13743591 +27178;12;0.13794659;0.18359593;0.6989823;0.67726445 +27179;0;-0.5206146;5.4921417;9.986008 +27179;1;-0.5284433;4.341626;8.781067 +27180;2;-0.2299043;-1.570898;-0.8306856; +27180;3;-0.34230042;0.2642212;-0.14781189 +27182;0;-0.57315063;5.387619;10.067078 +27182;12;0.13707891;0.18371682;0.6989529;0.6774381 +27183;3;-0.4156189;0.24407959;-0.15513611 +27184;0;-0.65437317;5.211838;10.152924 +27185;1;-0.54226434;4.325597;8.788133 +27185;3;-0.4870758;0.2184143;-0.16247559 +27186;4;17.593384;-24.591064;-50.846863 +27187;6;-1.4479425;-0.47341603;0.064362675 +27187;7;0.09318779;-0.88330793;0.45943785;0.0;0.9940016;0.10906708;0.008077286;0.0;-0.057244275 +27187;0;-0.70692444;5.040802;10.26738 +27187;3;-0.55610657;0.1829834;-0.17042542 +27187;12;0.1359753;0.18354812;0.698955;0.6777041 +27189;0;-0.71647644;4.8887787;10.400925 +27189;1;-0.5542348;4.3030972;8.798425 +27189;3;-0.6202545;0.14021301;-0.17590332 +27190;5;999.5801 +27191;0;-0.73558044;4.7224884;10.586929 +27192;12;0.1347059;0.18304366;0.69898087;0.67806727 +27192;3;-0.67889404;0.09440613;-0.18019104 +27194;0;-0.7785797;4.5514526;10.772934 +27194;1;-0.56294507;4.274701;8.811704 +27194;3;-0.7320404;0.053482056;-0.18507385 +27196;4;18.043518;-23.091125;-50.9964 +27197;6;-1.6420745;-0.39880943;0.07214639 +27197;7;-0.09895319;-0.919184;0.38119417;0.0;0.9928724;-0.065628946;0.099484265;0.0;-0.06642697 +27197;0;-0.7833557;4.4231873;10.963715 +27197;3;-0.7748108;0.012542725;-0.18997192 +27197;12;0.13334534;0.18217736;0.6990184;0.67853063 +27199;0;-0.7403717;4.299652;11.111557 +27199;1;-0.5682516;4.2414794;8.827403 +27199;2;0.119267285;-0.58842134;-1.7077885; +27199;3;-0.809021;-0.022872925;-0.19300842 +27201;0;-0.7260437;4.166626;11.273712 +27201;12;0.1319424;0.1809883;0.69905967;0.67908037 +27202;3;-0.83406067;-0.0491333;-0.19546509 +27207;1;-0.5706552;4.2049556;8.844706 +27207;0;-0.6687012;3.9908295;11.450165 +27207;3;-0.8523865;-0.06867981;-0.19607544 +27207;4;17.892456;-22.790527;-50.846863 +27207;6;-1.8642064;-0.33484396;0.05833475 +27207;7;-0.30706674;-0.9040982;0.29718053;0.0;0.95009357;-0.27315557;0.1506918;0.0;-0.055063687 +27207;0;-0.63526917;3.8293152;11.593246 +27207;12;0.13053328;0.17955463;0.69908446;0.6797074 +27207;3;-0.86216736;-0.08456421;-0.19607544 +27210;1;-0.57125163;4.1662626;8.862959 +27210;0;-0.62094116;3.7010345;11.736328 +27210;3;-0.86032104;-0.09188843;-0.19546509 +27212;0;-0.63526917;3.5394897;11.788788 +27213;3;-0.8493347;-0.09434509;-0.19241333 +27213;12;0.1291099;0.17797562;0.6991221;0.6803556 +27214;1;-0.5710768;4.1275706;8.881055 +27215;0;-0.65914917;3.4207153;11.869873 +27215;3;-0.82244873;-0.09007263;-0.18875122 +27215;4;17.74292;-21.740723;-51.74713 +27215;6;-1.9740373;-0.28017274;0.055474296 +27216;7;-0.40590003;-0.88392925;0.2321947;0.0;0.91236293;-0.3771008;0.15933934;0.0;-0.05328389 +27216;0;-0.68304443;3.2829437;11.903259 +27217;12;0.12771653;0.17637408;0.6991548;0.6810017 +27217;3;-0.7870331;-0.082733154;-0.18629456 +27219;1;-0.57105154;4.090744;8.89808 +27219;0;-0.6687012;3.1831818;11.950958 +27219;2;0.067518115;0.44062853;-2.7942762; +27219;3;-0.7387543;-0.07296753;-0.1856842 +27221;0;-0.6782532;3.0738983;11.993866 +27221;12;0.12638856;0.17485765;0.6991769;0.68161756 +27221;3;-0.67889404;-0.058914185;-0.1844635 +27225;1;-0.5717823;4.0577884;8.91311 +27225;0;-0.62094116;3.0073853;12.055862 +27225;3;-0.6123047;-0.039367676;-0.18385315 +27226;4;19.392395;-22.04132;-51.446533 +27226;6;-2.0518146;-0.24415399;0.051459856 +27226;7;-0.47309285;-0.8602319;0.19022162;0.0;0.8795976;-0.44895998;0.15729891;0.0;-0.049911633 +27226;0;-0.6161499;2.9503784;12.113098 +27227;12;0.12518252;0.17352597;0.6991598;0.68219775 +27227;3;-0.53778076;-0.016159058;-0.1820221 +27228;1;-0.57403857;4.0304093;8.925379 +27229;0;-0.63049316;2.8933716;12.113098 +27229;3;-0.45593262;0.010726929;-0.17774963 +27229;5;999.5885 +27230;0;-0.64482117;2.855362;12.084488 +27230;12;0.12412666;0.17247905;0.69910794;0.68270916 +27232;3;-0.3691864;0.041870117;-0.17346191 +27233;0;-0.6113739;2.8411102;12.065414 +27233;1;-0.5784471;4.009934;8.934312 +27233;3;-0.27755737;0.073638916;-0.17102051 +27235;4;18.492126;-21.890259;-51.597595 +27235;6;-2.1011078;-0.2309767;0.0506283 +27235;7;-0.5151481;-0.8397404;0.17163496;0.0;0.85568434;-0.4923697;0.15929994;0.0;-0.04926273 +27235;0;-0.6257019;2.8363647;11.970032 +27236;3;-0.18470764;0.10662842;-0.1685791 +27236;12;0.12324988;0.17179;0.6990157;0.68313605 +27237;0;-0.60661316;2.8173523;11.831726 +27238;1;-0.5854506;3.9972584;8.939535 +27238;2;0.020202875;1.0815768;-3.0876846; +27238;3;-0.08818054;0.1353302;-0.1673584 +27239;0;-0.6161499;2.8268433;11.669556 +27240;12;0.12256792;0.17150958;0.69887596;0.6834721 +27240;3;0.007095337;0.16160583;-0.16552734 +27243;0;-0.63049316;2.855362;11.512161 +27243;1;-0.5948941;3.9928386;8.9408865 +27244;3;0.10177612;0.18603516;-0.1673584 +27245;4;18.492126;-22.790527;-53.097534 +27245;6;-2.1015813;-0.24277405;0.054712914 +27245;7;-0.51679033;-0.83711964;0.1793275;0.0;0.8544647;-0.49136567;0.1686704;0.0;-0.053081956 +27245;0;-0.6113739;2.8601227;11.311874 +27245;3;0.19158936;0.20558167;-0.16552734 +27246;12;0.12210666;0.17164734;0.69867665;0.68372375 +27247;1;-0.6063405;3.996561;8.938455 +27247;0;-0.5874939;2.9123688;11.15448 +27247;3;0.2783203;0.22085571;-0.17042542 +27250;0;-0.5779419;3.012146;10.920776 +27250;12;0.121881135;0.17218287;0.6984153;0.68389636 +27250;3;0.3553009;0.2318573;-0.17408752 +27252;0;-0.5827179;3.0263977;10.672775 +27252;1;-0.6191886;4.0077825;8.932548 +27252;3;0.4243164;0.23857117;-0.17897034 +27254;4;19.093323;-22.04132;-50.9964 +27254;6;-1.9794445;-0.2759187;0.054544378 +27254;7;-0.41040748;-0.88294864;0.22796339;0.0;0.9103922;-0.3823388;0.158123;0.0;-0.052455235 +27255;0;-0.5683899;3.0834198;10.501083 +27256;3;0.4866333;0.23857117;-0.18385315 +27256;12;0.121889114;0.17306271;0.69808114;0.68401396 +27257;1;-0.632686;4.0250883;8.923815 +27257;0;-0.5015106;3.1404114;10.2816925 +27258;2;-0.0719921;1.0579247;-2.079814; +27258;3;0.54100037;0.23735046;-0.18812561 +27263;12;0.122112505;0.17420228;0.6976765;0.68409777 +27263;1;-0.6461958;4.047177;8.91285 +27263;0;-0.44895935;3.1974335;10.095703 +27264;3;0.5861969;0.23796082;-0.19363403 +27264;0;-0.40596008;3.2401886;9.9049225 +27264;3;0.6234741;0.23674011;-0.19851685 +27264;4;18.193054;-21.440125;-53.546143 +27264;6;-1.7878964;-0.3159085;0.040962767 +27264;7;-0.22764209;-0.9282024;0.29431197;0.0;0.97296655;-0.20473954;0.10685398;0.0;-0.038924813 +27265;12;0.12287664;0.17527883;0.6958105;0.68558484 +27265;0;-0.39163208;3.268692;9.733231 +27265;3;0.65400696;0.2342987;-0.2027893 +27266;1;-0.65977865;4.0725913;8.90027 +27266;0;-0.41552734;3.325714;9.528137 +27266;3;0.67967224;0.2318573;-0.20523071 +27266;5;999.5885 +27269;12;0.12341927;0.17673688;0.6952913;0.68563974 +27269;0;-0.38208008;3.3827057;9.346909 +27269;3;0.7022705;0.22329712;-0.20767212 +27271;1;-0.67308384;4.1003733;8.886507 +27271;0;-0.3343048;3.3637238;9.127518 +27271;3;0.7169342;0.21047974;-0.21073914 +27273;4;18.94226;-22.790527;-52.3468 +27273;6;-1.7492299;-0.35286504;0.036609672 +27273;7;-0.1898175;-0.9234876;0.33337656;0.0;0.98121846;-0.16655257;0.097317025;0.0;-0.03434635 +27273;0;-0.25309753;3.4112244;8.955841 +27276;12;0.124069035;0.1782727;0.69473594;0.6856878 +27276;3;0.7297516;0.19581604;-0.21257019 +27276;1;-0.6853014;4.129648;8.872005 +27276;2;-0.35165864;0.8009949;-0.5624361; +27276;0;-0.23399353;3.434967;8.769836 +27276;3;0.7395325;0.1842041;-0.21684265 +27277;17;1;38dead6d7725;12699;1428;-69; +27278;17;0;38dead6d60ff;0;0;0; +27278;17;1;1c1bb5efa29a;2851;2398;-64; +27279;17;1;1c1bb5ecd182;3061;1823;-51; +27279;0;-0.25787354;3.4634857;8.598129 +27279;3;0.7462616;0.17076111;-0.21806335 +27279;12;0.12481994;0.17982893;0.6941479;0.68574077 +27280;1;-0.69663;4.1600485;8.856908 +27280;0;-0.22921753;3.4824982;8.464584 +27281;3;0.7511444;0.15855408;-0.2186737 +27283;4;19.692993;-22.340393;-50.247192 +27283;6;-1.6445265;-0.3901832;0.02707298 +27283;7;-0.08390454;-0.9223267;0.37719136;0.0;0.9961592;-0.06812677;0.05500429;0.0;-0.025035098 +27284;0;-0.12411499;3.5205078;8.345367 +27285;3;0.75175476;0.14328003;-0.21989441 +27285;12;0.12565851;0.1813894;0.6935238;0.685808 +27285;1;-0.70658416;4.190715;8.841649 +27286;0;-0.06678772;3.5442505;8.2118225 +27286;3;0.75175476;0.13166809;-0.22294617 +27288;12;0.12656163;0.18291214;0.6928905;0.68587756 +27288;0;-0.0046844482;3.6202698;8.11644 +27288;3;0.7492981;0.12251282;-0.22599792 +27290;1;-0.7154472;4.2214665;8.826294 +27290;0;0.071746826;3.6440125;8.016281 +27290;3;0.7444153;0.11517334;-0.23028564 +27292;4;20.292664;-23.840332;-50.39673 +27292;6;-1.6153376;-0.42663804;-0.0089499 +27292;7;-0.04082487;-0.9094592;0.4137841;0.0;0.999133;-0.04053525;0.009483987;0.0;0.0081475405 +27292;0;0.08607483;3.663025;7.901825 +27293;12;0.12751202;0.1843964;0.6922398;0.6859612 +27293;3;0.73587036;0.10601807;-0.23394775 +27294;1;-0.7236574;4.2518296;8.811037 +27296;2;-0.70165616;0.67184067;0.6227045; +27296;0;0.1386261;3.7010345;7.8350525 +27296;3;0.7285309;0.09989929;-0.23944092 +27297;12;0.12847917;0.18584058;0.69157356;0.686063 +27297;0;0.17684937;3.7437897;7.696747 +27301;1;-0.731316;4.2816296;8.795961 +27302;3;0.7205963;0.09257507;-0.24371338 +27302;0;0.23893738;3.772293;7.6251984 +27302;3;0.7089844;0.0821991;-0.2480011 +27302;4;20.292664;-23.840332;-50.39673 +27302;6;-1.5399333;-0.459215;-0.031324983 +27302;7;0.044718713;-0.8959738;0.44184962;0.0;0.9986051;0.02766123;-0.04497592;0.0;0.02807515 +27302;0;0.23893738;3.7817993;7.567978 +27302;3;0.6998291;0.073638916;-0.25349426 +27303;12;0.12944956;0.18723886;0.6908914;0.68618774 +27304;0;0.27716064;3.8103027;7.5012054 +27304;1;-0.7383255;4.310581;8.781222 +27304;3;0.6863861;0.0663147;-0.25532532 +27305;5;999.5885 +27306;0;0.30104065;3.843567;7.4439697 +27307;12;0.13041921;0.1885776;0.69019604;0.68633723 +27307;3;0.6766205;0.060195923;-0.25654602 +27308;0;0.33448792;3.8483124;7.4058075 +27309;1;-0.74474657;4.338596;8.766872 +27309;3;0.6631775;0.05531311;-0.25837708 +27311;4;19.093323;-23.091125;-50.9964 +27311;6;-1.4506621;-0.4788147;-0.04513495 +27311;7;0.14036141;-0.88114476;0.45153362;0.0;0.9892901;0.10636782;-0.09995428;0.0;0.04004555 +27311;0;0.33926392;3.9053192;7.358124 +27311;3;0.65034485;0.049819946;-0.26020813 +27312;12;0.13137867;0.18985632;0.6894959;0.6865053 +27313;0;0.4013672;3.8815765;7.3342896 +27314;2;-1.0683804;0.54137945;1.2591476; +27314;3;0.6375122;0.049819946;-0.2632599 +27314;1;-0.750722;4.3655877;8.752952 +27316;0;0.4347992;3.9290771;7.319977 +27316;12;0.1323188;0.19107476;0.6887971;0.68668824 +27316;3;0.6253052;0.048599243;-0.269989 +27318;0;0.46347046;3.9765778;7.339035 +27318;1;-0.75660664;4.391495;8.739474 +27320;3;0.6082001;0.049819946;-0.27731323 +27321;4;19.093323;-23.091125;-50.9964 +27321;6;-1.4225755;-0.49572307;-0.06306767 +27321;7;0.17703578;-0.8699802;0.4602094;0.0;0.9826417;0.12990189;-0.13244116;0.0;0.055439122 +27321;0;0.44914246;4.024109;7.315201 +27321;3;0.5941467;0.05531311;-0.2828064 +27322;12;0.13328902;0.19220419;0.68786263;0.68712205 +27323;0;0.4443512;4.0621033;7.2579803 +27324;1;-0.7629402;4.416153;8.72649 +27324;3;0.5770416;0.062026978;-0.2864685 +27325;0;0.4156952;4.052597;7.2055054 +27326;12;0.13413619;0.19334273;0.6871505;0.6873503 +27326;3;0.564209;0.065704346;-0.28953552 +27328;0;0.4013672;4.0668488;7.191208 +27328;1;-0.76999;4.43951;8.71401 +27329;3;0.5471039;0.07058716;-0.29441833 +27330;4;19.543457;-24.14093;-49.197388 +27330;6;-1.454707;-0.51402265;-0.055755753 +27330;7;0.14286433;-0.8649127;0.4811609;0.0;0.988552;0.10086061;-0.11221442;0.0;0.04852549 +27331;0;0.4204712;4.043091;7.186432 +27331;3;0.5275574;0.07546997;-0.29563904 +27331;12;0.13490966;0.19445199;0.68644136;0.6875944 +27333;0;0.4109192;4.11911;7.2818146 +27333;1;-0.7775803;4.4613786;8.70216 +27333;2;-1.2401309;0.42505074;1.438139; +27334;3;0.50801086;0.07974243;-0.2962494 +27335;0;0.4013672;4.185623;7.31044 +27335;12;0.13561;0.1955242;0.6857376;0.68785477 +27336;3;0.48358154;0.09074402;-0.29441833 +27337;0;0.37747192;4.2378845;7.3676605 +27338;1;-0.78575516;4.481535;8.691061 +27338;3;0.4573059;0.10662842;-0.29441833 +27340;4;19.543457;-24.14093;-49.197388 +27340;6;-1.4335825;-0.5214189;-0.051188864 +27340;7;0.16185151;-0.85896325;0.48578414;0.0;0.9858173;0.11860691;-0.118729785;0.0;0.044367164 +27340;0;0.35836792;4.2283936;7.3771973 +27340;3;0.43043518;0.12310791;-0.29380798 +27341;12;0.13622102;0.1965498;0.68505275;0.6881241 +27342;0;0.33926392;4.256897;7.429657 +27342;1;-0.7952155;4.4994636;8.680932 +27343;3;0.4023285;0.1353302;-0.29563904 +27344;5;999.5885 +27345;0;0.3201599;4.2283936;7.4916687 +27345;12;0.13669305;0.19753714;0.6844052;0.6883921 +27345;3;0.3711853;0.14938354;-0.2962494 +27347;0;0.27716064;4.252136;7.510742 +27347;1;-0.80594516;4.514881;8.671932 +27347;3;0.3381958;0.16221619;-0.2980957 +27349;4;19.242859;-24.14093;-50.09613 +27349;6;-1.4159346;-0.5148591;-0.03688516 +27349;7;0.17207994;-0.85994637;0.48050052;0.0;0.98456;0.13424776;-0.11233525;0.0;0.03209617 +27350;0;0.23893738;4.290146;7.6204376 +27350;3;0.306427;0.17016602;-0.3005371 +27350;12;0.13701938;0.1984769;0.68378943;0.68866885 +27352;0;0.24848938;4.2949066;7.7015076 +27352;1;-0.81791323;4.527589;8.664184 +27352;2;-1.1736565;0.27737188;1.1863728; +27352;3;0.2770996;0.1817627;-0.3023529 +27355;0;0.21505737;4.3376617;7.782593 +27355;12;0.1371951;0.19935453;0.68320227;0.68896294 +27355;3;0.24533081;0.19581604;-0.3035736 +27357;0;0.17684937;4.370926;7.815979 +27357;1;-0.8308843;4.537606;8.657706 +27358;3;0.21174622;0.20802307;-0.30419922 +27359;4;19.242859;-24.14093;-50.09613 +27359;6;-1.417058;-0.50979257;-0.022622783 +27359;7;0.16400297;-0.8625509;0.4786531;0.0;0.98626214;0.1336619;-0.097063474;0.0;0.019744515 +27359;0;0.08607483;4.275894;7.844589 +27360;3;0.17692566;0.22390747;-0.30847168 +27360;12;0.13723285;0.20015968;0.6826171;0.6893019 +27362;0;0.03831482;4.275894;7.887512 +27362;1;-0.8452449;4.544656;8.6526165 +27362;3;0.14698792;0.233078;-0.3121338 +27364;0;-0.033355713;4.2283936;7.906601 +27365;12;0.13709442;0.20090672;0.6820976;0.68962634 +27365;3;0.119506836;0.23796082;-0.3157959 +27367;0;-0.100234985;4.2473907;7.944748 +27367;3;0.08773804;0.23857117;-0.3176422 +27367;1;-0.8607584;4.5490203;8.648793 +27369;4;19.692993;-23.991394;-49.046326 +27369;6;-1.462185;-0.49092245;0.01261584 +27369;7;0.10247684;-0.8767019;0.46999186;0.0;0.99467313;0.095595896;-0.038557816;0.0;-0.0111255925 +27372;0;-0.21009827;4.2426453;7.9304504 +27372;3;0.058410645;0.23612976;-0.31886292 +27372;12;0.13681144;0.20159271;0.68159926;0.68997496 +27372;1;-0.8767191;4.5508175;8.646244 +27372;0;-0.32476807;4.2616425;8.030594 +27372;2;-0.89539653;0.26670265;0.7515907; +27372;3;0.029708862;0.23002625;-0.3157959 +27376;12;0.13641188;0.20219049;0.68112093;0.6903515 +27376;0;-0.44895935;4.2949066;8.178452 +27376;3;0.0022125244;0.22329712;-0.3109131 +27377;1;-0.8924265;4.5501375;8.644995 +27377;0;-0.5397186;4.3091583;8.283371 +27377;3;-0.0234375;0.2135315;-0.30419922 +27379;4;18.492126;-23.840332;-49.647522 +27379;6;-1.4259541;-0.4788241;0.065064915 +27379;7;0.11438794;-0.8782436;0.46433127;0.0;0.9917587;0.12810381;-0.0020219944;0.0;-0.0577068 +27379;12;0.13595426;0.2026583;0.6805792;0.69083875 +27379;0;-0.5779419;4.275894;8.369217 +27379;3;-0.050308228;0.20558167;-0.29258728 +27382;1;-0.9072119;4.547176;8.645014 +27383;0;-0.6113739;4.2473907;8.38829 +27383;3;-0.077804565;0.19459534;-0.2791443 +27383;5;999.5801 +27384;17;1;38dead6d7725;13993;1995;-75; +27385;17;1;38dead6d60ff;8586;1924;-63; +27386;17;1;1c1bb5efa29a;6082;524;-61; +27386;17;1;1c1bb5ecd182;3430;574;-54; +27386;12;0.13540947;0.20302247;0.68017614;0.69123554 +27386;0;-0.6495819;4.1951294;8.421677 +27387;3;-0.10040283;0.17932129;-0.26937866 +27387;1;-0.92065173;4.541998;8.646316 +27387;0;-0.73558044;4.1381226;8.445526 +27387;3;-0.12606812;0.16160583;-0.2651062 +27388;4;20.593262;-23.54126;-48.446655 +27388;6;-1.521802;-0.45410672;0.08687781 +27388;7;0.010773833;-0.89757484;0.44073033;0.0;0.9968971;0.04401131;0.06526222;0.0;-0.077974856 +27389;12;0.13481458;0.20325452;0.6798305;0.69162357 +27389;0;-0.8120117;4.0716095;8.517059 +27389;3;-0.1535492;0.13717651;-0.26142883 +27390;0;-0.826355;3.9955902;8.674438 +27391;1;-0.9324443;4.5345125;8.64898 +27391;2;-0.320413;0.33978748;0.23698425; +27391;3;-0.18104553;0.109069824;-0.25959778 +27394;12;0.13418977;0.20332831;0.67951685;0.6920315 +27394;0;-0.831131;3.933838;8.774612 +27394;3;-0.20913696;0.0821991;-0.25837708 +27395;1;-0.94191325;4.524524;8.653184 +27395;0;-0.859787;3.9290771;8.84137 +27396;3;-0.23724365;0.05836487;-0.25837708 +27398;4;19.692993;-23.091125;-48.29712 +27398;6;-1.6311388;-0.41644087;0.09694109 +27398;7;-0.09910352;-0.91287;0.3960392;0.0;0.9911324;-0.055151775;0.12089284;0.0;-0.088517174 +27398;0;-0.888443;3.8673248;8.917694 +27399;3;-0.26228333;0.033325195;-0.25532532 +27400;12;0.13356365;0.20321208;0.6791948;0.69250274 +27401;0;-0.93621826;3.8293152;9.013062 +27401;1;-0.94932985;4.512106;8.658855 +27402;3;-0.2861023;0.009506226;-0.2516632 +27403;0;-0.93621826;3.7817993;9.108459 +27404;12;0.13291268;0.20292321;0.6789127;0.69298923 +27405;3;-0.3068695;-0.013702393;-0.24737549 +27405;0;-0.9553375;3.682022;9.203827 +27405;3;-0.3239746;-0.04119873;-0.24249268 +27405;1;-0.95460564;4.4975634;8.665839 +27410;4;20.292664;-23.840332;-49.197388 +27410;6;-1.7849028;-0.37870818;0.10342748 +27410;7;-0.24863847;-0.9079276;0.3374113;0.0;0.96383446;-0.19741908;0.17902213;0.0;-0.095927685 +27410;0;-0.9696655;3.6250305;9.270599 +27410;3;-0.34048462;-0.06745911;-0.23577881 +27410;12;0.13225599;0.20246768;0.6786511;0.69350415 +27410;0;-0.93144226;3.548996;9.337372 +27410;1;-0.95746404;4.481362;8.673913 +27410;2;-0.08205211;0.704854;-0.38781357; +27410;3;-0.35513306;-0.09434509;-0.23028564 +27414;0;-0.9601135;3.5062408;9.399368 +27414;3;-0.36369324;-0.12243652;-0.22111511 +27414;12;0.13162383;0.20185602;0.6784083;0.69404006 +27414;1;-0.95772326;4.4639416;8.682862 +27415;0;-0.89323425;3.4824982;9.470917 +27415;3;-0.3679657;-0.14932251;-0.2150116 +27417;4;20.892334;-22.790527;-49.197388 +27417;6;-1.806693;-0.3509275;0.09403524 +27417;7;-0.26406708;-0.9130473;0.3108265;0.0;0.96046543;-0.21947092;0.1712852;0.0;-0.08817411 +27417;0;-0.8215637;3.4302368;9.613998 +27417;3;-0.37223816;-0.17741394;-0.20706177 +27418;12;0.13105015;0.20109023;0.6781484;0.69462466 +27419;0;-0.7785797;3.3969727;9.661682 +27419;1;-0.9551768;4.445987;8.69235 +27419;3;-0.3704071;-0.20185852;-0.19851685 +27420;5;999.5801 +27421;0;-0.7833557;3.3874664;9.70462 +27422;12;0.13054334;0.20021087;0.6779383;0.695179 +27422;3;-0.36735535;-0.22506714;-0.18629456 +27424;0;-0.73080444;3.3542175;9.747543 +27424;1;-0.95006555;4.4280996;8.702036 +27424;3;-0.3581848;-0.24461365;-0.17590332 +27426;4;21.942139;-23.840332;-49.647522 +27426;6;-1.8871866;-0.33055577;0.074833184 +27426;7;-0.33332872;-0.898914;0.2843337;0.0;0.94015485;-0.29429373;0.17175552;0.0;-0.07071583 +27426;0;-0.68304443;3.2877045;9.771393 +27427;3;-0.34292603;-0.2611084;-0.16430664 +27427;12;0.13012813;0.19923812;0.6777433;0.6957262 +27431;1;-0.94268155;4.4108686;8.711584 +27431;0;-0.68304443;3.2639465;9.790451 +27431;3;-0.3251953;-0.27638245;-0.15332031 +27431;0;-0.65914917;3.235443;9.852463 +27433;3;-0.300766;-0.28675842;-0.14047241 +27433;0;-0.6113739;3.2164307;9.871536 +27433;1;-0.9335753;4.395338;8.72041 +27434;3;-0.27450562;-0.29348755;-0.12765503 +27434;2;-0.18954104;1.0235109;-0.93834686; +27434;12;0.12981431;0.19821218;0.67756313;0.6962531 +27436;4;21.192932;-21.440125;-48.446655 +27436;6;-1.8410274;-0.31441793;0.061854 +27436;7;-0.2848668;-0.9164648;0.28096795;0.0;0.9567629;-0.25386712;0.14197242;0.0;-0.058784205 +27436;0;-0.5874939;3.2116852;9.9096985 +27436;3;-0.24395752;-0.29714966;-0.113601685 +27437;12;0.12965116;0.19717537;0.6772968;0.6968368 +27438;0;-0.5253906;3.2306824;9.9049225 +27438;1;-0.92322963;4.382163;8.728139 +27438;3;-0.21035767;-0.29470825;-0.101379395 +27440;0;-0.48239136;3.2259216;9.923996 +27441;12;0.12958825;0.19621086;0.67714393;0.6972692 +27441;3;-0.1743164;-0.28738403;-0.089782715 +27443;0;-0.4202881;3.3067017;9.885849 +27444;1;-0.9123977;4.371962;8.734391 +27444;3;-0.13705444;-0.2782135;-0.077560425 +27445;4;20.4422;-23.690796;-50.247192 +27445;6;-1.9016633;-0.3225182;0.042488523 +27445;7;-0.33730265;-0.8969978;0.2856952;0.0;0.9405338;-0.30811328;0.14304626;0.0;-0.040285703 +27445;0;-0.36297607;3.3494568;9.9144745 +27446;3;-0.097961426;-0.2635498;-0.065963745 +27446;12;0.12965074;0.19535527;0.6770024;0.69763523 +27447;0;-0.3199768;3.3922272;9.871536 +27448;1;-0.90176845;4.365129;8.738911 +27448;2;-0.44541723;1.0988097;-1.1594763; +27448;3;-0.05886841;-0.24705505;-0.05557251 +27450;0;-0.2722168;3.4112244;9.828613 +27450;12;0.12982415;0.1946483;0.6768715;0.69792753 +27450;3;-0.017944336;-0.2268982;-0.044570923 +27452;0;-0.23399353;3.434967;9.75708 +27453;1;-0.89199996;4.361807;8.741572 +27453;3;0.021148682;-0.20187378;-0.033569336 +27455;4;20.292664;-23.54126;-50.846863 +27455;6;-1.8355179;-0.33840868;0.023977326 +27455;7;-0.2692474;-0.91042525;0.31405693;0.0;0.96280545;-0.24680133;0.109976;0.0;-0.022615263 +27455;0;-0.22442627;3.5205078;9.661682 +27455;3;0.059631348;-0.17927551;-0.025634766 +27456;12;0.13009366;0.19412221;0.67674595;0.69814557 +27457;1;-0.8836788;4.362071;8.742286 +27458;0;-0.23399353;3.548996;9.59491 +27458;3;0.09689331;-0.1572876;-0.013427734 +27459;5;999.5801 +27460;12;0.13043807;0.1938012;0.6766341;0.69827896 +27460;0;-0.19577026;3.6202698;9.4804535 +27460;3;0.13232422;-0.13467407;-0.004272461 +27462;0;-0.19099426;3.6535187;9.365997 +27462;1;-0.87680334;4.3657193;8.741157 +27463;3;0.16287231;-0.1126709;0.0036773682 +27465;4;20.593262;-23.240662;-50.39673 +27465;6;-1.7325487;-0.37185794;0.020389479 +27465;7;-0.16832574;-0.9194926;0.35524613;0.0;0.9855484;-0.15004095;0.07862607;0.0;-0.01899462 +27465;0;-0.17666626;3.729538;9.251541 +27465;3;0.18974304;-0.09190369;0.013442993 +27466;12;0.13085091;0.19367748;0.6765357;0.69833124 +27467;0;-0.147995;3.796051;9.056 +27468;1;-0.8713625;4.372279;8.738421 +27468;2;-0.7034367;0.7899699;-0.7689123; +27468;3;0.21052551;-0.075424194;0.02078247 +27469;0;-0.138443;3.8958282;8.951065 +27470;12;0.13131775;0.193732;0.67644966;0.69831187 +27470;3;0.22885132;-0.059539795;0.028717041 +27472;0;-0.143219;3.9480896;8.76506 +27472;1;-0.8670195;4.3810334;8.734468 +27472;3;0.24229431;-0.0460968;0.03666687 +27474;4;19.993591;-22.340393;-49.49646 +27474;6;-1.5662472;-0.42316556;0.016338307 +27474;7;-0.0021604258;-0.9117841;0.41066414;0.0;0.99988663;0.0041478593;0.014469568;0.0;-0.0148965 +27474;0;-0.12411499;3.9908295;8.650604 +27474;3;0.24900818;-0.03755188;0.041549683 +27475;12;0.13182628;0.19391586;0.67635477;0.69825697 +27476;0;-0.138443;4.0336;8.507523 +27477;1;-0.86344343;4.391166;8.7297325 +27477;3;0.25205994;-0.028381348;0.045211792 +27479;0;-0.16711426;4.085861;8.35968 +27479;12;0.13234481;0.19419497;0.6763024;0.698132 +27479;3;0.24961853;-0.02532959;0.050720215 +27481;0;-0.17666626;4.123871;8.202286 +27481;1;-0.8603731;4.401804;8.724677 +27482;3;0.24473572;-0.025939941;0.05316162 +27483;13;75.905 +27485;4;20.742798;-23.390198;-49.79706 +27485;6;-1.4865255;-0.46576884;0.021535331 +27485;7;0.074514866;-0.8903059;0.4492249;0.0;0.9970344;0.07520486;-0.016336031;0.0;-0.019239828 +27485;0;-0.23876953;4.2046356;8.083054 +27485;3;0.23800659;-0.030212402;0.055603027 +27486;12;0.1328602;0.19451782;0.6762642;0.6979812 +27486;0;-0.22921753;4.2426453;8.049683 +27487;1;-0.8572004;4.4123826;8.719645 +27487;2;-0.73104817;0.35405874;0.26542664; +27487;3;0.22763062;-0.03755188;0.057434082 +27489;0;-0.22442627;4.3186646;7.98291 +27489;12;0.1333746;0.19483197;0.67623866;0.6978202 +27489;3;0.21540833;-0.04121399;0.058044434 +27491;0;-0.21487427;4.3994293;7.844589 +27491;1;-0.85348433;4.422316;8.714975 +27491;3;0.20135498;-0.046707153;0.057434082 +27493;4;20.4422;-22.640991;-49.046326 +27493;6;-1.3393328;-0.510955;0.02738455 +27493;7;0.21628362;-0.8490158;0.48207223;0.0;0.97603846;0.2001025;-0.0854871;0.0;-0.023883954 +27494;0;-0.23399353;4.432678;7.8302765 +27494;12;0.13388538;0.1951003;0.67621315;0.6976722 +27494;3;0.18424988;-0.04975891;0.058044434 +27496;0;-0.30085754;4.4897003;7.7587433 +27496;1;-0.8494775;4.4312277;8.710839 +27496;3;0.16714478;-0.05709839;0.054992676 +27497;5;999.5801 +27499;12;0.13436218;0.19531944;0.67620486;0.69752717 +27499;0;-0.3295288;4.503952;7.6633606 +27499;3;0.15127563;-0.06564331;0.05316162 +27502;1;-0.84511524;4.4388885;8.707362 +27502;0;-0.3438568;4.556198;7.6156616 +27502;3;0.13417053;-0.07420349;0.051315308 +27505;4;21.942139;-23.54126;-49.197388 +27505;6;-1.2979;-0.5386957;0.04512063 +27506;7;0.246964;-0.8266136;0.5056863;0.0;0.9682509;0.23135172;-0.09469231;0.0;-0.03871744 +27506;0;-0.3295288;4.61322;7.5918274 +27506;3;0.11216736;-0.083358765;0.04826355 +27506;1;-0.84011424;4.4451876;8.704632 +27506;2;-0.5965012;-0.045715332;0.96704674; +27506;12;0.1348077;0.19547093;0.6762002;0.69740325 +27506;0;-0.3295288;4.660721;7.553665 +27507;3;0.090789795;-0.091308594;0.045211792 +27510;12;0.13522436;0.19554327;0.6761981;0.69730437 +27510;0;-0.37728882;4.6987305;7.5012054 +27510;3;0.07185364;-0.09741211;0.041549683 +27512;1;-0.83472294;4.449857;8.702765 +27512;0;-0.4298401;4.7414856;7.4821167 +27512;3;0.054138184;-0.10475159;0.038497925 +27513;4;19.392395;-23.091125;-50.247192 +27513;6;-1.1236883;-0.5640929;0.057385918 +27513;7;0.40399772;-0.76200426;0.50609833;0.0;0.91347504;0.36537585;-0.17906377;0.0;-0.048468728 +27513;12;0.13560842;0.19552164;0.6761487;0.6972838 +27514;0;-0.41073608;4.7700043;7.4868927 +27514;3;0.03642273;-0.111450195;0.034225464 +27515;0;-0.36775208;4.8127594;7.4868927 +27515;1;-0.8288921;4.453074;8.701676 +27515;3;0.018096924;-0.11634827;0.0317688 +27518;12;0.13594168;0.19543192;0.6761491;0.6972437 +27520;0;-0.40119934;4.8460083;7.5012054 +27520;1;-0.8228888;4.4548626;8.701331 +27521;3;0.002822876;-0.11878967;0.025054932 +27522;0;-0.43940735;4.874527;7.520279 +27522;3;-0.010604858;-0.12123108;0.02017212 +27524;12;0.13622646;0.19527566;0.6761484;0.69723254 +27524;4;21.043396;-23.390198;-50.9964 +27524;6;-1.1218865;-0.57432026;0.058363304 +27525;7;0.40469575;-0.75637865;0.513919;0.0;0.9131391;0.3643561;-0.18281549;0.0;-0.048971783 +27525;0;-0.43940735;4.8555145;7.525055 +27525;3;-0.025268555;-0.12307739;0.014678955 +27525;1;-0.8170062;4.455392;8.701614 +27525;0;-0.49671936;4.850769;7.553665 +27525;2;-0.44234204;-0.34727526;1.188221; +27527;3;-0.0393219;-0.124298096;0.007949829 +27527;12;0.13646251;0.1950707;0.67614055;0.6972513 +27527;0;-0.49195862;4.893524;7.5822906 +27527;3;-0.050308228;-0.1255188;0.0042877197 +27530;1;-0.81128687;4.454758;8.702474 +27530;0;-0.49195862;4.9125214;7.639511 +27530;3;-0.06314087;-0.12307739;-0.0018310547 +27532;4;20.292664;-23.840332;-50.09613 +27532;6;-1.1491375;-0.57052684;0.06430781 +27532;7;0.37676144;-0.76790047;0.5180538;0.0;0.92473006;0.34445226;-0.16194756;0.0;-0.05408522 +27532;0;-0.5301666;4.9362793;7.682434 +27533;3;-0.07597351;-0.12307739;-0.00793457 +27533;12;0.13665262;0.19482116;0.67612255;0.6973014 +27534;0;-0.5540619;4.950531;7.730133 +27534;1;-0.8059507;4.4530263;8.7038555 +27534;3;-0.08695984;-0.12123108;-0.01159668 +27537;5;999.5733 +27537;0;-0.5683899;4.9315186;7.777817 +27538;12;0.13678855;0.19453894;0.6761007;0.69737464 +27538;3;-0.09490967;-0.11512756;-0.016479492 +27539;0;-0.5922699;4.9030304;7.8398285 +27539;1;-0.80106884;4.4502687;8.705717 +27539;3;-0.105285645;-0.11022949;-0.01953125 +27542;4;20.4422;-23.991394;-49.79706 +27542;6;-1.186142;-0.55760866;0.07540305 +27542;7;0.33722296;-0.7865198;0.51736563;0.0;0.9392523;0.3183987;-0.1281696;0.0;-0.06392061 +27542;0;-0.6161499;4.917267;7.844589 +27542;3;-0.11567688;-0.10475159;-0.02319336 +27542;12;0.13687107;0.19423151;0.67607516;0.6974689 +27544;0;-0.6018219;4.8555145;7.887512 +27544;1;-0.79683137;4.4465966;8.707982 +27545;2;-0.28708863;-0.46462488;0.9549589; +27545;3;-0.12666321;-0.10168457;-0.02381897 +27547;0;-0.6495819;4.8365173;7.992447 +27547;12;0.13689408;0.19390841;0.67605066;0.697578 +27547;3;-0.13278198;-0.09680176;-0.025039673 +27549;0;-0.64004517;4.8222656;8.044907 +27549;3;-0.1401062;-0.09190369;-0.026870728 +27549;1;-0.7930484;4.4419475;8.710699 +27551;4;19.84253;-23.840332;-50.09613 +27551;6;-1.2103865;-0.53860164;0.07939182 +27551;7;0.31348038;-0.80327487;0.50643796;0.0;0.94715106;0.3027309;-0.10610804;0.0;-0.06808051 +27551;0;-0.64004517;4.827011;8.14505 +27552;3;-0.14620972;-0.087646484;-0.028686523 +27553;12;0.13686563;0.19356422;0.67603105;0.6976982 +27553;1;-0.789694;4.4365997;8.713729 +27554;0;-0.6113739;4.784256;8.221359 +27554;3;-0.15293884;-0.08152771;-0.02809143 +27555;0;-0.6161499;4.7747498;8.249985 +27556;12;0.13679318;0.1932093;0.6760188;0.69782275 +27556;3;-0.1547699;-0.076034546;-0.02809143 +27560;1;-0.78682095;4.4307113;8.716985 +27560;0;-0.6639252;4.7652435;8.302444 +27560;3;-0.16027832;-0.06930542;-0.02809143 +27565;12;0.1366799;0.19285409;0.6760145;0.6979473 +27565;2;-0.19192314;-0.36285925;0.50072575; +27565;1;-0.7844254;4.4244385;8.720386 +27565;4;19.993591;-22.640991;-52.946472 +27565;6;-1.133235;-0.5196749;0.07979762 +27565;7;0.3865276;-0.78620625;0.48215795;0.0;0.9196789;0.36779106;-0.13755175;0.0;-0.06918931 +27565;0;-0.65437317;4.7414856;8.35968 +27566;3;-0.15965271;-0.063812256;-0.026245117 +27566;0;-0.63526917;4.7462463;8.407364 +27566;3;-0.15965271;-0.056488037;-0.026245117 +27566;0;-0.6639252;4.73674;8.459839 +27566;12;0.13653377;0.19250363;0.67601913;0.6980681 +27566;3;-0.1572113;-0.048538208;-0.025039673 +27569;1;-0.78262234;4.4182196;8.7237 +27569;0;-0.6687012;4.7224884;8.46936 +27569;3;-0.1547699;-0.039993286;-0.02319336 +27570;4;19.543457;-23.240662;-50.09613 +27570;6;-1.2772228;-0.5073364;0.07879187 +27570;7;0.25187162;-0.8366467;0.4863981;0.0;0.9653123;0.25292563;-0.06481397;0.0;-0.06879615 +27570;0;-0.68782043;4.712982;8.512299 +27570;3;-0.15171814;-0.03265381;-0.021972656 +27571;12;0.13636817;0.19217856;0.67602265;0.69818664 +27572;0;-0.68304443;4.703491;8.569519 +27573;1;-0.78145266;4.412165;8.726869 +27573;3;-0.14620972;-0.023498535;-0.020751953 +27574;5;999.5733 +27575;0;-0.67349243;4.684494;8.574295 +27575;12;0.13618185;0.19188674;0.67604214;0.69828445 +27575;3;-0.14073181;-0.016174316;-0.018310547 +27578;1;-0.7809166;4.4064612;8.729798 +27579;0;-0.71647644;4.660721;8.631531 +27579;3;-0.13583374;-0.011276245;-0.016479492 +27579;4;19.392395;-23.091125;-50.9964 +27579;6;-1.2807742;-0.49367183;0.08281702 +27579;7;0.24743131;-0.8438229;0.47617298;0.0;0.9661632;0.25182787;-0.055779938;0.0;-0.072845235 +27580;0;-0.74513245;4.627472;8.660141 +27580;3;-0.13154602;-0.0051727295;-0.0146484375 +27581;12;0.13598095;0.19163576;0.6760676;0.6983678 +27582;0;-0.7499237;4.636963;8.703064 +27583;1;-0.7808492;4.4010935;8.7325115 +27583;2;-0.12874049;-0.28543377;0.1561718; +27584;3;-0.12666321;9.3078613E-4;-0.010375977 +27585;0;-0.7499237;4.6179657;8.774612 +27586;12;0.13577634;0.19141679;0.67609924;0.698437 +27587;3;-0.121780396;0.0076446533;-0.006713867 +27587;0;-0.7499237;4.6322327;8.784149 +27587;1;-0.78115094;4.3960915;8.735003 +27587;3;-0.11689758;0.014373779;-0.0018310547 +27589;4;18.34259;-22.640991;-49.49646 +27589;6;-1.3187746;-0.48378298;0.08516587 +27589;7;0.21014296;-0.85727715;0.47001687;0.0;0.9747665;0.22074594;-0.033190012;0.0;-0.075301275 +27589;0;-0.7833557;4.6179657;8.807983 +27589;3;-0.113845825;0.021697998;0.0030670166 +27590;12;0.13557437;0.19122738;0.67612255;0.69850564 +27591;0;-0.802475;4.6322327;8.86998 +27592;1;-0.78188634;4.391462;8.737267 +27592;3;-0.11323547;0.025970459;0.0073394775 +27594;12;0.13536161;0.19107589;0.6761813;0.6985314 +27594;0;-0.7881317;4.627472;8.865219 +27594;3;-0.1083374;0.030258179;0.0116119385 +27596;0;-0.816803;4.603714;8.936752 +27596;1;-0.782864;4.387018;8.73941 +27597;3;-0.10406494;0.033920288;0.017120361 +27600;4;20.593262;-22.190857;-50.09613 +27600;6;-1.3319929;-0.47399795;0.09114496 +27600;7;0.19519202;-0.86450094;0.46318266;0.0;0.9774158;0.21046174;-0.019084051;0.0;-0.08098404 +27600;12;0.1351418;0.19094387;0.6762565;0.69853735 +27601;0;-0.7929077;4.603714;8.922455 +27601;3;-0.09918213;0.039413452;0.022613525 +27601;1;-0.7839738;4.3829722;8.741341 +27602;0;-0.8072357;4.61322;8.960602 +27602;2;-0.04399991;-0.23677301;-0.12756538; +27602;3;-0.097351074;0.04185486;0.027496338 +27604;0;-0.8120117;4.6179657;9.003525 +27606;12;0.13492782;0.19083716;0.6763476;0.6985196 +27606;1;-0.7851033;4.37925;8.743105 +27607;17;1;38dead6d7725;11964;1070;-67; +27608;17;1;38dead6d60ff;11069;635;-66; +27609;17;1;1c1bb5efa29a;2087;3121;-72; +27609;17;1;1c1bb5ecd182;3173;2626;-55; +27609;3;-0.09185791;0.04246521;0.0317688 +27609;0;-0.7929077;4.646469;9.013062 +27609;3;-0.08757019;0.044906616;0.03727722 +27609;4;21.342468;-22.340393;-50.9964 +27609;6;-1.3263576;-0.47442305;0.08774728 +27609;7;0.20223701;-0.86311287;0.46274874;0.0;0.976229;0.21528316;-0.025102124;0.0;-0.077956036 +27609;0;-0.7881317;4.636963;9.017838 +27610;3;-0.08451843;0.04673767;0.04032898 +27610;12;0.13474555;0.1907314;0.67637;0.69856197 +27611;0;-0.7738037;4.6322327;9.041687 +27611;1;-0.78616226;4.375918;8.7446785 +27611;3;-0.08024597;0.046142578;0.04460144 +27612;5;999.5733 +27613;0;-0.7833557;4.603714;9.046463 +27613;12;0.13455208;0.19065692;0.6764891;0.6985042 +27613;3;-0.07292175;0.047958374;0.0476532 +27615;0;-0.7594757;4.603714;9.056 +27615;1;-0.7871063;4.3729687;8.746069 +27616;3;-0.069244385;0.048583984;0.050094604 +27618;4;20.4422;-23.690796;-49.49646 +27618;6;-1.4526058;-0.46889958;0.08366858 +27618;7;0.08000032;-0.88584274;0.45703673;0.0;0.99400306;0.1051884;0.029887792;0.0;-0.07455085 +27618;0;-0.73558044;4.5989685;9.0607605 +27618;3;-0.06253052;0.049194336;0.05316162 +27619;12;0.13437621;0.19059542;0.6766171;0.69843096 +27620;0;-0.72125244;4.603714;9.041687 +27620;1;-0.78795445;4.370491;8.747231 +27621;2;-0.06348562;-0.24881649;-0.29152298; +27621;3;-0.057037354;0.049804688;0.05621338 +27624;0;-0.7499237;4.5847015;9.051224 +27624;12;0.13421832;0.19055219;0.67675;0.69834435 +27624;3;-0.050308228;0.049194336;0.06109619 +27625;0;-0.69737244;4.5847015;9.056 +27625;3;-0.041763306;0.04736328;0.06414795 +27626;1;-0.78867495;4.368535;8.748142 +27627;4;19.242859;-23.840332;-50.39673 +27627;6;-1.4393157;-0.46745378;0.076855 +27627;7;0.09641588;-0.88501334;0.45547262;0.0;0.9929783;0.11703734;0.017214492;0.0;-0.06854236 +27628;0;-0.6782532;4.546707;9.075058 +27628;3;-0.033203125;0.047958374;0.06782532 +27628;12;0.13408378;0.19052401;0.676889;0.6982432 +27630;0;-0.6687012;4.546707;9.075058 +27630;1;-0.7891024;4.3672295;8.748756 +27630;3;-0.024658203;0.04736328;0.07208252 +27632;0;-0.65914917;4.5657043;9.070297 +27633;3;-0.0118255615;0.046142578;0.074539185 +27633;12;0.13398212;0.19051546;0.67703456;0.69812393 +27635;0;-0.63049316;4.5514526;9.046463 +27635;1;-0.7892977;4.36679;8.748958 +27635;3;-0.002670288;0.046142578;0.07759094 +27640;4;19.692993;-23.091125;-49.79706 +27640;6;-1.4320337;-0.46516812;0.06958248 +27640;7;0.10709518;-0.88515544;0.45280305;0.0;0.9923051;0.12362097;0.0069625676;0.0;-0.062138896 +27640;0;-0.5827179;4.5799713;9.027374 +27640;3;0.00894165;0.046142578;0.0806427 +27640;12;0.13392155;0.1905333;0.67718273;0.69798696 +27640;0;-0.5540619;4.603714;9.027374 +27640;3;0.019317627;0.04736328;0.08308411 +27640;2;-0.18331152;-0.20452261;-0.3085451; +27641;1;-0.7892448;4.367325;8.748695 +27642;0;-0.5253906;4.6084595;8.979691 +27642;12;0.1339054;0.19058277;0.67733085;0.6978328 +27642;3;0.030319214;0.046142578;0.086746216 +27644;0;-0.47763062;4.6179657;8.955841 +27644;1;-0.7890103;4.368847;8.747957 +27645;3;0.042526245;0.046142578;0.091033936 +27647;4;19.392395;-23.390198;-50.9964 +27647;6;-1.3931234;-0.4755008;0.053281266 +27647;7;0.15249284;-0.8750676;0.4593502;0.0;0.9871696;0.15713273;-0.02837602;0.0;-0.04734802 +27647;0;-0.48239136;4.627472;8.960602 +27647;3;0.054748535;0.044296265;0.09347534 +27648;12;0.13393335;0.19066434;0.6774707;0.6976694 +27649;0;-0.43940735;4.65123;8.908142 +27649;1;-0.78850365;4.371439;8.746708 +27650;3;0.06636047;0.04307556;0.09713745 +27651;5;999.5733 +27651;0;-0.44418335;4.6322327;8.931976 +27652;12;0.13400759;0.19078133;0.67762005;0.697478 +27652;3;0.07917786;0.04307556;0.098968506 +27655;1;-0.7877245;4.3750787;8.744958 +27655;0;-0.38685608;4.6654816;8.908142 +27656;3;0.0920105;0.04185486;0.10140991 +27658;4;20.593262;-22.790527;-48.89679 +27658;6;-1.4165698;-0.4820656;0.043399975 +27658;7;0.13359559;-0.87552243;0.46434104;0.0;0.99029005;0.13610967;-0.028279457;0.0;-0.03844201 +27658;0;-0.35820007;4.684494;8.884293 +27658;3;0.10118103;0.040023804;0.102630615 +27658;12;0.13413276;0.19093114;0.67776775;0.69726944 +27660;0;-0.3438568;4.670227;8.846146 +27660;1;-0.7866869;4.3797894;8.742693 +27660;2;-0.40199375;-0.26666832;-0.18269444; +27660;3;0.11277771;0.039413452;0.10507202 +27663;0;-0.3295288;4.6749725;8.81752 +27663;12;0.13430537;0.19111453;0.67791057;0.69704705 +27663;3;0.12132263;0.0388031;0.106918335 +27664;1;-0.78542584;4.385415;8.739985 +27664;0;-0.27697754;4.703491;8.774612 +27665;3;0.12988281;0.040634155;0.10935974 +27666;4;20.292664;-22.491455;-51.597595 +27666;6;-1.31733;-0.4918503;0.03155531 +27666;7;0.23621248;-0.853297;0.4648525;0.0;0.97130334;0.22103593;-0.08782284;0.0;-0.027810143 +27666;0;-0.24832153;4.6892242;8.798447 +27668;3;0.13598633;0.040634155;0.110580444 +27668;12;0.13466296;0.19122675;0.6775346;0.69731283 +27669;0;-0.24832153;4.6987305;8.70784 +27669;1;-0.78407;4.3917427;8.736929 +27669;3;0.14393616;0.040634155;0.111190796 +27672;0;-0.19099426;4.7462463;8.741211 +27672;12;0.13490883;0.19146547;0.6776744;0.69706386 +27672;3;0.14820862;0.043685913;0.1124115 +27674;0;-0.20533752;4.7414856;8.688751 +27674;1;-0.7826699;4.398693;8.733559 +27674;3;0.15371704;0.04673767;0.11424255 +27676;4;19.993591;-22.04132;-50.9964 +27676;6;-1.2961091;-0.49942154;0.023628172 +27676;7;0.26027945;-0.8449489;0.467243;0.0;0.9653106;0.23811585;-0.10712797;0.0;-0.020740291 +27676;0;-0.19577026;4.727234;8.650604 +27677;12;0.13517708;0.19172816;0.67781156;0.6968064 +27677;3;0.1579895;0.049194336;0.11424255 +27678;0;-0.138443;4.703491;8.6410675 +27679;2;-0.6011554;-0.30698013;-8.420944E-4; +27679;1;-0.78141856;4.4060593;8.729956 +27679;3;0.1579895;0.051635742;0.11424255 +27681;12;0.1354566;0.1920122;0.6779509;0.6965382 +27681;0;-0.09068298;4.73674;8.621979 +27681;3;0.1592102;0.0546875;0.11729431 +27683;0;-0.09068298;4.727234;8.588608 +27683;1;-0.78024316;4.413578;8.726263 +27683;3;0.1579895;0.057128906;0.119140625 +27686;4;19.093323;-23.091125;-49.79706 +27686;6;-1.3649362;-0.50313246;0.0105581265 +27686;7;0.1994145;-0.8575786;0.4741232;0.0;0.97987163;0.17907806;-0.0882199;0.0;-0.009249555 +27686;12;0.13573952;0.19230692;0.67808235;0.69627386 +27688;0;-0.052444458;4.7557526;8.559982 +27688;3;0.15615845;0.05834961;0.12036133 +27688;1;-0.77913654;4.421116;8.722545 +27688;0;-0.07635498;4.7794952;8.512299 +27688;3;0.15615845;0.057739258;0.12095642 +27690;5;999.5733 +27691;0;-0.042907715;4.7747498;8.497986 +27691;12;0.13601445;0.19260985;0.67823297;0.6959897 +27691;3;0.15309143;0.05834961;0.12158203 +27692;0;-0.057235718;4.7794952;8.455063 +27692;1;-0.777987;4.4285903;8.718856 +27693;3;0.15065002;0.060180664;0.122177124 +27695;4;19.543457;-24.14093;-50.09613 +27695;6;-1.3804253;-0.5144904;0.006769298 +27695;7;0.18594795;-0.85481644;0.48447114;0.0;0.9825419;0.16472703;-0.08646601;0.0;-0.0058929236 +27695;0;-0.028564453;4.803253;8.450302 +27696;3;0.14820862;0.056518555;0.122802734 +27696;12;0.13628758;0.1929096;0.6783871;0.69570297 +27698;0;0.014419556;4.8127594;8.41214 +27698;2;-0.7745319;-0.33870316;0.2000122; +27698;1;-0.7767611;4.4359007;8.715247 +27698;3;0.14637756;0.05529785;0.12461853 +27699;0;0.014419556;4.793747;8.393066 +27700;12;0.13655576;0.19320005;0.678546;0.6954148 +27701;3;0.14271545;0.053466797;0.12339783 +27702;0;0.052627563;4.8222656;8.354904 +27702;1;-0.775278;4.4430375;8.711743 +27703;3;0.13783264;0.052246094;0.12524414 +27704;4;19.692993;-22.640991;-49.046326 +27704;6;-1.3331153;-0.52346087;-0.006298919 +27704;7;0.23850487;-0.8417455;0.48433453;0.0;0.971126;0.2039214;-0.12381603;0.0;0.0054554227 +27705;0;0.066970825;4.841263;8.364441 +27705;3;0.13417053;0.048583984;0.12583923 +27709;12;0.13683254;0.19347137;0.67868716;0.69514716 +27709;0;0.028747559;4.803253;8.38353 +27709;1;-0.7735699;4.4498653;8.708409 +27709;3;0.12927246;0.04673767;0.12583923 +27714;12;0.1370951;0.19372682;0.67885566;0.6948597 +27715;1;-0.77162665;4.4562745;8.705304 +27716;12;0.13735078;0.19395544;0.67902595;0.694579 +27716;0;0.04786682;4.8365173;8.393066 +27716;3;0.125;0.043685913;0.12524414 +27717;0;0.07652283;4.8317566;8.393066 +27717;1;-0.7695323;4.462144;8.702483 +27717;2;-0.87573093;-0.3617139;0.30453014; +27717;3;0.11828613;0.04185486;0.12461853 +27717;4;19.242859;-23.840332;-51.14746 +27717;6;-1.3334532;-0.52233046;-0.009117134 +27717;7;0.23953234;-0.84236306;0.48275125;0.0;0.97085637;0.20376983;-0.12615877;0.0;0.007901336 +27717;0;0.071746826;4.817505;8.426437 +27718;3;0.11338806;0.040634155;0.12402344 +27718;0;0.066970825;4.8079987;8.455063 +27718;3;0.10850525;0.040023804;0.12646484 +27719;12;0.13759202;0.19415656;0.6791986;0.6943061 +27721;17;1;38dead6d7725;11599;1389;-67; +27721;17;1;38dead6d60ff;12680;1995;-74; +27722;17;1;1c1bb5efa29a;6484;2501;-64; +27722;17;1;1c1bb5ecd182;3088;1028;-53; +27722;0;0.119506836;4.784256;8.421677 +27722;3;0.102996826;0.0388031;0.12646484 +27722;0;0.052627563;4.793747;8.450302 +27722;1;-0.76729125;4.467568;8.699898 +27722;3;0.09811401;0.0388031;0.1282959 +27724;4;18.193054;-23.240662;-51.14746 +27724;6;-1.3087052;-0.51601017;-0.006227811 +27724;7;0.26206377;-0.8400915;0.47494093;0.0;0.96503544;0.22536458;-0.13385655;0.0;0.005416882 +27724;0;0.04786682;4.7652435;8.497986 +27725;3;0.0932312;0.03819275;0.12890625 +27726;12;0.13809288;0.19414294;0.67838854;0.6950021 +27726;1;-0.76501304;4.4725304;8.697548 +27726;0;0.057418823;4.803253;8.478897 +27726;3;0.08773804;0.037582397;0.12890625 +27729;5;999.5897 +27729;0;0.071746826;4.7794952;8.459839 +27729;12;0.13830405;0.19430497;0.6785768;0.694731 +27729;3;0.08345032;0.036361694;0.13012695 +27730;0;0.052627563;4.7652435;8.507523 +27731;1;-0.76263744;4.477059;8.695426 +27731;3;0.07917786;0.03453064;0.13378906 +27733;4;21.043396;-23.390198;-50.9964 +27733;6;-1.3654072;-0.5105724;-0.0061859246 +27733;7;0.20690355;-0.85412717;0.47713482;0.0;0.9783464;0.17793754;-0.10571864;0.0;0.0053969678 +27733;0;0.023986816;4.760498;8.559982 +27733;3;0.07551575;0.03453064;0.13439941 +27734;12;0.13849719;0.19444591;0.67877096;0.6944634 +27735;0;0.028747559;4.73674;8.612442 +27735;1;-0.76011235;4.4811625;8.693533 +27736;3;0.07002258;0.032699585;0.13500977 +27736;2;-0.87204874;-0.2977972;0.19274044; +27738;0;0.023986816;4.7557526;8.660141 +27739;12;0.13867876;0.19456506;0.6789762;0.6941931 +27744;12;0.1388484;0.19466515;0.6791857;0.6939261 +27744;1;-0.7574802;4.4848375;8.691868 +27744;3;0.06575012;0.03147888;0.13623047 +27744;0;-0.009475708;4.760498;8.650604 +27744;3;0.062072754;0.028411865;0.13684082 +27744;4;20.292664;-23.840332;-48.89679 +27744;6;-1.4382449;-0.50307953;0.0010953806 +27744;7;0.13164005;-0.8684168;0.47804102;0.0;0.9912971;0.1157888;-0.06263367;0.0;-9.59665E-4 +27744;0;0.0048675537;4.7557526;8.6458435 +27744;3;0.059020996;0.025970459;0.13868713 +27746;0;0.014419556;4.7557526;8.674438 +27746;3;0.054748535;0.022918701;0.13928223 +27746;1;-0.7545841;4.488222;8.690372 +27747;0;7.6293945E-5;4.7414856;8.712601 +27748;12;0.13901386;0.19474342;0.6794036;0.69365764 +27748;3;0.051696777;0.02230835;0.14172363 +27750;0;0.014419556;4.712982;8.745987 +27750;1;-0.75145537;4.4912157;8.689097 +27750;3;0.04925537;0.018035889;0.1441803 +27752;4;19.993591;-24.290466;-48.59619 +27752;6;-1.4885837;-0.49426028;-0.0016487038 +27752;7;0.08289947;-0.8773465;0.47264227;0.0;0.9965569;0.07229197;-0.040599268;0.0;0.0014513861 +27753;0;7.6293945E-5;4.7414856;8.779373 +27753;3;0.045578003;0.016815186;0.14356995 +27753;12;0.13917233;0.19479811;0.679627;0.6933916 +27755;0;-0.0046844482;4.750992;8.745987 +27755;1;-0.7480541;4.4939733;8.687964 +27755;2;-0.81059474;-0.2587266;-0.015982628; +27755;3;0.04374695;0.013748169;0.14723206 +27757;0;-0.01423645;4.760498;8.769836 +27757;3;0.0443573;0.011306763;0.15089417 +27757;12;0.13933155;0.19483548;0.6798564;0.6931242 +27759;1;-0.7443304;4.496618;8.686916 +27760;0;0.023986816;4.7794952;8.78891 +27760;3;0.042526245;0.008865356;0.15211487 +27762;0;0.03352356;4.7747498;8.836609 +27762;3;0.04374695;0.00642395;0.15455627 +27762;4;19.242859;-23.840332;-50.39673 +27762;6;-1.4202399;-0.4953914;-0.003793695 +27762;7;0.15177016;-0.8698304;0.46942607;0.0;0.9884102;0.13195704;-0.07505106;0.0;0.0033376194 +27763;12;0.13949645;0.19485566;0.6800948;0.6928514 +27764;0;0.071746826;4.827011;8.879532 +27764;1;-0.74025065;4.499223;8.685915 +27765;3;0.0443573;0.0015563965;0.15701294 +27766;5;999.5897 +27767;0;0.062194824;4.893524;8.855682 +27767;12;0.13968012;0.19486065;0.68031436;0.69259745 +27767;3;0.046813965;-0.0015106201;0.15823364 +27769;1;-0.735747;4.5020175;8.68485 +27769;0;0.071746826;4.879257;8.898605 +27769;3;0.049865723;-0.0051727295;0.15760803 +27771;4;18.792725;-23.390198;-50.247192 +27771;6;-1.3867154;-0.5015365;-0.008062529 +27771;7;0.18684788;-0.8620305;0.47115955;0.0;0.9823634;0.1605004;-0.09592562;0.0;0.007069511 +27772;0;0.09085083;4.893524;8.931976 +27772;3;0.051696777;-0.0051727295;0.15882874 +27772;12;0.1398756;0.19485994;0.6805619;0.692315 +27774;0;0.119506836;4.907776;8.941528 +27774;1;-0.73096865;4.5050044;8.683705 +27774;2;-0.8475316;-0.34074783;-0.18106174; +27774;3;0.054748535;-0.0076141357;0.15945435 +27776;0;0.1386261;4.9647827;8.960602 +27776;12;0.14009117;0.19485831;0.68080646;0.6920314 +27777;3;0.0602417;-0.011886597;0.16067505 +27778;0;0.18640137;5.0835724;8.970154 +27779;1;-0.7258662;4.5084;8.682371 +27779;3;0.06452942;-0.014953613;0.16004944 +27781;4;20.742798;-23.091125;-49.49646 +27781;6;-1.3849683;-0.5154973;-0.020777185 +27781;7;0.19478594;-0.85506856;0.4805374;0.0;0.98067915;0.16075034;-0.11147924;0.0;0.018075839 +27781;0;0.20550537;5.164322;9.008301 +27781;3;0.06880188;-0.01739502;0.15882874 +27782;12;0.14034621;0.19485663;0.6810145;0.6917754 +27784;0;0.21984863;5.2736053;9.056 +27784;1;-0.720478;4.5123067;8.68079 +27785;3;0.074905396;-0.018615723;0.15882874 +27786;0;0.27236938;5.378128;9.065521 +27786;12;0.14062315;0.19487102;0.68124825;0.6914849 +27786;3;0.08041382;-0.018615723;0.15701294 +27788;0;0.31536865;5.47789;9.11322 +27789;1;-0.71492696;4.516831;8.678895 +27789;3;0.08529663;-0.015548706;0.15638733 +27791;4;20.4422;-23.690796;-49.49646 +27791;6;-1.3572656;-0.5409584;-0.03459182 +27791;7;0.22919028;-0.83774716;0.49563244;0.0;0.9729301;0.18165405;-0.14285979;0.0;0.029646732 +27791;0;0.3201599;5.6061707;9.14183 +27791;3;0.08895874;-0.011276245;0.15333557 +27792;12;0.14093043;0.19490404;0.68147266;0.69119185 +27793;0;0.28671265;5.6964264;9.146606 +27793;1;-0.7096579;4.521909;8.676683 +27794;2;-1.0144112;-0.8161216;-0.38249683; +27794;3;0.09262085;-0.004562378;0.15150452 +27795;0;0.30104065;5.758194;9.208603 +27796;12;0.1412477;0.19496876;0.6816877;0.6908967 +27796;3;0.09384155;0.0033721924;0.14845276 +27798;1;-0.70505595;4.5273123;8.674241 +27798;0;0.27236938;5.8532104;9.232452 +27798;3;0.090789795;0.014373779;0.145401 +27801;4;19.543457;-24.591064;-49.647522 +27802;6;-1.3153623;-0.56483567;-0.029492749 +27802;7;0.26782784;-0.81727;0.51023334;0.0;0.9631447;0.21342051;-0.16371883;0.0;0.024908222 +27802;0;0.28193665;5.881729;9.280151 +27802;3;0.086517334;0.025970459;0.14479065 +27802;12;0.14155449;0.19506977;0.68189335;0.69060236 +27803;0;0.25328064;5.9292297;9.299225 +27803;1;-0.7014518;4.532548;8.671799 +27804;3;0.07795715;0.036972046;0.14356995 +27806;0;0.21028137;5.9529877;9.342148 +27806;12;0.14181598;0.19520232;0.6821011;0.69030607 +27807;3;0.06636047;0.048583984;0.14479065 +27807;5;999.5897 +27807;0;0.1720581;6.01474;9.413681 +27808;1;-0.69890237;4.537102;8.669622 +27808;3;0.051086426;0.05834961;0.1441803 +27811;4;19.543457;-22.491455;-49.647522 +27811;6;-1.2159154;-0.5684823;-0.018275417 +27811;7;0.35664576;-0.79020745;0.49837342;0.0;0.9341128;0.29282695;-0.20417091;0.0;0.015400185 +27811;0;0.066970825;6.071762;9.470917 +27812;3;0.029083252;0.0693512;0.14172363 +27812;12;0.14200918;0.19535019;0.68232125;0.69000685 +27812;0;-0.019012451;6.0670013;9.537689 +27812;1;-0.6974574;4.5403113;8.668058 +27812;2;-0.9537081;-1.4101272;-0.6805458; +27813;3;0.0016021729;0.07484436;0.13868713 +27815;0;-0.08111572;6.076523;9.571075 +27815;12;0.14210649;0.19548486;0.68256015;0.68971235 +27815;3;-0.024047852;0.07423401;0.13500977 +27818;0;-0.16233826;6.0955048;9.628311 +27819;1;-0.69676113;4.5413218;8.667584 +27819;3;-0.056427002;0.073013306;0.13012695 +27820;4;18.94226;-24.14093;-50.846863 +27820;6;-1.2031635;-0.56432533;0.016858915 +27820;7;0.35094234;-0.7884907;0.5050959;0.0;0.93628865;0.30368116;-0.1764686;0.0;-0.014244258 +27821;0;-0.22442627;6.152527;9.580612 +27821;12;0.14211932;0.19554275;0.6827265;0.6895287 +27821;3;-0.09185791;0.0705719;0.12583923 +27822;0;-0.21966553;6.086014;9.709381 +27822;1;-0.6962628;4.5396905;8.668479 +27823;3;-0.12728882;0.055908203;0.122802734 +27826;0;-0.20054626;5.962494;10.028931 +27826;3;-0.15905762;0.04246521;0.118515015 +27826;12;0.14199378;0.19550551;0.6829969;0.6892972 +27827;0;-0.3152008;5.857971;10.114777 +27827;1;-0.6950229;4.534756;8.671162 +27827;3;-0.19998169;0.043685913;0.11729431 +27832;4;18.492126;-23.840332;-49.197388 +27832;6;-1.3228594;-0.524737;0.031152328 +27832;7;0.23015828;-0.8389908;0.4930737;0.0;0.97277987;0.21238677;-0.092689596;0.0;-0.026956603 +27832;0;-0.49671936;5.7866974;10.086151 +27832;3;-0.24212646;0.040023804;0.11790466 +27832;12;0.14176935;0.19531523;0.68328035;0.6891164 +27832;0;-0.64004517;5.834198;10.05278 +27832;1;-0.6939134;4.5264826;8.675572 +27833;3;-0.28182983;0.02659607;0.114852905 +27833;2;-0.466389;-1.4657221;-1.1707811; +27836;17;1;38dead6d7725;12636;1111;-69; +27837;17;1;38dead6d60ff;8926;3113;-67; +27837;17;1;1c1bb5efa29a;8319;1031;-66; +27838;17;1;1c1bb5ecd182;2475;1104;-53; +27838;12;0.14141826;0.19499542;0.68358994;0.6889721 +27838;1;-0.6920388;4.514835;8.681789 +27840;12;0.14096312;0.19450128;0.6839179;0.6888796 +27842;1;-0.6890773;4.500146;8.689647 +27844;0;-0.6925812;5.781952;10.086151 +27844;3;-0.31604004;0.0058288574;0.10935974 +27844;0;-0.74513245;5.658432;10.210159 +27844;3;-0.34902954;-0.011886597;0.10569763 +27845;4;21.342468;-24.7406;-49.49646 +27845;6;-1.4039137;-0.5049339;0.07285036 +27845;7;0.13094746;-0.8630476;0.4878542;0.0;0.9893406;0.1453797;-0.008367296;0.0;-0.06370272 +27845;0;-0.859787;5.5539093;10.3246155 +27845;3;-0.3789673;-0.028381348;0.10079956 +27845;0;-0.9792175;5.4493866;10.410461 +27845;3;-0.40400696;-0.043655396;0.0965271 +27845;0;-1.0269775;5.3353577;10.524933 +27845;3;-0.42599487;-0.059539795;0.094696045 +27845;12;0.14043824;0.19383943;0.68424994;0.68884367 +27846;1;-0.6850798;4.4830503;8.698795 +27847;0;-0.9983368;5.302109;10.615555 +27847;5;999.5897 +27847;3;-0.44432068;-0.07359314;0.091033936 +27848;4;18.94226;-23.840332;-50.09613 +27848;6;-1.4548106;-0.46146268;0.093768924 +27848;7;0.073807254;-0.8893862;0.45115936;0.0;0.9937423;0.10362111;0.04170099;0.0;-0.08383791 +27848;0;-1.0460968;5.2260895;10.696625 +27848;3;-0.46142578;-0.08641052;0.08493042 +27849;12;0.13986951;0.1930379;0.6845831;0.6888534 +27850;0;-1.0747681;5.1453247;10.720459 +27851;1;-0.68008924;4.4640512;8.708952 +27851;2;0.18317962;-0.97806835;-1.7395525; +27851;3;-0.47303772;-0.10168457;0.0818634 +27853;0;-1.1750793;5.097824;10.768173 +27853;12;0.13926825;0.19212185;0.68491316;0.6889032 +27853;3;-0.4797516;-0.11817932;0.078201294 +27856;1;-0.67422944;4.443968;8.719672 +27856;0;-1.2467346;4.9647827;10.887405 +27856;3;-0.4858551;-0.13528442;0.07575989 +27859;4;19.242859;-23.54126;-50.39673 +27859;6;-1.561636;-0.42538807;0.11401501 +27859;7;-0.037846472;-0.9108404;0.41101992;0.0;0.99389565;0.0083438605;0.110007726;0.0;-0.10362898 +27859;0;-1.2753906;4.841263;10.99231 +27859;3;-0.48953247;-0.15055847;0.074539185 +27859;12;0.13866973;0.19111517;0.6852027;0.689016 +27862;1;-0.66717213;4.423068;8.730834 +27862;0;-1.2897186;4.7319946;11.168793 +27862;3;-0.49075317;-0.16400146;0.075149536 +27863;0;-1.3375092;4.703491;11.254623 +27863;3;-0.48831177;-0.17376709;0.07759094 +27863;12;0.13808577;0.19003378;0.685505;0.68913174 +27865;0;-1.3804932;4.646469;11.321396 +27865;1;-0.6590809;4.401911;8.742134 +27866;3;-0.48526;-0.1798706;0.079422 +27867;4;19.993591;-23.091125;-50.546265 +27867;6;-1.682592;-0.38686708;0.121337645 +27867;7;-0.15612477;-0.9203144;0.35867333;0.0;0.98135614;-0.10331802;0.16206653;0.0;-0.11209473 +27867;0;-1.3948212;4.6084595;11.354797 +27867;3;-0.47792053;-0.18659973;0.08003235 +27868;12;0.1375353;0.1889043;0.68580055;0.6892583 +27869;0;-1.4234924;4.537201;11.354797 +27869;1;-0.65038085;4.3809767;8.753294 +27870;2;0.60164255;-0.39425564;-2.3850317; +27870;3;-0.4681549;-0.1920929;0.08003235 +27872;0;-1.4187012;4.4421844;11.402481 +27872;12;0.13701688;0.18775985;0.6860927;0.6893834 +27872;3;-0.4540863;-0.19882202;0.078811646 +27874;0;-1.4282684;4.347168;11.426331 +27874;1;-0.6412025;4.3607144;8.764082 +27874;3;-0.4363861;-0.20431519;0.07637024 +27878;4;19.543457;-24.14093;-49.647522 +27878;6;-1.8869689;-0.36097288;0.12435302 +27878;7;-0.35016528;-0.8891806;0.29452038;0.0;0.92947257;-0.29089278;0.2268529;0.0;-0.11603931 +27878;0;-1.3996124;4.2283936;11.459702 +27878;3;-0.41989136;-0.20980835;0.074539185 +27878;12;0.13654484;0.1866219;0.686371;0.68950903 +27884;0;-1.3996124;4.1381226;11.497879 +27884;1;-0.63160735;4.341607;8.77426 +27884;3;-0.40156555;-0.21347046;0.07208252 +27884;0;-1.3757172;4.0668488;11.578934 +27884;3;-0.38201904;-0.21224976;0.06904602 +27884;5;999.59644 +27884;0;-1.3900452;3.9860992;11.607559 +27885;12;0.13613775;0.18551281;0.6866252;0.68963575 +27885;1;-0.6218564;4.32383;8.78373 +27885;3;-0.35940552;-0.20858765;0.066589355 +27886;4;19.993591;-23.690796;-51.74713 +27886;6;-1.9255466;-0.32860705;0.11918586 +27886;7;-0.38087595;-0.88755786;0.25918102;0.0;0.91775167;-0.32877022;0.22280541;0.0;-0.11254167 +27887;0;-1.3661499;3.9243164;11.598022 +27887;3;-0.3349762;-0.19943237;0.06414795 +27887;12;0.13579258;0.18445024;0.6868534;0.6897616 +27888;0;-1.3709412;3.9005737;11.58371 +27889;1;-0.612585;4.3078117;8.792247 +27889;2;0.7191381;0.1727848;-2.7287703; +27889;3;-0.3080902;-0.18843079;0.06414795 +27891;0;-1.3804932;3.796051;11.521713 +27891;12;0.135501;0.18347536;0.6870557;0.68987733 +27891;3;-0.27694702;-0.1749878;0.06109619 +27893;0;-1.3613892;3.682022;11.564636 +27894;1;-0.6043345;4.293944;8.799599 +27894;3;-0.24151611;-0.16583252;0.05987549 +27896;4;18.792725;-23.091125;-49.79706 +27896;6;-2.0358732;-0.30625477;0.117180705 +27896;7;-0.4769201;-0.8521986;0.21518536;0.0;0.87184924;-0.427623;0.23878342;0.0;-0.111472696 +27896;0;-1.3470612;3.5727692;11.602783 +27897;3;-0.2048645;-0.15177917;0.058654785 +27897;12;0.13525465;0.18261991;0.6872358;0.6899733 +27898;0;-1.3518219;3.4919891;11.521713 +27898;1;-0.5971101;4.2827916;8.805525 +27899;3;-0.16638184;-0.13284302;0.05682373 +27901;0;-1.3613892;3.434967;11.412018 +27901;12;0.13507794;0.18191472;0.68738943;0.6900411 +27901;3;-0.1242218;-0.11695862;0.059265137 +27904;0;-1.2897186;3.3732147;11.297562 +27904;1;-0.5913516;4.2748623;8.809765 +27905;3;-0.07902527;-0.103515625;0.05987549 +27906;4;19.242859;-22.790527;-52.046204 +27906;6;-2.029249;-0.28838262;0.11366695 +27906;7;-0.46863165;-0.8597077;0.20319213;0.0;0.8766758;-0.4242855;0.22676319;0.0;-0.10873859 +27906;0;-1.2658386;3.3399658;11.268936 +27906;3;-0.031982422;-0.09008789;0.062927246 +27906;12;0.1349736;0.18139108;0.68751866;0.6900706 +27908;0;-1.2037506;3.278183;11.202164 +27908;1;-0.5866313;4.270678;8.81211 +27908;2;0.6731413;0.77263975;-2.6151342; +27908;3;0.01687622;-0.07298279;0.0647583 +27910;0;-1.2228394;3.2259216;11.073395 +27911;12;0.13497207;0.18105721;0.68762416;0.6900535 +27911;3;0.06941223;-0.05709839;0.06782532 +27913;0;-1.1846313;3.1736755;10.944626 +27913;1;-0.58315134;4.2706275;8.812365 +27913;3;0.1237793;-0.039382935;0.07330322 +27915;4;20.4422;-22.640991;-50.546265 +27915;6;-2.0227122;-0.28068107;0.10781889 +27915;7;-0.46097082;-0.86440754;0.20076233;0.0;0.8813709;-0.41960102;0.21707249;0.0;-0.10339901 +27916;0;-1.1702881;3.1261597;10.825394 +27916;3;0.17753601;-0.022888184;0.07759094 +27916;12;0.13508405;0.18093437;0.6876992;0.68998915 +27918;0;-1.1320801;3.135666;10.653702 +27918;1;-0.58087146;4.275188;8.810305 +27918;3;0.23007202;-0.0033416748;0.08003235 +27920;0;-1.1177521;3.0738983;10.48201 +27921;12;0.1353246;0.18104506;0.6877601;0.6898522 +27921;3;0.28382874;0.013748169;0.08493042 +27921;5;999.59644 +27923;0;-1.0699768;3.0406494;10.310318 +27923;1;-0.5799817;4.284154;8.806006 +27923;3;0.33392334;0.030853271;0.08981323 +27925;4;18.34259;-22.340393;-50.247192 +27925;6;-2.053093;-0.28533363;0.10340712 +27925;7;-0.48707813;-0.8501119;0.20016164;0.0;0.8677235;-0.44506192;0.22130467;0.0;-0.099049404 +27926;0;-1.0269775;3.0358887;10.086151 +27926;3;0.38034058;0.04736328;0.094696045 +27926;12;0.13568167;0.18138488;0.68779784;0.6896551 +27927;0;-0.98399353;3.012146;9.9144745 +27927;1;-0.58024275;4.297512;8.799479 +27928;2;0.47421992;1.1966915;-1.7419376; +27928;3;0.4237213;0.06262207;0.09957886 +27929;0;-0.9457855;3.078659;9.742767 +27930;12;0.1361618;0.18194756;0.6878187;0.68939143 +27930;3;0.4658661;0.07850647;0.10385132 +27932;0;-0.9648895;3.0596466;9.552002 +27932;1;-0.5816034;4.31485;8.790899 +27932;3;0.50312805;0.096221924;0.106918335 +27934;4;18.792725;-21.740723;-49.79706 +27934;6;-1.9271199;-0.3085168;0.100672886 +27934;7;-0.3756652;-0.8929364;0.24807303;0.0;0.92179507;-0.33236098;0.19957466;0.0;-0.09575768 +27935;0;-0.9601135;3.102417;9.346909 +27935;3;0.53733826;0.11027527;0.11180115 +27935;12;0.13679798;0.18267848;0.6876372;0.6892532 +27937;0;-0.91233826;3.08815;9.146606 +27937;1;-0.5841801;4.335398;8.780613 +27937;3;0.5678711;0.124313354;0.11607361 +27940;0;-0.89323425;3.0976562;8.951065 +27940;12;0.13746075;0.18362108;0.6876324;0.6888757 +27940;3;0.5959778;0.13897705;0.12095642 +27942;0;-0.92666626;3.1404114;8.84137 +27942;1;-0.5877448;4.358681;8.768841 +27942;3;0.6185913;0.15608215;0.12461853 +27944;4;19.093323;-23.991394;-49.79706 +27944;6;-1.9477135;-0.33957618;0.104428984 +27944;7;-0.3983343;-0.8767081;0.2696529;0.0;0.91195905;-0.3470383;0.218849;0.0;-0.098286785 +27945;0;-0.897995;3.145172;8.660141 +27945;3;0.6399536;0.17074585;0.13012695 +27945;12;0.13818702;0.18471603;0.6876221;0.6884478 +27947;0;-0.874115;3.1974335;8.474136 +27947;1;-0.5924332;4.384119;8.755834 +27947;2;0.27155113;1.275701;-0.34029293; +27949;12;0.1389515;0.18594572;0.68761295;0.6879718 +27950;3;0.6582947;0.18418884;0.13562012 +27950;0;-0.87890625;3.2306824;8.335815 +27950;3;0.67477417;0.19519043;0.13928223 +27952;0;-0.90278625;3.244934;8.154587 +27952;1;-0.5980237;4.411311;8.741785 +27952;3;0.6863861;0.20680237;0.14294434 +27955;4;20.892334;-24.14093;-51.597595 +27955;6;-1.7505407;-0.3766306;0.11026001 +27955;7;-0.21751088;-0.9149278;0.3399945;0.0;0.9706795;-0.16624744;0.1736174;0.0;-0.10232416 +27955;0;-0.897995;3.3019562;8.030594 +27956;12;0.13974583;0.18728414;0.68760103;0.6874596 +27956;3;0.6949463;0.21780396;0.145401 +27959;1;-0.6044462;4.439689;8.726965 +27959;0;-0.92666626;3.3209534;7.901825 +27959;3;0.69921875;0.22451782;0.15089417 +27959;0;-0.91711426;3.368454;7.773056 +27960;3;0.70166016;0.233078;0.15638733 +27960;5;999.59644 +27960;12;0.14054887;0.18870734;0.6876007;0.6869068 +27962;1;-0.6113766;4.468657;8.711684 +27962;0;-0.9457855;3.3969727;7.6299744 +27962;3;0.6998291;0.24101257;0.1612854 +27963;17;1;38dead6d7725;11857;1661;-72; +27964;17;1;38dead6d60ff;7697;1928;-64; +27965;17;1;1c1bb5efa29a;7768;1117;-68; +27965;17;1;1c1bb5ecd182;206;745;-53; +27966;4;20.292664;-25.190735;-50.09613 +27966;6;-1.7087806;-0.41604125;0.123327486 +27966;7;-0.18574522;-0.90600204;0.38034058;0.0;0.97613406;-0.12581353;0.1770122;0.0;-0.112521425 +27966;0;-0.93621826;3.4112244;7.5012054 +27966;3;0.6973877;0.2489624;0.16555786 +27968;12;0.14135043;0.19017926;0.6876128;0.68632406 +27968;2;0.24126482;1.1618547;0.84909725; +27968;1;-0.6188043;4.4979057;8.696093 +27968;0;-0.92666626;3.4682465;7.3867493 +27968;3;0.69065857;0.25689697;0.17227173 +27968;12;0.14213915;0.1916882;0.6876436;0.68571025 +27968;0;-0.94099426;3.515747;7.348587 +27968;3;0.68211365;0.2648468;0.1796112 +27972;1;-0.6264976;4.5265136;8.680685 +27972;0;-0.91711426;3.6297607;7.186432 +27972;3;0.669281;0.27278137;0.18571472 +27974;4;18.492126;-24.591064;-50.39673 +27974;6;-1.4496895;-0.46446478;0.12693137 +27974;7;0.06354878;-0.8875129;0.4563796;0.0;0.9915402;0.10801245;0.071982354;0.0;-0.11317995 +27974;0;-0.845459;3.6345215;7.1959686 +27974;3;0.65278625;0.27522278;0.18937683 +27974;12;0.14289272;0.19318457;0.6876899;0.6850869 +27977;1;-0.6343598;4.5543375;8.665547 +27977;0;-0.859787;3.6107635;7.1530457 +27977;3;0.63446045;0.2801056;0.1960907 +27978;0;-0.90756226;3.615509;7.0338135 +27978;12;0.1435894;0.19466855;0.6877813;0.68442917 +27979;3;0.6106415;0.28622437;0.20281982 +27980;0;-0.9457855;3.7342834;6.9193573 +27981;1;-0.6424393;4.580727;8.651031 +27981;3;0.5819397;0.28683472;0.20587158 +27983;4;18.492126;-24.591064;-50.39673 +27983;6;-1.3122646;-0.49103197;0.13584507 +27983;7;0.19156927;-0.8525398;0.48628917;0.0;0.9741861;0.22545415;0.01148393;0.0;-0.11942642 +27984;0;-0.93144226;3.8578186;6.8191833 +27985;3;0.5526123;0.2801056;0.2107544 +27985;12;0.14422418;0.19611672;0.6879072;0.68375534 +27986;0;-0.87890625;3.952835;6.7858124 +27986;1;-0.65025526;4.60522;8.637432 +27986;2;0.1982283;0.91826105;1.5741453; +27987;3;0.51901245;0.27217102;0.21504211 +27987;0;-0.8120117;4.0145874;6.804901 +27987;12;0.1447876;0.19747643;0.6880709;0.6830799 +27988;3;0.4829712;0.2654419;0.21687317 +27990;1;-0.6571136;4.627239;8.625135 +27990;0;-0.8072357;4.0336;6.7858124 +27990;3;0.44631958;0.25750732;0.22053528 +27992;4;19.543457;-24.890137;-49.197388 +27992;6;-1.2464275;-0.53322315;0.118402906 +27992;7;0.25956523;-0.8162648;0.51607907;0.0;0.9603528;0.27446494;-0.0489036;0.0;-0.10172733 +27992;0;-0.7594757;4.100113;6.7667236 +27992;3;0.4059906;0.24835205;0.22419739 +27993;12;0.14528225;0.1987062;0.6882665;0.68242085 +27995;1;-0.66301435;4.646173;8.614499 +27995;0;-0.7785797;4.176132;6.7762756 +27995;3;0.36384583;0.24223328;0.22602844 +27997;0;-0.5922699;4.0145874;6.6093445 +27997;3;0.31803894;0.23002625;0.22236633 +27997;12;0.14568664;0.19977616;0.6885074;0.6817789 +27998;5;999.59644 +28000;1;-0.66782707;4.661546;8.605818 +28000;0;-0.5540619;4.1048584;6.742874 +28001;3;0.27160645;0.20558167;0.19732666 +28002;4;19.543457;-24.890137;-49.197388 +28002;6;-1.2587079;-0.54534966;0.081985794 +28002;7;0.2655877;-0.8136472;0.51714724;0.0;0.9615409;0.26250845;-0.080797404;0.0;-0.070014924 +28002;0;-0.5158386;4.266403;6.890732 +28002;3;0.22395325;0.18725586;0.18266296 +28003;12;0.14598882;0.20066921;0.68878746;0.68116885 +28004;0;-0.63526917;4.4231873;6.9145813 +28004;1;-0.67170304;4.673131;8.59923 +28005;2;-0.04403025;0.5372572;1.8052616; +28005;3;0.17448425;0.17565918;0.1783905 +28009;0;-0.6925812;4.603714;6.9145813 +28009;12;0.14619462;0.20137285;0.68903774;0.6806637 +28009;3;0.12561035;0.17016602;0.18266296 +28013;0;-0.73080444;4.594223;6.9050446 +28013;1;-0.6750105;4.680939;8.594724 +28013;3;0.078567505;0.1646576;0.19242859 +28013;4;18.492126;-24.591064;-49.197388 +28013;6;-1.0509403;-0.5845199;0.10544378 +28013;7;0.44359255;-0.7238011;0.52852416;0.0;0.8919201;0.4142825;-0.18124244;0.0;-0.08777484 +28014;0;-0.7929077;4.52771;6.9479523 +28014;12;0.14631204;0.20185673;0.689175;0.68035614 +28014;1;-0.6776115;4.684774;8.592429 +28014;3;0.03215027;0.15731812;0.20465088 +28014;0;-0.87890625;4.53244;6.967041 +28014;3;-0.017318726;0.14511108;0.21992493 +28016;0;-0.9696655;4.494446;7.1053467 +28016;12;0.14625001;0.20218828;0.6895168;0.67992467 +28016;3;-0.06619263;0.1347351;0.23458862 +28018;1;-0.67891306;4.684509;8.592471 +28018;0;-1.0078735;4.503952;7.2055054 +28018;3;-0.11567688;0.12556458;0.24925232 +28020;4;18.492126;-24.591064;-49.197388 +28020;6;-1.0840766;-0.5543052;0.13897382 +28021;7;0.39877293;-0.7515266;0.525536;0.0;0.9094542;0.39769432;-0.1213768;0.0;-0.11778476 +28021;0;-1.0365448;4.5514526;7.339035 +28021;12;0.1460686;0.20231175;0.68994504;0.6794923 +28021;3;-0.16331482;0.11395264;0.2596283 +28023;0;-1.0317688;4.5514526;7.4821167 +28023;1;-0.67880386;4.6801896;8.594833 +28023;2;0.16081887;0.13963938;1.4797764; +28024;3;-0.21096802;0.104782104;0.27368164 +28026;0;-1.0652008;4.4849396;7.5822906 +28026;12;0.14576703;0.20222376;0.69045925;0.6790609 +28026;3;-0.2574005;0.09989929;0.28527832 +28028;1;-0.67746854;4.6717362;8.599537 +28029;0;-1.1129761;4.4421844;7.7062836 +28029;3;-0.30015564;0.09379578;0.2926178 +28035;4;19.392395;-26.091003;-48.59619 +28036;6;-1.3658587;-0.5184589;0.14343272 +28036;7;0.13206519;-0.85040766;0.50927955;0.0;0.9834348;0.1767622;0.04013986;0.0;-0.12415662 +28036;12;0.14533864;0.20193064;0.6910585;0.6786302 +28036;1;-0.6752005;4.6595435;8.606327 +28036;0;-1.0699768;4.4089203;7.8302765 +28036;3;-0.34475708;0.0834198;0.29689026 +28036;0;-1.0843201;4.4516907;8.001968 +28036;3;-0.3838501;0.07424927;0.2987213 +28036;12;0.14479502;0.2014576;0.6917186;0.6782143 +28036;0;-1.0652008;4.413666;8.106903 +28037;3;-0.4180603;0.0675354;0.29994202 +28037;5;999.58594 +28037;0;-1.0460968;4.342407;8.278595 +28038;1;-0.6720585;4.6439047;8.615022 +28038;3;-0.4504242;0.05958557;0.30056763 +28040;4;19.392395;-26.091003;-48.59619 +28040;6;-1.5529922;-0.47983107;0.12569547 +28040;7;-0.04020018;-0.8869323;0.4601467;0.0;0.9929838;0.015792683;0.117191255;0.0;-0.111207664 +28040;0;-1.0795288;4.2711487;8.378754 +28041;3;-0.48036194;0.052261353;0.29811096 +28041;12;0.14414535;0.20081133;0.6924198;0.6778287 +28042;0;-1.0938568;4.233139;8.521835 +28042;1;-0.6683473;4.625314;8.625305 +28043;3;-0.5041809;0.041870117;0.29689026 +28043;2;0.35724545;0.24900484;0.5677748; +28045;0;-1.0604248;4.1523743;8.617218 +28045;12;0.14340632;0.20002408;0.69314784;0.6774741 +28045;3;-0.5237427;0.032104492;0.2926178 +28047;0;-1.0365448;4.123871;8.750748 +28049;1;-0.6639135;4.604445;8.636806 +28049;3;-0.53900146;0.020492554;0.28527832 +28049;4;19.84253;-23.54126;-48.89679 +28049;6;-1.5529293;-0.4377113;0.11790276 +28049;7;-0.032109395;-0.9055795;0.4229593;0.0;0.9937897;0.016181793;0.1100907;0.0;-0.10654014 +28050;0;-1.0699768;4.0478516;8.84137 +28050;3;-0.55366516;0.006439209;0.28102112 +28051;12;0.14273119;0.19903097;0.6934773;0.67757195 +28052;0;-1.0413208;3.9908295;8.946289 +28052;3;-0.5652771;-0.0039367676;0.27368164 +28054;0;-1.0222168;3.8910675;9.070297 +28055;12;0.14190775;0.19802529;0.6942051;0.6772942 +28055;1;-0.65879077;4.5819507;8.649152 +28056;3;-0.57321167;-0.01675415;0.26879883 +28058;17;1;38dead6d7725;14114;1847;-77; +28059;17;1;38dead6d60ff;7715;1496;-72; +28059;17;1;1c1bb5efa29a;5516;1413;-67; +28060;17;1;1c1bb5ecd182;683;895;-50; +28060;1;-0.65291125;4.5581727;8.662152 +28060;0;-1.0126648;3.8150635;9.156143 +28060;3;-0.5787201;-0.027755737;0.2620697 +28061;4;19.392395;-25.64087;-49.046326 +28061;6;-1.8659704;-0.39263782;0.11015181 +28061;7;-0.32938606;-0.8839456;0.3318811;0.0;0.93871695;-0.26876923;0.21580891;0.0;-0.1015639 +28061;0;-1.0126648;3.7342834;9.237228 +28061;3;-0.5780945;-0.03692627;0.25657654 +28061;12;0.14107236;0.19693612;0.6949171;0.6770562 +28061;0;-1.0078735;3.6535187;9.337372 +28062;1;-0.6463508;4.5335603;8.6755495 +28062;2;0.33626574;0.6143718;-0.32654953; +28062;3;-0.5780945;-0.04547119;0.25413513 +28064;0;-0.98399353;3.6107635;9.423233 +28064;12;0.14024073;0.19578362;0.6956112;0.6768504 +28066;3;-0.57077026;-0.05340576;0.25047302 +28067;1;-0.6393315;4.5091796;8.6887665 +28068;0;-1.0126648;3.5585022;9.494766 +28068;3;-0.56344604;-0.063797;0.24803162 +28073;4;19.692993;-25.340271;-48.59619 +28073;6;-1.9732004;-0.3567281;0.10625338 +28073;7;-0.42349967;-0.86219525;0.27797005;0.0;0.90042883;-0.36697617;0.23357269;0.0;-0.09937689 +28074;0;-1.0126648;3.5014954;9.513855 +28074;3;-0.5506134;-0.071121216;0.24435425 +28074;12;0.13944417;0.19462152;0.6962766;0.67666584 +28074;0;-0.9601135;3.434967;9.561539 +28074;1;-0.6316107;4.4850416;8.701815 +28074;3;-0.5359497;-0.08029175;0.24191284 +28074;12;0.1386906;0.19343911;0.6969267;0.6764905 +28076;0;-0.94099426;3.3827057;9.628311 +28076;3;-0.5164032;-0.091293335;0.23886108 +28076;5;999.58594 +28076;0;-0.90278625;3.335205;9.690308 +28076;1;-0.62324274;4.4621344;8.714186 +28077;3;-0.49746704;-0.103500366;0.23764038 +28078;4;17.892456;-24.890137;-48.89679 +28078;6;-2.0690432;-0.3301527;0.092895694 +28078;7;-0.50224197;-0.83098066;0.23921572;0.0;0.8602631;-0.45207703;0.23574105;0.0;-0.08775233 +28078;0;-0.86935425;3.3542175;9.70462 +28078;3;-0.47486877;-0.115112305;0.23396301 +28079;12;0.13801838;0.19228175;0.6975427;0.676323 +28080;0;-0.8215637;3.2544403;9.728455 +28081;1;-0.6139204;4.4407926;8.725741 +28081;2;0.27464336;1.0222306;-0.8763561; +28081;3;-0.4522705;-0.12854004;0.23396301 +28083;0;-0.7881317;3.2877045;9.752304 +28083;12;0.13744815;0.19114894;0.69812506;0.6761594 +28084;3;-0.42538452;-0.14076233;0.2315216 +28086;0;-0.7499237;3.2544403;9.814301 +28086;3;-0.3960724;-0.15237427;0.22970581 +28086;1;-0.60352856;4.4213514;8.736333 +28088;4;18.34259;-24.7406;-48.29712 +28088;6;-2.0682855;-0.31932282;0.07626313 +28088;7;-0.49685177;-0.8343596;0.2387101;0.0;0.8648154;-0.45309615;0.21632922;0.0;-0.072337724 +28088;0;-0.7021332;3.2401886;9.852463 +28089;3;-0.36491394;-0.16215515;0.2266388 +28089;12;0.13699704;0.19005087;0.69867194;0.6759955 +28090;0;-0.68304443;3.2211914;9.823853 +28090;1;-0.59221244;4.404266;8.745732 +28090;3;-0.33070374;-0.17008972;0.22541809 +28092;0;-0.64482117;3.2496948;9.833389 +28092;12;0.13667838;0.18901378;0.6991771;0.6758286 +28093;3;-0.29344177;-0.17497253;0.22358704 +28095;0;-0.5827179;3.2639465;9.876312 +28095;1;-0.5802558;4.3900523;8.753677 +28095;3;-0.25679016;-0.17741394;0.22236633 +28097;4;19.242859;-25.790405;-49.647522 +28097;6;-2.0571082;-0.31866512;0.058933247 +28097;7;-0.48287076;-0.83955413;0.24896766;0.0;0.8739036;-0.44383857;0.19824247;0.0;-0.05593383 +28098;0;-0.5301666;3.259201;9.838165 +28098;12;0.13649957;0.18806545;0.6996401;0.67565006 +28098;3;-0.21524048;-0.17741394;0.22114563 +28102;0;-0.47283936;3.2734528;9.833389 +28102;1;-0.56803113;4.379032;8.759996 +28102;3;-0.17248535;-0.17436218;0.21870422 +28102;2;0.02693373;1.1371002;-1.0785189; +28102;0;-0.4298401;3.3161926;9.790451 +28102;3;-0.13095093;-0.16520691;0.21687317 +28103;12;0.136457;0.18723677;0.7000625;0.6754512 +28104;0;-0.41552734;3.3874664;9.790451 +28105;1;-0.5561284;4.371644;8.764448 +28105;3;-0.085128784;-0.15481567;0.21504211 +28109;4;19.392395;-25.340271;-49.046326 +28109;6;-1.9882706;-0.33282623;0.042416647 +28109;7;-0.41775244;-0.86395174;0.28119442;0.0;0.90767646;-0.3832028;0.1711107;0.0;-0.040076915 +28109;0;-0.36297607;3.434967;9.761841 +28109;3;-0.044204712;-0.13648987;0.2131958 +28109;12;0.13654408;0.1865671;0.700442;0.67522556 +28111;1;-0.5452318;4.368043;8.766929 +28111;0;-0.3295288;3.5014954;9.714157 +28111;3;-8.392334E-4;-0.118774414;0.2119751 +28113;0;-0.3390808;3.5109863;9.675995 +28114;12;0.13673697;0.18608761;0.70078355;0.6749644 +28114;3;0.038864136;-0.09861755;0.20892334 +28114;5;999.58594 +28115;0;-0.3534088;3.591751;9.575851 +28115;1;-0.53598154;4.3680725;8.767484 +28115;3;0.074905396;-0.07785034;0.20709229 +28117;4;19.093323;-26.991272;-49.046326 +28117;6;-1.9961563;-0.3586208;0.036889512 +28117;7;-0.4241591;-0.852941;0.3042706;0.0;0.90492886;-0.38639674;0.17832887;0.0;-0.034534834 +28117;0;-0.32476807;3.6250305;9.4470825 +28117;3;0.10421753;-0.055862427;0.20404053 +28118;12;0.13700794;0.18581758;0.70109195;0.6746635 +28120;1;-0.5285616;4.371266;8.766343 +28120;0;-0.30085754;3.7010345;9.332611 +28120;2;-0.22121662;0.87982607;-0.8814316; +28121;3;0.13110352;-0.035079956;0.20037842 +28121;0;-0.3199768;3.753296;9.213379 +28122;12;0.13733011;0.18574376;0.7013729;0.6743262 +28122;3;0.15615845;-0.014312744;0.19915771 +28125;0;-0.3295288;3.796051;9.056 +28125;1;-0.5230607;4.376941;8.763841 +28125;3;0.1738739;0.0015716553;0.1954956 +28126;4;17.74292;-26.091003;-50.9964 +28126;6;-1.8250046;-0.39669088;0.036371853 +28126;7;-0.26491117;-0.89270294;0.3645594;0.0;0.9636893;-0.23195048;0.13229452;0.0;-0.033539984 +28126;0;-0.34864807;3.9100647;8.898605 +28127;3;0.18974304;0.013763428;0.19487 +28128;12;0.13767499;0.18584307;0.70163137;0.67395955 +28129;1;-0.51904684;4.384538;8.760282 +28129;0;-0.3343048;3.9955902;8.774612 +28129;3;0.19952393;0.026611328;0.19242859 +28131;0;-0.34864807;4.0668488;8.6458435 +28132;12;0.13803716;0.18607372;0.7018731;0.6735699 +28132;3;0.2062378;0.03515625;0.19059753 +28134;0;-0.3438568;4.100113;8.497986 +28134;3;0.21052551;0.03942871;0.18632507 +28134;1;-0.51607865;4.39334;8.756045 +28136;4;17.892456;-24.591064;-50.846863 +28137;6;-1.556553;-0.449214;0.040441267 +28137;7;-0.0033242109;-0.9006973;0.43443444;0.0;0.999331;0.012829753;0.034246158;0.0;-0.03641911 +28137;0;-0.3438568;4.180893;8.397842 +28137;3;0.2086792;0.041870117;0.18205261 +28137;12;0.13840434;0.18639114;0.70210624;0.6731638 +28138;1;-0.5137187;4.4026227;8.75152 +28138;0;-0.38208008;4.256897;8.2642975 +28139;2;-0.2197876;0.4131651;0.020789146; +28139;3;0.20135498;0.041259766;0.17715454 +28140;0;-0.39640808;4.3043976;8.135513 +28141;12;0.13876921;0.18674973;0.70232296;0.67276305 +28142;3;0.19647217;0.03881836;0.17105103 +28143;1;-0.5115944;4.4116845;8.747081 +28143;0;-0.39163208;4.366165;8.073517 +28144;3;0.18852234;0.0357666;0.16555786 +28146;4;18.193054;-24.890137;-49.197388 +28146;6;-1.4526725;-0.49526158;0.048470244 +28146;7;0.09484438;-0.8737132;0.47710556;0.0;0.99457884;0.1036891;-0.00782989;0.0;-0.042629577 +28146;0;-0.38685608;4.4279175;8.001968 +28146;3;0.1750946;0.032104492;0.15701294 +28147;12;0.13912179;0.18710154;0.7025252;0.6723812 +28148;1;-0.509454;4.420233;8.742888 +28148;0;-0.35820007;4.4991913;7.882736 +28148;3;0.16287231;0.024154663;0.14906311 +28151;12;0.13946268;0.18742803;0.7027109;0.67202556 +28151;0;-0.3438568;4.556198;7.8207397 +28151;3;0.15005493;0.017440796;0.14050293 +28151;5;999.58594 +28153;0;-0.37728882;4.5847015;7.7396545 +28153;1;-0.5070975;4.4278955;8.739148 +28153;3;0.13661194;0.007659912;0.13317871 +28159;1;-0.50427806;4.43452;8.735951 +28159;2;-0.18836361;-0.050252438;0.8499632; +28159;12;0.13978389;0.18770374;0.70287526;0.67171 +28159;4;18.34259;-25.041199;-50.247192 +28159;6;-1.2969427;-0.5342665;0.04870894 +28159;7;0.24625333;-0.82857126;0.50282097;0.0;0.96829915;0.2327551;-0.09067384;0.0;-0.041904405 +28159;0;-0.3343048;4.6322327;7.6728973 +28159;3;0.12194824;-0.003326416;0.12339783 +28159;0;-0.3390808;4.6417236;7.6681366 +28159;3;0.10543823;-0.0149383545;0.11302185 +28160;0;-0.3390808;4.703491;7.5775146 +28160;12;0.14009063;0.18791352;0.70301783;0.6714381 +28161;17;1;38dead6d7725;10703;0;-73; +28162;17;1;38dead6d60ff;7552;5302;-68; +28162;17;1;1c1bb5efa29a;5281;747;-67; +28163;17;1;1c1bb5ecd182;1092;761;-51; +28163;3;0.08895874;-0.025924683;0.10507202 +28163;0;-0.3295288;4.6892242;7.563202 +28163;1;-0.5009229;4.4398828;8.73342 +28163;3;0.07307434;-0.035705566;0.09591675 +28165;4;16.392517;-25.041199;-51.446533 +28165;6;-1.160314;-0.5545748;0.043542475 +28165;7;0.37765613;-0.77950317;0.4997505;0.0;0.92520607;0.33924353;-0.1700215;0.0;-0.03700482 +28166;0;-0.30085754;4.727234;7.515518 +28166;3;0.05657959;-0.046691895;0.087371826 +28166;12;0.14038607;0.18803744;0.7031128;0.67124224 +28167;1;-0.49703118;4.4439354;8.731582 +28167;0;-0.3104248;4.750992;7.5012054 +28167;3;0.039474487;-0.058914185;0.079422 +28170;0;-0.3295288;4.760498;7.5345917 +28170;12;0.14065225;0.18808697;0.70320946;0.6710713 +28170;3;0.022979736;-0.066848755;0.07270813 +28171;0;-0.2960968;4.8079987;7.4964294 +28172;1;-0.4925778;4.4465857;8.730484 +28172;3;0.007095337;-0.07601929;0.06536865 +28174;4;17.74292;-25.64087;-50.546265 +28174;6;-1.204151;-0.5699316;0.03947786 +28174;7;0.3383261;-0.7859787;0.5174679;0.0;0.9404421;0.30182266;-0.15643463;0.0;-0.03322927 +28174;0;-0.2722168;4.803253;7.477356 +28175;12;0.14089838;0.18805195;0.7032886;0.6709466 +28175;3;-0.0075683594;-0.08456421;0.05987549 +28176;0;-0.25309753;4.8079987;7.4964294 +28178;1;-0.48761424;4.4479322;8.730077 +28178;2;-0.23412001;-0.29384375;1.1994057; +28178;3;-0.025268555;-0.09251404;0.054382324 +28179;0;-0.25787354;4.793747;7.510742 +28179;12;0.14111763;0.18793865;0.70335484;0.67086285 +28179;3;-0.038711548;-0.09739685;0.0488739 +28184;0;-0.22921753;4.7985077;7.5012054 +28184;1;-0.4822484;4.4478984;8.7303915 +28184;3;-0.052749634;-0.10166931;0.04399109 +28184;4;18.043518;-25.64087;-50.247192 +28184;6;-1.2354956;-0.5688873;0.03054792 +28184;7;0.31336248;-0.7955832;0.5185088;0.0;0.9492849;0.27722764;-0.14833431;0.0;-0.02573265 +28185;0;-0.19577026;4.793747;7.5012054 +28186;3;-0.06375122;-0.10411072;0.039108276 +28186;12;0.1413075;0.18775003;0.70341235;0.67081535 +28186;1;-0.4767108;4.446714;8.731299 +28186;0;-0.21009827;4.760498;7.5345917 +28186;3;-0.07597351;-0.106552124;0.034225464 +28188;0;-0.20054626;4.7985077;7.5441284 +28189;12;0.1414622;0.18750603;0.7034639;0.67079693 +28189;3;-0.08818054;-0.10839844;0.032989502 +28189;5;999.58594 +28191;0;-0.16711426;4.793747;7.563202 +28191;1;-0.47112742;4.444514;8.732722 +28191;3;-0.10040283;-0.11021423;0.02810669 +28193;4;18.043518;-26.091003;-49.49646 +28193;6;-1.3023627;-0.5648099;0.022092108 +28193;7;0.25375623;-0.8144399;0.52181935;0.0;0.9670882;0.22403;-0.120627336;0.0;-0.018659472 +28193;0;-0.15278625;4.8079987;7.553665 +28193;3;-0.10896301;-0.11021423;0.023834229 +28194;12;0.14158529;0.187216;0.7035121;0.6708014 +28195;13;82.53699 +28196;1;-0.4655479;4.44131;8.734652 +28196;2;-0.32133222;-0.33601475;1.1802158; +28196;0;-0.147995;4.7700043;7.653824 +28196;3;-0.11872864;-0.10899353;0.019561768 +28198;0;-0.147995;4.7700043;7.7015076 +28198;12;0.14166921;0.18688112;0.7035582;0.67082876 +28199;3;-0.12788391;-0.10595703;0.014678955 +28200;0;-0.13366699;4.7414856;7.7062836 +28201;1;-0.4602297;4.4371705;8.737037 +28201;3;-0.13583374;-0.103500366;0.0116119385 +28203;4;18.043518;-24.7406;-50.546265 +28203;6;-1.2568786;-0.55150855;0.017343456 +28203;7;0.30009788;-0.8101117;0.50364697;0.0;0.953794;0.26300496;-0.1452767;0.0;-0.014771288 +28203;0;-0.12411499;4.7414856;7.7635193 +28204;3;-0.14317322;-0.09983826;0.007949829 +28204;12;0.14171496;0.1865148;0.7035922;0.6708854 +28205;0;-0.15278625;4.7652435;7.811203 +28206;1;-0.45537078;4.43235;8.7397375 +28206;3;-0.14988708;-0.09739685;0.0048980713 +28208;0;-0.143219;4.7652435;7.849365 +28208;12;0.14171743;0.18613933;0.703631;0.6709485 +28208;3;-0.1559906;-0.09251404;1.5258789E-5 +28210;0;-0.13366699;4.7557526;7.897049 +28210;1;-0.45089766;4.426829;8.742767 +28210;3;-0.16271973;-0.087005615;-0.0036468506 +28212;4;20.292664;-24.890137;-50.846863 +28212;6;-1.3151009;-0.5419862;0.016924579 +28212;7;0.24443586;-0.82883286;0.5032763;0.0;0.96955705;0.21667144;-0.114072725;0.0;-0.014498355 +28213;0;-0.16233826;4.750992;7.9590607 +28213;3;-0.16699219;-0.082733154;-0.00793457 +28213;12;0.14167996;0.18574655;0.7036672;0.67102724 +28215;0;-0.171875;4.7890015;8.001968 +28215;1;-0.44709113;4.420774;8.746026 +28215;2;-0.35256517;-0.3287158;0.901701; +28216;3;-0.17370605;-0.0796814;-0.01159668 +28217;0;-0.17666626;4.7319946;8.054443 +28217;12;0.14159992;0.18535444;0.7036987;0.6711196 +28218;3;-0.17860413;-0.07785034;-0.01586914 +28219;0;-0.18621826;4.750992;8.135513 +28220;1;-0.44372988;4.4141283;8.749554 +28220;3;-0.185318;-0.07357788;-0.01953125 +28222;4;18.792725;-24.7406;-49.79706 +28222;6;-1.3505185;-0.52844405;0.022885555 +28222;7;0.20718466;-0.8427254;0.49687862;0.0;0.97810215;0.18869562;-0.087806486;0.0;-0.01976207 +28222;0;-0.23876953;4.717743;8.173676 +28222;3;-0.19142151;-0.071746826;-0.02381897 +28223;12;0.1414826;0.1849529;0.70372295;0.67122954 +28224;0;-0.22921753;4.7224884;8.245209 +28224;1;-0.44086677;4.4068627;8.75336 +28225;3;-0.19998169;-0.06929016;-0.02809143 +28227;0;-0.2722168;4.717743;8.297668 +28227;12;0.1413265;0.18454202;0.7037439;0.6713536 +28228;3;-0.20791626;-0.06867981;-0.03112793 +28228;5;999.5869 +28229;0;-0.2722168;4.7082367;8.364441 +28230;1;-0.43837732;4.3988476;8.757516 +28230;3;-0.21647644;-0.066848755;-0.03907776 +28232;4;18.043518;-26.390076;-49.49646 +28232;6;-1.4770638;-0.5124573;0.032533046 +28232;7;0.07766707;-0.8677165;0.49095416;0.0;0.9965763;0.08157234;-0.013482921;0.0;-0.028348925 +28232;0;-0.24354553;4.703491;8.416901 +28232;3;-0.22502136;-0.066848755;-0.044570923 +28232;12;0.14113227;0.1841106;0.70376056;0.6714955 +28234;0;-0.25787354;4.727234;8.474136 +28234;1;-0.4362004;4.3900437;8.76204 +28235;2;-0.25371093;-0.32332087;0.48446465; +28235;3;-0.23356628;-0.066848755;-0.049453735 +28236;0;-0.24832153;4.712982;8.555222 +28237;3;-0.2390747;-0.06806946;-0.05496216 +28237;12;0.14090039;0.18365623;0.7037659;0.6716629 +28239;0;-0.2960968;4.712982;8.574295 +28240;1;-0.4342416;4.3804975;8.766913 +28240;3;-0.24822998;-0.06745911;-0.061065674 +28241;4;18.792725;-26.390076;-49.79706 +28242;6;-1.5038495;-0.50233376;0.03451936 +28242;7;0.05027735;-0.87449795;0.48241636;0.0;0.9982771;0.058632456;0.00224543;0.0;-0.030248877 +28242;0;-0.3295288;4.684494;8.6458435 +28243;3;-0.2543335;-0.066848755;-0.0690155 +28243;12;0.14063461;0.18317778;0.70376116;0.6718543 +28245;0;-0.35820007;4.684494;8.693527 +28245;1;-0.43265846;4.370211;8.772125 +28246;3;-0.25984192;-0.0650177;-0.07878113 +28246;12;0.14033398;0.18267877;0.70374185;0.67207325 +28246;0;-0.38208008;4.6987305;8.741211 +28247;3;-0.26228333;-0.06562805;-0.09100342 +28248;0;-0.35820007;4.660721;8.741211 +28249;1;-0.4315966;4.359433;8.777538 +28249;3;-0.26228333;-0.066848755;-0.101379395 +28256;12;0.14000379;0.18217032;0.70369565;0.67232835 +28256;2;-0.141691;-0.32647514;0.073682785; +28257;1;-0.43092725;4.348502;8.782992 +28259;12;0.13966233;0.1816641;0.7036143;0.67262137 +28259;4;17.442322;-25.340271;-49.49646 +28260;6;-1.4914839;-0.4894971;0.0409554 +28260;7;0.059972215;-0.8797951;0.4715549;0.0;0.99754584;0.069925316;0.003594309;0.0;-0.036135882 +28260;0;-0.37252808;4.6559753;8.822296 +28260;1;-0.43071032;4.337703;8.788341 +28260;3;-0.26167297;-0.066848755;-0.11177063 +28260;0;-0.38685608;4.6559753;8.846146 +28260;3;-0.25923157;-0.06745911;-0.12277222 +28260;0;-0.39640808;4.65123;8.917694 +28260;3;-0.2537384;-0.0662384;-0.1331482 +28260;0;-0.39163208;4.65123;8.955841 +28260;3;-0.24822998;-0.063186646;-0.14413452 +28261;4;17.442322;-24.7406;-50.546265 +28261;6;-1.4629588;-0.47861812;0.04370139 +28261;7;0.087522365;-0.88247603;0.4621426;0.0;0.9954074;0.09553465;-0.0060876645;0.0;-0.038778417 +28261;0;-0.41552734;4.636963;9.013062 +28261;3;-0.23968506;-0.059524536;-0.15513611 +28262;12;0.13931827;0.18117227;0.7034951;0.67295 +28265;1;-0.43118146;4.327332;8.793428 +28265;0;-0.40119934;4.6417236;9.041687 +28265;3;-0.23356628;-0.055252075;-0.1673584 +28268;0;-0.41552734;4.627472;9.070297 +28268;12;0.13897397;0.18071647;0.70333827;0.6733076 +28268;3;-0.22380066;-0.05340576;-0.17897034 +28268;5;999.5869 +28268;0;-0.44418335;4.6084595;9.08461 +28269;3;-0.21463013;-0.05279541;-0.19056702 +28270;1;-0.43245205;4.317513;8.798192 +28271;4;18.34259;-25.340271;-50.546265 +28271;6;-1.531783;-0.46897474;0.048855145 +28271;7;0.016901381;-0.89135337;0.4529939;0.0;0.9989077;0.03479237;0.0311911;0.0;-0.043563023 +28271;0;-0.45851135;4.5989685;9.156143 +28271;3;-0.20669556;-0.054641724;-0.2015686 +28272;12;0.13862844;0.18030486;0.70313895;0.67369723 +28275;1;-0.43427652;4.308259;8.802637 +28275;0;-0.48718262;4.52771;9.127518 +28275;2;-0.06018594;-0.30188465;-0.249794; +28275;3;-0.19752502;-0.059524536;-0.21011353 +28276;0;-0.48239136;4.513443;9.156143 +28276;12;0.13829416;0.17992748;0.7028936;0.6741227 +28277;3;-0.18959045;-0.063186646;-0.22050476 +28278;0;-0.5110626;4.503952;9.222916 +28278;1;-0.43618256;4.2996664;8.806743 +28278;3;-0.18409729;-0.06806946;-0.22599792 +28281;4;18.193054;-23.54126;-49.647522 +28281;6;-1.5055743;-0.45367494;0.055355653 +28281;7;0.040879037;-0.8969314;0.4402759;0.0;0.9979257;0.058582727;0.026688822;0.0;-0.04973061 +28281;0;-0.5253906;4.4991913;9.222916 +28281;3;-0.17492676;-0.07296753;-0.23394775 +28281;12;0.13799174;0.17957373;0.70260566;0.674579 +28283;0;-0.54927063;4.480179;9.213379 +28283;1;-0.43804374;4.2916064;8.810581 +28283;3;-0.16699219;-0.07601929;-0.24127197 +28285;0;-0.5540619;4.4421844;9.175232 +28285;12;0.13771819;0.17923476;0.7022874;0.6750564 +28286;3;-0.15415955;-0.08151245;-0.2467804 +28287;1;-0.43990695;4.284272;8.814057 +28288;0;-0.6257019;4.4231873;9.203827 +28288;3;-0.14376831;-0.087005615;-0.25227356 +28290;4;18.043518;-25.041199;-50.247192 +28290;6;-1.5965948;-0.44709286;0.06787836 +28290;7;-0.055050805;-0.9014077;0.4294572;0.0;0.9966087;-0.02326006;0.0789306;0.0;-0.061159454 +28290;0;-0.62094116;4.3994293;9.256302 +28290;3;-0.13154602;-0.091293335;-0.25898743 +28291;12;0.13747773;0.17891905;0.701935;0.6755555 +28292;0;-0.6161499;4.356659;9.284912 +28292;1;-0.44159138;4.277786;8.817122 +28292;2;0.067229986;-0.16680765;-0.40631104; +28292;3;-0.11933899;-0.094955444;-0.26264954 +28294;0;-0.6113739;4.3946686;9.304001 +28295;12;0.13728496;0.17862584;0.70155084;0.67607117 +28295;3;-0.10467529;-0.0967865;-0.2657013 +28297;1;-0.4431206;4.272366;8.819674 +28297;0;-0.5779419;4.404175;9.337372 +28297;3;-0.0900116;-0.094955444;-0.2687683 +28300;4;16.992188;-24.290466;-49.79706 +28300;6;-1.5967311;-0.43999207;0.061816704 +28301;7;-0.052186437;-0.9044507;0.42337376;0.0;0.99707186;-0.023461975;0.072780676;0.0;-0.055893358 +28301;0;-0.5683899;4.380417;9.342148 +28301;3;-0.074142456;-0.09188843;-0.27182007 +28301;12;0.13714337;0.1783659;0.70113933;0.6765952 +28302;0;-0.59706116;4.380417;9.370773 +28302;1;-0.4448518;4.2681627;8.821621 +28302;3;-0.05886841;-0.083343506;-0.27487183 +28305;0;-0.5779419;4.3329163;9.38031 +28309;12;0.13704099;0.17816067;0.7007062;0.6771185 +28309;3;-0.042373657;-0.07234192;-0.27792358 +28309;5;999.5869 +28309;1;-0.44734636;4.265233;8.822912 +28309;0;-0.5683899;4.342407;9.327835 +28309;3;-0.02709961;-0.06074524;-0.2791443 +28309;4;20.292664;-25.190735;-51.597595 +28309;6;-1.6071118;-0.43498653;0.06085956 +28309;7;-0.061853714;-0.90627784;0.4181324;0.0;0.99656;-0.032926437;0.076053515;0.0;-0.055157993 +28309;0;-0.5874939;4.2949066;9.246765 +28309;3;-0.012451172;-0.04852295;-0.27670288 +28309;12;0.13696137;0.17803547;0.70025456;0.6776346 +28312;1;-0.45088685;4.2636304;8.823506 +28312;0;-0.60661316;4.313904;9.199066 +28312;3;0.0016021729;-0.038757324;-0.27487183 +28312;2;0.084626436;-0.08410597;-0.49655628; +28313;0;-0.6257019;4.2711487;9.132294 +28313;12;0.1368918;0.17800309;0.6997938;0.6781329 +28313;3;0.018096924;-0.02897644;-0.26937866 +28315;0;-0.6113739;4.2616425;9.103683 +28315;1;-0.45524317;4.2632995;8.823443 +28316;3;0.033981323;-0.02104187;-0.2632599 +28318;4;17.892456;-24.591064;-50.39673 +28318;6;-1.6049054;-0.43695897;0.067056075 +28318;7;-0.062365245;-0.9055158;0.41970444;0.0;0.9962053;-0.03089827;0.08136611;0.0;-0.06071015 +28318;0;-0.65437317;4.3281555;9.089371 +28318;3;0.048034668;-0.01675415;-0.25898743 +28319;12;0.13683854;0.17805454;0.6993328;0.67860556 +28320;1;-0.46002692;4.2644067;8.8226595 +28320;0;-0.65437317;4.323395;8.994003 +28321;3;0.05718994;-0.010040283;-0.25593567 +28323;0;-0.5683899;4.366165;8.922455 +28324;12;0.13682143;0.17818274;0.69888324;0.67903835 +28324;3;0.071243286;-0.011871338;-0.2516632 +28326;0;-0.5206146;4.4231873;8.917694 +28326;3;0.08407593;-0.011871338;-0.2467804 +28326;1;-0.46484986;4.2666454;8.821324 +28329;4;19.392395;-23.991394;-50.247192 +28330;6;-1.4942484;-0.45976663;0.05831377 +28330;7;0.050557572;-0.8935318;0.44614443;0.0;0.9973545;0.068531975;0.024233572;0.0;-0.052228626 +28330;0;-0.49195862;4.4516907;8.893829 +28330;3;0.0932312;-0.010040283;-0.23760986 +28330;12;0.13684149;0.17836091;0.69843817;0.6794454 +28335;0;-0.48718262;4.494446;8.889069 +28335;3;0.10118103;-0.006378174;-0.22538757 +28335;0;-0.5445099;4.4754486;8.846146 +28335;3;0.1078949;-0.0014953613;-0.2137909 +28335;0;-0.57315063;4.437439;8.741211 +28335;2;0.056411207;-0.08751488;-0.17981339; +28335;1;-0.46935764;4.270036;8.819445 +28335;1;-0.47379872;4.2741704;8.817204 +28335;12;0.13690858;0.17857899;0.6980006;0.67982405 +28335;3;0.11216736;0.0027923584;-0.20462036 +28337;4;18.492126;-26.24054;-50.846863 +28337;6;-1.5664291;-0.4688803;0.06547507 +28337;7;-0.0252082;-0.8920663;0.45120084;0.0;0.9979769;0.003895795;0.06345846;0.0;-0.05836694 +28337;0;-0.5397186;4.4516907;8.6839905 +28337;3;0.11399841;0.0027923584;-0.19851685 +28338;12;0.13699871;0.1788309;0.69759506;0.6801559 +28339;0;-0.54927063;4.4897003;8.588608 +28340;1;-0.47814423;4.2787995;8.814724 +28340;3;0.11399841;-0.0039367676;-0.19241333 +28342;0;-0.5301666;4.4897003;8.49321 +28342;12;0.1371055;0.17910704;0.69721556;0.6804508 +28342;3;0.11399841;-0.00881958;-0.18507385 +28343;5;999.5869 +28345;0;-0.59706116;4.53244;8.41214 +28345;1;-0.48190063;4.283666;8.812156 +28345;3;0.10850525;-0.02470398;-0.17774963 +28346;4;17.442322;-23.690796;-50.247192 +28346;6;-1.3269036;-0.49315336;0.07085731 +28346;7;0.20835173;-0.8547761;0.47533926;0.0;0.9760637;0.21270806;-0.04532934;0.0;-0.06236205 +28347;0;-0.6113739;4.5752106;8.450302 +28347;3;0.09933472;-0.050354004;-0.17164612 +28348;12;0.1372374;0.17937475;0.69684935;0.6807288 +28349;0;-0.5540619;4.646469;8.507523 +28349;1;-0.484053;4.2881966;8.8098345 +28350;2;0.02775985;-0.21765852;0.21338844; +28350;3;0.08407593;-0.06929016;-0.16674805 +28351;0;-0.59706116;4.727234;8.46936 +28351;12;0.13741596;0.17957129;0.69650173;0.68099666 +28352;3;0.074295044;-0.082733154;-0.15942383 +28354;0;-0.6161499;4.793747;8.464584 +28354;1;-0.48437402;4.291874;8.808025 +28354;3;0.06390381;-0.0967865;-0.151474 +28356;4;18.492126;-24.14093;-50.846863 +28356;6;-1.2696773;-0.5141618;0.07266335 +28356;7;0.26170823;-0.83152807;0.48996928;0.0;0.96307474;0.2582417;-0.07614632;0.0;-0.06321271 +28356;0;-0.6639252;4.7794952;8.507523 +28357;3;0.05596924;-0.106552124;-0.14109802 +28359;12;0.137625;0.17966627;0.6961681;0.6812704 +28364;1;-0.4833658;4.294792;8.806658 +28364;12;0.1378513;0.17968558;0.695862;0.6815323 +28364;0;-0.68304443;4.760498;8.38829 +28364;3;0.046188354;-0.1138916;-0.13131714 +28364;0;-0.68782043;4.760498;8.35968 +28364;3;0.035812378;-0.12121582;-0.12155151 +28365;0;-0.65914917;4.8127594;8.393066 +28365;1;-0.48128918;4.2970195;8.805686 +28365;3;0.02420044;-0.12672424;-0.11299133 +28367;17;1;38dead6d7725;13490;3360;-77; +28367;17;1;38dead6d60ff;10602;1573;-72; +28368;17;1;1c1bb5efa29a;5076;2134;-65; +28368;17;1;1c1bb5ecd182;716;670;-50; +28368;4;18.043518;-25.041199;-49.49646 +28368;6;-1.3309959;-0.519321;0.078374095 +28368;7;0.19903497;-0.8433144;0.49920526;0.0;0.97763234;0.2061947;-0.041458018;0.0;-0.067971334 +28369;0;-0.6782532;4.8317566;8.450302 +28369;3;0.01260376;-0.13282776;-0.105667114 +28369;12;0.13808388;0.17964135;0.6955909;0.68177354 +28369;1;-0.47835195;4.2983246;8.805209 +28369;2;0.1307993;-0.48652315;0.35689926; +28369;0;-0.68782043;4.850769;8.512299 +28369;3;-2.2888184E-4;-0.13465881;-0.09832764 +28371;0;-0.7021332;4.9220276;8.531357 +28371;12;0.13830654;0.17953488;0.6953531;0.681999 +28371;3;-0.0118255615;-0.13343811;-0.093444824 +28373;0;-0.72125244;4.9267883;8.564758 +28373;1;-0.47499287;4.2986784;8.805218 +28373;3;-0.021606445;-0.12916565;-0.08917236 +28375;4;18.043518;-24.290466;-50.247192 +28375;6;-1.2496123;-0.52048856;0.08401343 +28375;7;0.2749798;-0.82321054;0.49669972;0.0;0.9586897;0.27388543;-0.0768169;0.0;-0.07280235 +28376;0;-0.73080444;4.9267883;8.602905 +28376;3;-0.03137207;-0.12550354;-0.08488464 +28376;12;0.1385012;0.17937753;0.6951454;0.68221265 +28378;0;-0.7403717;4.9315186;8.631531 +28378;1;-0.47176507;4.298154;8.805647 +28378;3;-0.040542603;-0.12550354;-0.081222534 +28380;0;-0.7976837;4.9362793;8.6458435 +28380;12;0.13865209;0.17919491;0.69496334;0.6824155 +28381;3;-0.04725647;-0.12609863;-0.07817078 +28381;5;999.59106 +28382;0;-0.8215637;4.960037;8.674438 +28383;1;-0.46855012;4.296906;8.806428 +28383;3;-0.057037354;-0.12854004;-0.073898315 +28385;4;18.492126;-24.591064;-50.39673 +28385;6;-1.264962;-0.5175036;0.0944292 +28385;7;0.25526625;-0.8287292;0.49804324;0.0;0.96339226;0.26166344;-0.058375217;0.0;-0.08194245 +28385;0;-0.7785797;4.960037;8.784149 +28385;3;-0.06253052;-0.13282776;-0.070236206 +28386;12;0.13877296;0.17898344;0.69480103;0.6826116 +28387;0;-0.8215637;4.960037;8.836609 +28388;1;-0.46494868;4.294933;8.807581 +28388;2;0.25018775;-0.64238644;0.14438152; +28388;3;-0.06863403;-0.13526917;-0.06718445 +28390;0;-0.831131;5.0122986;8.879532 +28390;12;0.1388766;0.17873396;0.6946565;0.682803 +28390;3;-0.073532104;-0.13894653;-0.06718445 +28392;0;-0.835907;4.960037;8.951065 +28445;1;-0.4610119;4.292463;8.808992 +28445;3;-0.07841492;-0.14076233;-0.065963745 +28445;4;19.242859;-26.24054;-50.09613 +28445;6;-1.4348048;-0.50416857;0.09311625 +28445;7;0.090482555;-0.86749256;0.48915192;0.0;0.9925648;0.11870432;0.026914567;0.0;-0.08141262 +28445;0;-0.845459;4.974289;9.003525 +28445;3;-0.08085632;-0.14076233;-0.06411743 +28445;12;0.13897042;0.17845085;0.69452435;0.6829923 +28445;1;-0.45689693;4.289576;8.810613 +28445;0;-0.859787;4.9885406;9.03215 +28445;3;-0.08207703;-0.14076233;-0.061676025 +28445;0;-0.897995;4.974289;9.075058 +28445;12;0.1390551;0.17814702;0.6943966;0.68318427 +28445;3;-0.085128784;-0.13954163;-0.058013916 +28445;0;-0.87890625;4.9790497;9.117996 +28445;1;-0.4527435;4.2864895;8.812329 +28445;3;-0.08390808;-0.13587952;-0.05618286 +28445;4;18.792725;-23.991394;-49.49646 +28445;6;-1.3378835;-0.497877;0.096095584 +28445;7;0.18516417;-0.8548747;0.48466843;0.0;0.9790852;0.2027917;-0.016361706;0.0;-0.08429955 +28445;0;-0.87890625;4.974289;9.160919 +28445;3;-0.08451843;-0.13404846;-0.05130005 +28445;12;0.13913263;0.17783386;0.69427955;0.683369 +28445;0;-0.90278625;4.9362793;9.21814 +28445;1;-0.44868246;4.283321;8.814077 +28445;2;0.36968172;-0.6896868;-0.24421978; +28445;3;-0.08207703;-0.13160706;-0.04763794 +28445;0;-0.897995;4.9457855;9.265839 +28445;12;0.13919888;0.1775234;0.69417495;0.6835425 +28445;3;-0.07841492;-0.12672424;-0.045181274 +28445;0;-0.90756226;4.94104;9.261063 +28445;1;-0.44472829;4.280286;8.815751 +28445;3;-0.074142456;-0.12365723;-0.040908813 +28445;4;18.792725;-24.290466;-49.49646 +28445;6;-1.3919984;-0.4881271;0.09768573 +28446;7;0.13198902;-0.8691327;0.4766416;0.0;0.98750126;0.15707658;0.01296797;0.0;-0.086140126 +28446;0;-0.90756226;4.960037;9.327835 +28446;3;-0.07046509;-0.118774414;-0.038467407 +28446;12;0.13926426;0.17722626;0.69408244;0.68370026 +28446;0;-0.91711426;4.9457855;9.361221 +28446;1;-0.440952;4.2775517;8.817268 +28446;3;-0.06619263;-0.1138916;-0.034805298 +28446;0;-0.888443;4.9362793;9.399368 +28446;12;0.13933086;0.17694886;0.6940002;0.68384194 +28446;3;-0.05947876;-0.10777283;-0.032348633 +28446;5;999.59106 +28446;0;-0.897995;4.94104;9.423233 +28446;1;-0.43749043;4.275204;8.81858 +28446;3;-0.053970337;-0.09983826;-0.030532837 +28446;4;19.84253;-25.491333;-51.597595 +28446;6;-1.4342586;-0.481078;0.09500894 +28446;7;0.092010684;-0.8782461;0.4692736;0.0;0.9922003;0.12066448;0.031282566;0.0;-0.08409845 +28446;0;-0.91711426;4.8887787;9.4852295 +28446;3;-0.04725647;-0.09310913;-0.026245117 +28446;12;0.13939533;0.17670186;0.69392824;0.6839657 +28446;0;-0.897995;4.8982697;9.518616 +28446;1;-0.43454373;4.2732925;8.819651 +28446;2;0.42263684;-0.6577573;-0.563612; +28446;3;-0.04359436;-0.08578491;-0.025634766 +28446;0;-0.9219055;4.869766;9.523392 +28446;12;0.13945557;0.17649455;0.6938649;0.6840711 +28446;3;-0.03564453;-0.07662964;-0.022598267 +28446;0;-0.91233826;4.8982697;9.504303 +28446;1;-0.43216905;4.271841;8.820472 +28446;3;-0.030151367;-0.06990051;-0.01953125 +28446;4;18.043518;-24.290466;-50.247192 +28446;6;-1.4195846;-0.47400588;0.09569891 +28446;7;0.106828965;-0.87959427;0.46357474;0.0;0.9906359;0.13402797;0.026018728;0.0;-0.0850179 +28446;0;-0.91233826;4.8650208;9.48999 +28446;3;-0.024047852;-0.063186646;-0.02015686 +28446;12;0.1395105;0.17632982;0.6938086;0.6841595 +28446;1;-0.43033156;4.270912;8.821011 +28446;0;-0.9219055;4.850769;9.499542 +28446;3;-0.018539429;-0.054641724;-0.018310547 +28446;0;-0.97442627;4.841263;9.504303 +28446;12;0.1395603;0.17620853;0.6937591;0.68423086 +28446;3;-0.013656616;-0.047912598;-0.015258789 +28446;0;-0.9601135;4.8222656;9.499542 +28446;1;-0.4291421;4.2704244;8.821305 +28446;3;-0.0118255615;-0.039978027;-0.0146484375 +28446;4;18.792725;-25.041199;-50.247192 +28446;6;-1.4949028;-0.46768606;0.10072741 +28446;7;0.03023343;-0.89004445;0.45487016;0.0;0.9955045;0.06767855;0.06625934;0.0;-0.08975871 +28446;0;-0.9648895;4.817505;9.518616 +28446;3;-0.0063476562;-0.034484863;-0.013427734 +28448;12;0.13960226;0.17612898;0.69371504;0.6842874 +28448;1;-0.42849335;4.270223;8.821434 +28448;0;-0.97442627;4.827011;9.509079 +28449;2;0.46882635;-0.5781851;-0.6872597; +28449;3;-0.005126953;-0.030807495;-0.014038086 +28449;0;-0.97442627;4.8127594;9.4852295 +28449;12;0.13963322;0.17608398;0.69367707;0.6843312 +28450;3;-0.0032806396;-0.027145386;-0.013427734 +28450;0;-1.0126648;4.7985077;9.48999 +28450;1;-0.42822173;4.2702246;8.821446 +28451;3;-2.4414062E-4;-0.028381348;-0.012207031 +28452;4;18.043518;-23.991394;-50.247192 +28452;6;-1.4236426;-0.46587265;0.10630645 +28452;7;0.09864729;-0.88377404;0.45739704;0.0;0.9905967;0.1309975;0.039467897;0.0;-0.09479857 +28453;0;-1.0508728;4.8127594;9.427994 +28453;3;-8.544922E-4;-0.030212402;-0.012207031 +28454;12;0.13965644;0.17606294;0.69363916;0.6843703 +28454;0;-1.0652008;4.793747;9.427994 +28455;1;-0.42799428;4.2704096;8.821368 +28455;3;-8.544922E-4;-0.035095215;-0.009155273 +28458;0;-1.0747681;4.760498;9.4375305 +28458;3;9.765625E-4;-0.043655396;-0.0073242188 +28458;12;0.1396844;0.17604798;0.6936023;0.68440574 +28458;5;999.59106 +28459;0;-1.0986481;4.7652435;9.4423065 +28460;1;-0.42729715;4.2705803;8.82132 +28461;3;0.0021972656;-0.051589966;-0.00793457 +28461;4;18.492126;-24.591064;-51.14746 +28461;6;-1.4318941;-0.46467713;0.115832925 +28461;7;0.08623436;-0.88535607;0.45684585;0.0;0.9909029;0.12377502;0.052829828;0.0;-0.103319325 +28462;0;-1.1034241;4.784256;9.423233 +28462;3;0.0028076172;-0.06137085;-0.0061035156 +28464;12;0.13973038;0.17601728;0.69356805;0.68443894 +28464;0;-1.1034241;4.784256;9.399368 +28464;1;-0.42587772;4.270893;8.821237 +28465;2;0.5907165;-0.5179844;-0.62276745; +28466;3;0.004638672;-0.071136475;-0.0018310547 +28466;0;-1.0938568;4.803253;9.399368 +28467;12;0.13981062;0.17596368;0.6935288;0.6844762 +28467;3;0.007080078;-0.08274841;1.5258789E-5 +28469;0;-1.0747681;4.8222656;9.389847 +28469;1;-0.4234475;4.271397;8.821109 +28469;3;0.0107421875;-0.09436035;0.0012359619 +28471;4;17.593384;-23.240662;-51.14746 +28471;6;-1.294835;-0.47179827;0.11396469 +28471;7;0.22097638;-0.8570497;0.46544105;0.0;0.9700046;0.24270512;-0.013616689;0.0;-0.101294726 +28471;0;-1.0269775;4.874527;9.389847 +28471;3;0.016860962;-0.10597229;0.002456665 +28472;12;0.13993943;0.17587887;0.6934824;0.6845187 +28473;0;-1.0747681;4.9030304;9.399368 +28473;1;-0.41993755;4.2723207;8.820829 +28474;3;0.022964478;-0.11756897;0.002456665 +28476;0;-1.0269775;4.907776;9.399368 +28476;12;0.14012073;0.17577209;0.6934377;0.6845543 +28476;3;0.030914307;-0.1273346;0.0036773682 +28480;1;-0.4153947;4.2738347;8.820312 +28480;0;-0.9648895;4.9457855;9.413681 +28480;3;0.04067993;-0.13589478;0.0018463135 +28480;4;16.992188;-24.290466;-50.546265 +28480;6;-1.3557998;-0.48159862;0.10214194 +28480;7;0.16608994;-0.8658514;0.47192743;0.0;0.98196125;0.18907738;0.0013117045;0.0;-0.090366535 +28481;0;-0.9601135;4.960037;9.394608 +28481;3;0.051071167;-0.1426239;-0.0012054443 +28481;12;0.14036626;0.17564869;0.6933824;0.68459165 +28483;0;-0.87890625;5.0122986;9.389847 +28483;1;-0.41010663;4.2762094;8.819407 +28483;2;0.5602534;-0.62798405;-0.57937336; +28484;3;0.06451416;-0.15055847;-0.0036468506 +28486;0;-0.8120117;5.050308;9.38031 +28486;12;0.14067747;0.17552924;0.6933093;0.6846325 +28486;3;0.08039856;-0.1572876;-0.0048675537 +28488;0;-0.7594757;5.1025696;9.375534 +28488;1;-0.40412945;4.279795;8.817945 +28488;3;0.09321594;-0.1603241;-0.0073242188 +28490;4;18.492126;-23.840332;-51.14746 +28490;6;-1.2938616;-0.49704066;0.080829635 +28490;7;0.23548293;-0.845506;0.47923627;0.0;0.9692836;0.2403253;-0.052277476;0.0;-0.0709717 +28490;0;-0.68304443;5.1785736;9.38031 +28491;3;0.10971069;-0.1627655;-0.014038086 +28491;12;0.14106421;0.17543079;0.6932111;0.6846776 +28492;0;-0.5827179;5.221344;9.413681 +28493;1;-0.39773157;4.284731;8.815838 +28493;3;0.12437439;-0.16461182;-0.018310547 +28495;0;-0.5349426;5.2736053;9.423233 +28495;12;0.14152019;0.17536697;0.6930892;0.68472326 +28495;3;0.14147949;-0.16461182;-0.024414062 +28497;5;999.59106 +28497;0;-0.44418335;5.3496094;9.38031 +28497;1;-0.39129275;4.29105;8.813052 +28498;3;0.15675354;-0.1609497;-0.029907227 +28500;4;18.492126;-24.14093;-50.09613 +28500;6;-1.3141447;-0.51781464;0.047317393 +28500;7;0.23091349;-0.8404424;0.4902403;0.0;0.97210586;0.22056517;-0.079756886;0.0;-0.04109888 +28500;0;-0.38685608;5.4256287;9.40892 +28500;3;0.17202759;-0.1572876;-0.036636353 +28501;12;0.14203663;0.17535493;0.69293624;0.6847742 +28502;0;-0.3056488;5.47789;9.418457 +28502;1;-0.38516036;4.298796;8.809547 +28503;2;0.13657036;-0.9631367;-0.5890064; +28503;3;0.18179321;-0.15177917;-0.041519165 +28504;0;-0.25309753;5.5729218;9.418457 +28505;12;0.14260001;0.17540751;0.6927525;0.68482953 +28505;3;0.19462585;-0.143219;-0.046417236 +28507;0;-0.19099426;5.644165;9.4470825 +28508;1;-0.37959337;4.3076563;8.805459 +28508;3;0.20378113;-0.13162231;-0.05067444 +28509;4;18.193054;-24.14093;-51.14746 +28509;6;-1.2506986;-0.53845286;0.02021452 +28510;7;0.30475602;-0.8148951;0.49302092;0.0;0.95227236;0.27013597;-0.14214052;0.0;-0.017353047 +28510;0;-0.12890625;5.667923;9.46138 +28510;3;0.21051025;-0.119400024;-0.05496216 +28511;12;0.14318708;0.17552137;0.6925439;0.6848888 +28512;0;-0.07156372;5.7201843;9.499542 +28512;1;-0.37499586;4.3173394;8.800913 +28512;3;0.21356201;-0.103515625;-0.05923462 +28514;0;-0.01423645;5.7724457;9.523392 +28515;3;0.21478271;-0.087646484;-0.060455322 +28515;12;0.14377053;0.1757034;0.69232213;0.6849441 +28517;0;0.023986816;5.815216;9.513855 +28517;3;0.2111206;-0.071762085;-0.06411743 +28517;1;-0.3716872;4.3273616;8.796129 +28519;4;17.74292;-23.991394;-52.197266 +28519;6;-1.2107689;-0.54863936;-0.0025212457 +28519;7;0.35352933;-0.7985316;0.48720035;0.0;0.9354209;0.30059457;-0.18609281;0.0;0.0021512127 +28520;0;0.062194824;5.8674774;9.528137 +28520;3;0.20378113;-0.056488037;-0.06718445 +28520;12;0.14431871;0.17594828;0.6920961;0.68499446 +28522;0;0.10997009;5.895981;9.54245 +28522;1;-0.36973408;4.3371468;8.791392 +28522;2;-0.35456294;-1.411613;-0.7002144; +28522;3;0.19340515;-0.038772583;-0.07145691 +28525;0;0.1481781;5.962494;9.552002 +28525;12;0.14480644;0.17623463;0.69187427;0.685042 +28526;3;0.18057251;-0.024108887;-0.07511902 +28526;0;0.1816101;5.9767303;9.618759 +28527;1;-0.36922726;4.3460917;8.786994 +28527;3;0.16407776;-0.010055542;-0.07817078 +28529;4;19.392395;-25.041199;-50.9964 +28529;6;-1.3094862;-0.555899;-0.018878581 +28529;7;0.26792395;-0.8205903;0.50482494;0.0;0.9633066;0.21944626;-0.15454356;0.0;0.016035013 +28529;0;0.18640137;5.986252;9.642624 +28529;3;0.14331055;0.0021514893;-0.08366394 +28530;12;0.14520477;0.17654088;0.69166005;0.6850952 +28531;0;0.19593811;5.9672394;9.671219 +28532;1;-0.37000862;4.353574;8.783257 +28532;3;0.12130737;0.013153076;-0.08795166 +28534;0;0.19593811;5.957733;9.695084 +28534;12;0.1454978;0.17683706;0.6914576;0.68516093 +28534;3;0.09750366;0.022918701;-0.093444824 +28535;5;999.5869 +28536;0;0.21028137;5.9387207;9.709381 +28536;1;-0.3719053;4.359113;8.780429 +28537;3;0.07122803;0.028411865;-0.09832764 +28538;4;18.043518;-24.290466;-50.9964 +28538;6;-1.2827727;-0.5488356;-0.02165416 +28538;7;0.29482195;-0.8179895;0.49393633;0.0;0.95537364;0.24233903;-0.16891715;0.0;0.018472426 +28539;0;0.21028137;5.9102325;9.718933 +28539;3;0.041900635;0.03453064;-0.10505676 +28540;12;0.14567584;0.17709643;0.6912661;0.6852493 +28541;0;0.23893738;5.9387207;9.666458 +28541;1;-0.37456915;4.362387;8.778689 +28541;2;-0.6145203;-1.5989418;-0.87934494; +28542;3;0.011367798;0.036972046;-0.11177063 +28543;0;0.18640137;5.872223;9.623535 +28544;12;0.14574109;0.17729457;0.69108355;0.68536836 +28545;3;-0.016738892;0.03147888;-0.117874146 +28547;0;0.1338501;5.724945;9.699844 +28547;1;-0.37769505;4.3630433;8.778229 +28547;3;-0.049102783;0.019866943;-0.12765503 +28548;4;17.74292;-25.64087;-50.247192 +28548;6;-1.3921406;-0.53314817;-0.013798324 +28548;7;0.18459104;-0.8475038;0.49765798;0.0;0.9827435;0.15304314;-0.10388866;0.0;0.011882896 +28548;0;0.1290741;5.601425;9.799988 +28548;3;-0.08453369;0.0070495605;-0.13375854 +28549;12;0.14568496;0.17739548;0.69090736;0.68553185 +28550;0;0.1434021;5.468399;9.8619995 +28550;1;-0.38030264;4.3606377;8.779312 +28551;3;-0.1211853;-0.004562378;-0.13987732 +28553;0;0.1338501;5.3591156;9.971695 +28554;12;0.14553912;0.1773488;0.69072753;0.685756 +28554;3;-0.15661621;-0.01676941;-0.14720154 +28556;0;0.09085083;5.302109;10.028931 +28556;1;-0.38218763;4.354901;8.782078 +28556;3;-0.18960571;-0.030822754;-0.15454102 +28558;4;18.34259;-23.991394;-50.247192 +28558;6;-1.4545264;-0.48631164;-0.009058627 +28558;7;0.12020843;-0.8780937;0.46314284;0.0;0.99271643;0.10255845;-0.06321364;0.0;0.008008285 +28558;0;0.09085083;5.188095;10.13385 +28559;3;-0.22015381;-0.0448761;-0.16186523 +28559;12;0.1452984;0.17714015;0.6905503;0.68603945 +28560;0;0.03352356;5.0788116;10.176773 +28560;1;-0.38329786;4.3460474;8.786414 +28561;2;-0.54623055;-1.1110344;-1.1239576; +28561;3;-0.24641418;-0.05770874;-0.17042542 +28562;0;-0.009475708;4.950531;10.26738 +28562;3;-0.26779175;-0.07359314;-0.17530823 +28566;12;0.1449721;0.17677249;0.6903677;0.68638706 +28567;0;-0.042907715;4.803253;10.372314 +28574;1;-0.38362795;4.334709;8.791998 +28575;3;-0.28674316;-0.09068298;-0.1820221 +28575;4;17.74292;-23.390198;-49.49646 +28575;6;-1.5933297;-0.4336779;0.004136731 +28575;7;-0.02426912;-0.90719604;0.42000765;0.0;0.9996984;-0.02044564;0.013603557;0.0;-0.0037537678 +28577;17;1;38dead6d7725;10598;2806;-73; +28577;17;1;38dead6d60ff;9732;830;-67; +28578;17;1;1c1bb5efa29a;6141;2961;-70; +28578;17;1;1c1bb5ecd182;-1294;1411;-57; +28578;0;-0.08590698;4.660721;10.45816 +28578;3;-0.30200195;-0.10534668;-0.18875122 +28579;0;-0.11456299;4.5894623;10.529694 +28579;1;-0.38293082;4.321465;8.798546 +28579;3;-0.31422424;-0.11878967;-0.19363403 +28579;12;0.1445858;0.17626888;0.69017494;0.6867917 +28579;0;-0.19099426;4.4611816;10.524933 +28579;3;-0.31910706;-0.13284302;-0.20095825 +28579;5;999.5869 +28579;12;0.14417359;0.17564914;0.6899681;0.68724483 +28579;0;-0.23399353;4.3186646;10.563095 +28579;1;-0.3814278;4.307016;8.805693 +28579;3;-0.31973267;-0.14872742;-0.20645142 +28579;4;17.892456;-25.491333;-50.39673 +28579;6;-1.8264109;-0.38802183;0.022148363 +28579;7;-0.26088506;-0.895583;0.36037517;0.0;0.9651524;-0.23404373;0.11706756;0.0;-0.020500164 +28579;0;-0.24354553;4.2046356;10.620316 +28579;3;-0.31851196;-0.16522217;-0.21257019 +28580;12;0.14375181;0.17494358;0.6897422;0.6877398 +28580;0;-0.26264954;4.0668488;10.625092 +28580;1;-0.3788974;4.292168;8.813049 +28581;2;-0.2766541;-0.2213254;-1.6809587; +28581;3;-0.3111725;-0.18049622;-0.217453 +28581;0;-0.24354553;3.9575806;10.696625 +28582;12;0.14336157;0.17417742;0.6894876;0.68827075 +28582;3;-0.2977295;-0.1920929;-0.22172546 +28585;0;-0.22442627;3.8340607;10.801544 +28585;1;-0.3752983;4.2776465;8.820261 +28585;3;-0.2794037;-0.19821167;-0.22906494 +28586;4;17.593384;-24.890137;-52.3468 +28586;6;-1.9104708;-0.34101412;0.02077425 +28586;7;-0.33965865;-0.88856936;0.30834487;0.0;0.9403451;-0.31399435;0.1309916;0.0;-0.01957658 +28587;0;-0.18144226;3.7580414;10.873093 +28587;3;-0.25680542;-0.195755;-0.2333374 +28587;12;0.14303128;0.1733786;0.68920153;0.6888274 +28590;0;-0.18621826;3.6582794;10.916 +28590;3;-0.22442627;-0.18721008;-0.23699951 +28590;1;-0.37140915;4.264414;8.826831 +28591;0;-0.21487427;3.5727692;10.916 +28592;12;0.14276609;0.17261878;0.6888788;0.68939584 +28592;3;-0.1871643;-0.17437744;-0.24188232 +28594;0;-0.22921753;3.4634857;10.935089 +28594;1;-0.36840516;4.2536106;8.832168 +28594;3;-0.14685059;-0.15666199;-0.24432373 +28596;4;18.34259;-23.091125;-50.546265 +28596;6;-1.9377646;-0.30667192;0.020958582 +28596;7;-0.36461386;-0.8898693;0.2742066;0.0;0.9309443;-0.34204748;0.1278513;0.0;-0.019979266 +28597;0;-0.21487427;3.3827057;10.930313 +28597;3;-0.097976685;-0.13284302;-0.24861145 +28597;12;0.14256537;0.17198502;0.68852276;0.68995124 +28599;0;-0.26264954;3.29245;10.854004 +28599;1;-0.36707273;4.246124;8.835825 +28599;2;-0.19351718;0.6276121;-2.0298233; +28599;3;-0.041778564;-0.10412598;-0.2516632 +28602;12;0.14243226;0.17154461;0.6881307;0.6904794 +28602;0;-0.26742554;3.1974335;10.825394 +28602;3;0.018692017;-0.06991577;-0.2504425 +28604;0;-0.29130554;3.1594238;10.720459 +28604;1;-0.36832944;4.243234;8.83716 +28604;3;0.08465576;-0.03387451;-0.2492218 +28608;4;17.292786;-24.591064;-52.3468 +28608;6;-2.0708828;-0.28649625;0.027166177 +28608;7;-0.48606056;-0.8417724;0.23487088;0.0;0.8735366;-0.4599569;0.15929028;0.0;-0.026055675 +28608;0;-0.30085754;3.1071625;10.658463 +28608;3;0.15675354;0.0021514893;-0.24983215 +28608;12;0.14238206;0.17138489;0.6877072;0.6909511 +28608;1;-0.3726055;4.2458925;8.835705 +28608;0;-0.3199768;3.0691528;10.567856 +28608;3;0.22761536;0.0388031;-0.24861145 +28611;0;-0.36775208;3.102417;10.415237 +28611;12;0.14243247;0.17156239;0.6872558;0.69134575 +28611;3;0.30029297;0.07545471;-0.24554443 +28612;5;999.5869 +28613;0;-0.39163208;3.0549011;10.2912445 +28613;1;-0.3800135;4.254669;8.831165 +28613;3;0.36994934;0.109054565;-0.24371338 +28615;4;19.242859;-23.240662;-51.597595 +28615;6;-1.9761811;-0.28836215;0.038036525 +28615;7;-0.404025;-0.881008;0.24614744;0.0;0.9140211;-0.37808913;0.1470167;0.0;-0.03645724 +28615;0;-0.49671936;3.0644073;10.100464 +28615;3;0.43652344;0.13043213;-0.24432373 +28616;12;0.14259894;0.17210169;0.6867726;0.6916574 +28617;0;-0.45851135;3.0929108;9.981247 +28617;1;-0.3901454;4.269407;8.823608 +28618;2;-0.0744403;1.1634417;-1.6235971; +28618;3;0.49761963;0.14509583;-0.24310303 +28620;0;-0.39163208;3.1261597;9.823853 +28620;12;0.14290039;0.17297706;0.6862569;0.6918887 +28620;3;0.55197144;0.16586304;-0.24249268 +28622;0;-0.39163208;3.1309204;9.633072 +28622;1;-0.40166354;4.2893925;8.813393 +28623;3;0.60513306;0.1847992;-0.23944092 +28625;4;17.292786;-23.54126;-50.39673 +28625;6;-1.9807955;-0.31400537;0.040632576 +28625;7;-0.4097865;-0.8722776;0.26684594;0.0;0.9113629;-0.37911826;0.16027161;0.0;-0.038635172 +28626;12;0.14335273;0.17411557;0.68570215;0.6920596 +28626;0;-0.39163208;3.1641693;9.370773 +28627;3;0.6552124;0.20251465;-0.23944092 +28628;0;-0.38208008;3.16893;9.108459 +28628;1;-0.4147385;4.3139863;8.800774 +28628;3;0.6967468;0.2177887;-0.23822021 +28629;0;-0.36297607;3.202179;8.903381 +28630;3;0.73036194;0.22633362;-0.24371338 +28632;0;-0.34864807;3.2164307;8.76506 +28632;1;-0.42910627;4.3424067;8.786097 +28632;3;0.75601196;0.23306274;-0.2467804 +28633;12;0.1439268;0.17549653;0.68511987;0.69216824 +28634;4;18.792725;-24.290466;-50.9964 +28634;6;-1.8612256;-0.3514482;0.03975607 +28634;7;-0.299247;-0.89955604;0.31819835;0.0;0.95344585;-0.26885965;0.1365861;0.0;-0.03731616 +28635;0;-0.34864807;3.2829437;8.6792145 +28635;3;0.7761688;0.23855591;-0.2480011 +28635;12;0.14460374;0.17707677;0.6845028;0.69223523 +28636;0;-0.3534088;3.3447113;8.579071 +28637;1;-0.4440927;4.3729467;8.77019 +28637;2;-0.11876646;1.1708946;-0.34137535; +28637;3;0.78900146;0.24160767;-0.25105286 +28639;0;-0.36297607;3.4064636;8.445526 +28639;12;0.14534572;0.17876537;0.68385726;0.69228375 +28640;3;0.79693604;0.24650574;-0.2504425 +28641;0;-0.3295288;3.4919891;8.288132 +28642;1;-0.45949644;4.404783;8.7534485 +28642;3;0.80059814;0.24894714;-0.2528839 +28645;4;18.193054;-23.840332;-50.09613 +28645;6;-1.7100945;-0.39847043;0.039738186 +28645;7;-0.15400381;-0.9127281;0.37843126;0.0;0.9873916;-0.12797005;0.09317467;0.0;-0.036615282 +28645;0;-0.3390808;3.548996;8.08783 +28646;3;0.80122375;0.24772644;-0.25227356 +28647;12;0.14613046;0.18052211;0.683191;0.6923205 +28647;0;-0.3390808;3.6012573;7.944748 +28647;3;0.79937744;0.24099731;-0.2528839 +28647;1;-0.47511947;4.4371657;8.736243 +28649;0;-0.30085754;3.6440125;7.858902 +28649;12;0.14693011;0.18230769;0.6825169;0.69234836 +28649;3;0.79571533;0.22940063;-0.25349426 +28651;5;999.5869 +28651;0;-0.3199768;3.639267;7.7635193 +28651;1;-0.4901676;4.469482;8.718921 +28651;3;0.78533936;0.216568;-0.25471497 +28653;4;18.193054;-23.840332;-50.09613 +28653;6;-1.573378;-0.43802288;0.041192118 +28653;7;-0.020046072;-0.90558904;0.42368236;0.0;0.99910337;-0.0023379046;0.042274404;0.0;-0.037292704 +28654;0;-0.2960968;3.663025;7.7539673 +28654;3;0.77189636;0.20129395;-0.25715637 +28654;12;0.14774878;0.18406732;0.68183523;0.6923802 +28656;0;-0.2817688;3.7390442;7.6681366 +28656;1;-0.5041481;4.5010114;8.701887 +28656;2;-0.22912592;0.91249084;0.7210703; +28656;3;0.75479126;0.1860199;-0.25837708 +28658;0;-0.23399353;3.8150635;7.606125 +28659;12;0.14858769;0.18575722;0.68114454;0.69242924 +28659;3;0.73768616;0.17074585;-0.26081848 +28661;0;-0.21487427;3.9005737;7.558426 +28661;3;0.7175293;0.15792847;-0.2638855 +28661;1;-0.5168392;4.531345;8.685385 +28663;4;19.392395;-25.64087;-52.6474 +28663;6;-1.4820762;-0.47624543;0.028420787 +28663;7;0.075591624;-0.88522696;0.458976;0.0;0.99681884;0.07874418;-0.012298429;0.0;-0.02525479 +28664;0;-0.20054626;3.9670868;7.4964294 +28664;3;0.6943054;0.14326477;-0.2687683 +28665;12;0.14943351;0.18734923;0.68044364;0.69250727 +28666;0;-0.16233826;4.0145874;7.4439697 +28666;1;-0.5284607;4.560116;8.669613 +28666;3;0.66804504;0.12799072;-0.27426147 +28668;0;-0.12890625;4.0383606;7.39151 +28668;3;0.6442261;0.11393738;-0.27792358 +28668;12;0.15026264;0.18883437;0.679741;0.69261456 +28670;0;-0.11456299;4.1286316;7.401062 +28670;1;-0.53898114;4.5868616;8.654843 +28670;3;0.6173401;0.09988403;-0.2815857 +28672;4;19.392395;-25.64087;-52.6474 +28672;6;-1.3899716;-0.5087939;0.015478027 +28672;7;0.1724028;-0.85909355;0.4819081;0.0;0.98493373;0.15706089;-0.072369285;0.0;-0.013516927 +28673;0;-0.095443726;4.1618805;7.3819733 +28673;3;0.58924866;0.085235596;-0.2852478 +28674;12;0.15106016;0.19019479;0.67903155;0.6927648 +28675;0;-0.028564453;4.1713715;7.3676605 +28675;1;-0.5484022;4.611427;8.641187 +28675;2;-0.4479816;0.5893035;1.1808205; +28675;3;0.5580902;0.07362366;-0.29014587 +28677;0;-0.038131714;4.190384;7.3867493 +28678;12;0.15181717;0.19142103;0.6783227;0.6929559 +28678;3;0.5251007;0.06201172;-0.2950287 +28680;0;0.009643555;4.2283936;7.4105835 +28680;1;-0.5569403;4.6333723;8.628893 +28680;3;0.49150085;0.051635742;-0.3011322 +28682;0;0.07652283;4.252136;7.415344 +28682;3;0.45547485;0.040634155;-0.30603027 +28683;4;19.093323;-24.290466;-50.247192 +28683;6;-1.378286;-0.52062607;-0.010319158 +28683;7;0.19635136;-0.85148257;0.48623425;0.0;0.98049283;0.16597462;-0.105292045;0.0;0.0089517925 +28683;12;0.15251227;0.1925055;0.67761743;0.69319284 +28685;0;0.07652283;4.280655;7.439209 +28685;1;-0.5646982;4.6524596;8.618112 +28685;3;0.41880798;0.03147888;-0.3109131 +28687;0;0.10997009;4.275894;7.5012054 +28687;12;0.15314187;0.19343102;0.67686033;0.6935359 +28688;3;0.38093567;0.023529053;-0.3157959 +28689;5;999.5793 +28689;0;0.1625061;4.2711487;7.5441284 +28690;1;-0.5718269;4.6683726;8.609032 +28690;3;0.342453;0.019256592;-0.32252502 +28692;4;19.093323;-24.290466;-50.247192 +28692;6;-1.4036207;-0.51506245;-0.021537408 +28692;7;0.17681974;-0.8581294;0.4820257;0.0;0.9840648;0.14480981;-0.10318233;0.0;0.018741738 +28692;0;0.1816101;4.280655;7.6156616 +28692;3;0.3070221;0.016204834;-0.32618713 +28693;12;0.15365893;0.19421402;0.6761719;0.6938742 +28694;0;0.24372864;4.266403;7.7062836 +28694;1;-0.57869387;4.6810236;8.6017 +28695;2;-0.7302043;0.42696047;1.0949936; +28695;3;0.27037048;0.016204834;-0.3304596 +28697;0;0.21984863;4.280655;7.787369 +28697;12;0.15405937;0.1948547;0.6754978;0.69426227 +28697;3;0.23554993;0.019866943;-0.3353424 +28700;1;-0.585816;4.69061;8.595994 +28700;0;0.22460938;4.266403;7.8731995 +28700;3;0.20256042;0.02659607;-0.34085083 +28702;4;19.84253;-25.190735;-49.647522 +28702;6;-1.5135772;-0.49642456;-0.028520612 +28702;7;0.070724465;-0.8778521;0.47368106;0.0;0.9971807;0.05028478;-0.055696703;0.0;0.025074521 +28702;0;0.23893738;4.2378845;8.001968 +28702;3;0.17018127;0.036361694;-0.3439026 +28703;12;0.15433179;0.19537927;0.67483675;0.6946971 +28706;1;-0.59361374;4.697154;8.591884 +28706;0;0.26760864;4.214142;8.078278 +28706;3;0.13719177;0.049194336;-0.34695435 +28707;0;0.26760864;4.185623;8.149826 +28708;12;0.15445949;0.1958101;0.67420465;0.695161 +28708;3;0.10910034;0.06384277;-0.3500061 +28709;0;0.24848938;4.176132;8.230911 +28709;1;-0.60257345;4.700916;8.589202 +28709;3;0.082839966;0.080947876;-0.3487854 +28711;4;19.84253;-25.190735;-49.647522 +28711;6;-1.5844914;-0.46934387;-0.03018061 +28711;7;-4.1056708E-5;-0.8917817;0.4524661;0.0;0.99963784;-0.012213798;-0.023981906;0.0;0.026912952 +28712;0;0.26283264;4.11911;8.350128 +28712;3;0.057785034;0.09805298;-0.34817505 +28713;12;0.15443137;0.19617629;0.67360216;0.6956479 +28713;0;0.24848938;4.1143646;8.455063 +28714;3;0.03274536;0.116989136;-0.3487854 +28714;1;-0.61289084;4.7022886;8.587721 +28716;2;-0.91111535;0.50474596;0.46713066; +28716;0;0.23893738;4.0668488;8.517059 +28717;12;0.15425447;0.19650532;0.67303765;0.69614047 +28717;3;0.0107421875;0.13653564;-0.34695435 +28719;0;0.21028137;4.085861;8.550446 +28719;3;-0.013671875;0.15242004;-0.3439026 +28719;1;-0.6247598;4.701528;8.587283 +28721;4;19.242859;-25.790405;-49.197388 +28721;6;-1.6816154;-0.44565642;-0.024588076 +28721;7;-0.10002624;-0.8967929;0.43099564;0.0;0.9947374;-0.099790506;0.023221644;0.0;0.02218427 +28721;0;0.1625061;4.024109;8.574295 +28721;3;-0.032608032;0.16403198;-0.34085083 +28721;12;0.15393148;0.19681658;0.6725099;0.696634 +28724;0;0.119506836;4.019348;8.631531 +28724;1;-0.6378997;4.6988173;8.5878 +28724;3;-0.049713135;0.17318726;-0.33718872 +28726;0;0.08129883;4.009842;8.70784 +28726;12;0.15347792;0.19710524;0.67202395;0.6971212 +28726;3;-0.066207886;0.18174744;-0.3341217 +28728;5;999.5793 +28728;0;0.057418823;3.9813385;8.78891 +28728;1;-0.6517605;4.6945705;8.589082 +28729;3;-0.082092285;0.18663025;-0.32984924 +28732;4;19.993591;-24.7406;-49.79706 +28732;6;-1.6710103;-0.42533436;-0.0065330067 +28732;7;-0.097362034;-0.9063307;0.41120002;0.0;0.9952314;-0.09113227;0.03478058;0.0;0.005950879 +28733;0;-0.028564453;3.9195862;8.860458 +28733;3;-0.098587036;0.18969727;-0.32740784 +28733;12;0.15292919;0.19736478;0.6715725;0.6976032 +28735;0;-0.07156372;3.9243164;8.879532 +28735;2;-0.81504637;0.6879411;-0.10353279; +28735;1;-0.66604495;4.688848;8.591111 +28735;3;-0.114471436;0.19396973;-0.32252502 +28737;0;-0.10978699;3.938568;8.994003 +28737;12;0.1523056;0.19758846;0.6711509;0.69808185 +28737;3;-0.12974548;0.19702148;-0.3170166 +28737;0;-0.171875;3.8815765;9.051224 +28738;1;-0.68052924;4.681741;8.593852 +28738;3;-0.14744568;0.2006836;-0.31274414 +28741;4;18.94226;-25.790405;-50.09613 +28741;6;-1.7802557;-0.405058;0.018986864 +28741;7;-0.21521182;-0.8989916;0.3814418;0.0;0.97641134;-0.19110519;0.10049582;0.0;-0.017449388 +28741;0;-0.22921753;3.8197937;9.098923 +28741;3;-0.16455078;0.20007324;-0.30664062 +28741;12;0.15161158;0.19776793;0.67076015;0.6985576 +28743;0;-0.2817688;3.8055573;9.103683 +28743;3;-0.18411255;0.19946289;-0.3035736 +28743;1;-0.6951166;4.673109;8.597382 +28745;0;-0.36297607;3.7580414;9.213379 +28746;12;0.15084861;0.19789791;0.670404;0.6990276 +28746;3;-0.20121765;0.19641113;-0.2986908 +28747;0;-0.44895935;3.729538;9.284912 +28747;1;-0.70958346;4.6628356;8.601777 +28748;3;-0.22076416;0.19151306;-0.29319763 +28750;4;19.993591;-25.340271;-49.046326 +28750;6;-1.8432055;-0.38154772;0.048316013 +28750;7;-0.2860592;-0.89386666;0.3452139;0.0;0.957163;-0.24970476;0.14658305;0.0;-0.044824135 +28750;0;-0.47763062;3.682022;9.361221 +28750;3;-0.24092102;0.18296814;-0.28709412 +28750;12;0.15002121;0.19796117;0.67007774;0.6995005 +28752;0;-0.5397186;3.6582794;9.40892 +28752;1;-0.7234674;4.6508713;8.607096 +28753;2;-0.44934154;0.8719497;-0.5899601; +28753;3;-0.26290894;0.17440796;-0.2815857 +28756;0;-0.60661316;3.6202698;9.4375305 +28757;12;0.14914422;0.19794096;0.66978294;0.6999759 +28757;3;-0.2830658;0.16403198;-0.27365112 +28757;0;-0.7021332;3.5680084;9.547226 +28757;1;-0.7364887;4.6370716;8.613435 +28757;3;-0.30506897;0.15119934;-0.2663269 +28762;12;0.14822249;0.19781844;0.669521;0.70045674 +28762;1;-0.74823576;4.621497;8.62079 +28762;4;21.49353;-25.190735;-49.197388 +28762;6;-1.891325;-0.35676628;0.073411 +28762;7;-0.33853057;-0.8893072;0.3074571;0.0;0.93844223;-0.2952288;0.17934951;0.0;-0.06872663 +28762;0;-0.7021332;3.5774994;9.561539 +28762;3;-0.32521057;0.13960266;-0.25715637 +28762;0;-0.75468445;3.5347595;9.628311 +28763;3;-0.344162;0.124938965;-0.2492218 +28764;12;0.1472703;0.19758175;0.6692968;0.7009385 +28765;0;-0.7881317;3.5014954;9.671219 +28765;3;-0.36187744;0.11027527;-0.24005127 +28766;1;-0.75851023;4.6043105;8.629085 +28767;0;-0.802475;3.4919891;9.709381 +28767;3;-0.37774658;0.093170166;-0.2321167 +28773;2;-0.06589937;1.0695529;-1.0030947; +28773;1;-0.767066;4.5857854;8.638188 +28773;12;0.14630423;0.19723043;0.6691086;0.7014193 +28773;5;999.5793 +28774;12;0.14534062;0.19676638;0.6689516;0.7018996 +28774;4;21.49353;-24.890137;-46.946716 +28774;6;-1.9525443;-0.34416407;0.08246202 +28774;7;-0.3970686;-0.873594;0.28137153;0.0;0.9145076;-0.3506964;0.20171188;0.0;-0.07753833 +28774;0;-0.8120117;3.4634857;9.723679 +28775;17;1;38dead6d7725;10807;0;-78; +28776;17;1;38dead6d60ff;9457;1428;-65; +28776;17;1;1c1bb5efa29a;4153;1267;-68; +28777;17;1;1c1bb5ecd182;-1252;804;-53; +28777;3;-0.38752747;0.07484436;-0.21989441 +28777;0;-0.86935425;3.4397278;9.776154 +28777;3;-0.39546204;0.055908203;-0.20889282 +28777;0;-0.89323425;3.4112244;9.766617 +28777;1;-0.77365816;4.566736;8.647686 +28777;3;-0.40097046;0.040634155;-0.1991272 +28777;0;-0.91233826;3.4064636;9.823853 +28778;3;-0.3991394;0.022918701;-0.18934631 +28778;4;20.742798;-24.7406;-49.046326 +28778;6;-1.971153;-0.33245358;0.09260408 +28778;7;-0.41586974;-0.87049645;0.26322675;0.0;0.9052139;-0.36840603;0.21181333;0.0;-0.08740844 +28784;12;0.14442165;0.19621111;0.66882616;0.70236397 +28784;1;-0.7783929;4.5477104;8.657283 +28784;12;0.1435658;0.19559076;0.66872406;0.70280963 +28785;0;-0.91233826;3.368454;9.838165 +28785;3;-0.39608765;0.0070495605;-0.17712402 +28785;0;-0.89323425;3.325714;9.823853 +28785;1;-0.7814291;4.5295787;8.666511 +28786;3;-0.38508606;-0.0076141357;-0.16796875 +28786;0;-0.888443;3.325714;9.852463 +28786;3;-0.36920166;-0.019836426;-0.15513611 +28786;0;-0.89323425;3.3067017;9.833389 +28786;3;-0.35087585;-0.02960205;-0.14291382 +28788;4;21.043396;-23.690796;-49.79706 +28788;6;-1.9264575;-0.3231545;0.09058825 +28788;7;-0.3737124;-0.88889426;0.26496413;0.0;0.92356944;-0.3301863;0.19492683;0.0;-0.08578182 +28788;0;-0.89323425;3.3161926;9.799988 +28788;3;-0.33010864;-0.034500122;-0.13009644 +28788;12;0.14280105;0.19494787;0.6686379;0.7032259 +28790;0;-0.87890625;3.3447113;9.828613 +28790;1;-0.7831401;4.5130916;8.6749525 +28790;2;0.059298515;1.1744986;-1.157176; +28790;3;-0.30322266;-0.04121399;-0.11604309 +28792;0;-0.855011;3.3637238;9.752304 +28792;12;0.14214318;0.19432594;0.6685695;0.7035962 +28793;3;-0.27267456;-0.0460968;-0.101379395 +28795;0;-0.87890625;3.358963;9.747543 +28795;1;-0.7837373;4.4989567;8.682238 +28795;3;-0.23847961;-0.046707153;-0.089782715 +28797;4;21.49353;-22.790527;-48.147583 +28797;6;-1.8750107;-0.33060727;0.089923784 +28797;7;-0.3261464;-0.9024146;0.2815607;0.0;0.94149554;-0.28332207;0.18252338;0.0;-0.08493941 +28797;0;-0.826355;3.4112244;9.699844 +28797;3;-0.20365906;-0.0460968;-0.07450867 +28798;12;0.14160943;0.19376117;0.66851646;0.70390993 +28799;1;-0.78357035;4.4878044;8.688023 +28801;0;-0.7929077;3.4207153;9.623535 +28801;3;-0.1663971;-0.044265747;-0.061676025 +28802;0;-0.802475;3.458725;9.556763 +28802;12;0.14121152;0.19329314;0.6684775;0.70415556 +28802;3;-0.12667847;-0.039382935;-0.050079346 +28805;0;-0.73558044;3.4729767;9.46138 +28805;1;-0.7829831;4.4799757;8.692115 +28805;3;-0.0881958;-0.034500122;-0.037246704 +28806;5;999.5793 +28807;4;21.043396;-24.290466;-49.49646 +28807;6;-1.8701468;-0.35082558;0.0775895 +28807;7;-0.3194664;-0.8973263;0.30454332;0.0;0.9447977;-0.27693707;0.17510879;0.0;-0.072790384 +28807;0;-0.6925812;3.5205078;9.356461 +28807;3;-0.050323486;-0.0289917;-0.02746582 +28808;12;0.14095299;0.19294584;0.66844934;0.7043293 +28809;0;-0.6687012;3.591751;9.270599 +28809;1;-0.78220385;4.4756427;8.694417 +28810;2;-0.05377978;1.0409608;-0.8769016; +28810;3;-0.0155181885;-0.020446777;-0.02015686 +28812;0;-0.65914917;3.6725311;9.16568 +28812;12;0.14083092;0.19273882;0.6684272;0.7044314 +28812;3;0.017471313;-0.011886597;-0.010375977 +28814;0;-0.63526917;3.7200317;9.056 +28814;1;-0.7816716;4.474551;8.695027 +28814;3;0.047409058;-0.0033416748;-0.0024261475 +28816;4;21.942139;-24.14093;-50.39673 +28816;6;-1.7164601;-0.38890365;0.07003426 +28816;7;-0.17104584;-0.915526;0.36408186;0.0;0.9831331;-0.13431022;0.12413785;0.0;-0.064751506 +28817;0;-0.6161499;3.8103027;8.908142 +28817;3;0.07244873;0.0070495605;0.0036773682 +28817;12;0.14082216;0.19267344;0.66840416;0.70447284 +28819;0;-0.5874939;3.862564;8.774612 +28819;1;-0.7815019;4.4762607;8.694162 +28819;3;0.09260559;0.014373779;0.009170532 +28821;0;-0.5683899;3.872055;8.626755 +28821;12;0.14090279;0.19273607;0.66838616;0.70445675 +28822;3;0.10848999;0.024139404;0.014678955 +28825;0;-0.55882263;3.962326;8.512299 +28826;1;-0.78177756;4.479935;8.692245 +28826;0;-0.5540619;4.0383606;8.421677 +28827;3;0.11949158;0.03147888;0.02017212 +28827;3;0.12620544;0.03514099;0.025054932 +28827;4;20.292664;-23.840332;-49.197388 +28827;6;-1.5556101;-0.44628826;0.06569529 +28827;7;-0.0131788105;-0.90195143;0.4316365;0.0;0.99815816;0.013698356;0.059100166;0.0;-0.05921818 +28828;12;0.14104076;0.19289924;0.6683724;0.70439744 +28829;0;-0.5349426;4.0763702;8.316757 +28829;1;-0.78238964;4.4848433;8.689658 +28829;3;0.12376404;0.037582397;0.029937744 +28829;2;-0.24657851;0.62443256;-0.04654789; +28831;0;-0.5062866;4.123871;8.159363 +28831;3;0.12130737;0.036972046;0.034225464 +28832;12;0.14120956;0.19312626;0.66836965;0.7043041 +28833;0;-0.5015106;4.209381;8.083054 +28833;1;-0.7829163;4.4900413;8.686926 +28833;3;0.11520386;0.036361694;0.039108276 +28836;4;19.242859;-24.591064;-50.39673 +28836;6;-1.4515195;-0.47933567;0.061965268 +28836;7;0.09040924;-0.8809972;0.46440294;0.0;0.9943878;0.10558371;0.006712064;0.0;-0.0549467 +28836;0;-0.49671936;4.2426453;8.016281 +28836;3;0.10420227;0.033309937;0.04460144 +28836;12;0.1413869;0.19336514;0.66838163;0.7041915 +28838;0;-0.48239136;4.2949066;7.892288 +28838;1;-0.78311586;4.4949565;8.684365 +28838;3;0.090774536;0.03147888;0.050094604 +28840;0;-0.49195862;4.370926;7.8350525 +28841;12;0.1415605;0.19358514;0.6684143;0.70406526 +28841;3;0.07611084;0.02659607;0.055603027 +28843;0;-0.45851135;4.4184265;7.7253723 +28843;1;-0.7828239;4.499099;8.682247 +28844;3;0.061447144;0.019866943;0.059265137 +28844;5;999.5793 +28845;4;19.993591;-23.690796;-50.247192 +28845;6;-1.2907984;-0.51877195;0.05928182 +28845;7;0.24763659;-0.8346086;0.49204123;0.0;0.96748585;0.2399934;-0.07983951;0.0;-0.051451884 +28846;0;-0.44418335;4.465927;7.649048 +28846;3;0.04434204;0.013748169;0.062316895 +28847;12;0.14171587;0.19375847;0.66847456;0.70392907 +28848;0;-0.43940735;4.503952;7.5775146 +28848;3;0.027252197;0.005218506;0.0647583 +28848;1;-0.78181386;4.5021763;8.680742 +28849;2;-0.358222;0.18915033;0.80027866; +28852;0;-0.4202881;4.52771;7.558426 +28852;3;0.010147095;-0.0027313232;0.06842041 +28852;12;0.14184898;0.19386348;0.6685562;0.70379573 +28854;1;-0.7800015;4.5039954;8.679961 +28854;0;-0.43463135;4.5514526;7.5012054 +28854;3;-0.006958008;-0.011276245;0.06904602 +28857;4;21.192932;-23.54126;-50.846863 +28857;6;-1.2135307;-0.5446344;0.057876825 +28857;7;0.32105112;-0.80130905;0.5048067;0.0;0.9457686;0.29911613;-0.12669326;0.0;-0.049475387 +28857;0;-0.40119934;4.6084595;7.4964294 +28857;3;-0.024673462;-0.018615723;0.066589355 +28857;12;0.14196181;0.19388792;0.668646;0.703681 +28858;1;-0.7774774;4.504494;8.679929 +28858;0;-0.4202881;4.603714;7.4487457 +28858;3;-0.042999268;-0.023498535;0.066589355 +28860;12;0.14204393;0.19383444;0.6687599;0.7035709 +28860;0;-0.36297607;4.6417236;7.4201202 +28860;3;-0.058883667;-0.030212402;0.0647583 +28862;0;-0.32476807;4.6559753;7.4582825 +28862;1;-0.77440673;4.503603;8.680666 +28863;3;-0.07537842;-0.03694153;0.0647583 +28869;1;-0.77081186;4.5014176;8.682119 +28869;12;0.14209014;0.19370511;0.66888267;0.7034805 +28869;2;-0.44598293;-0.10977745;1.206213; +28870;4;21.043396;-24.7406;-47.846985 +28870;6;-1.3231964;-0.5576482;0.043517124 +28870;7;0.2225262;-0.8226257;0.5232296;0.0;0.9742278;0.207949;-0.08739377;0.0;-0.036912717 +28870;0;-0.3438568;4.6987305;7.415344 +28870;3;-0.09248352;-0.044265747;0.061706543 +28870;0;-0.3295288;4.712982;7.4105835 +28870;3;-0.10835266;-0.050369263;0.058654785 +28870;0;-0.3438568;4.73674;7.4248962 +28874;12;0.14210424;0.19350363;0.66901124;0.7034108 +28875;3;-0.121795654;-0.05404663;0.05682373 +28875;0;-0.36297607;4.7557526;7.4439697 +28875;1;-0.76688164;4.497949;8.684265 +28875;3;-0.1346283;-0.060150146;0.051315308 +28875;4;21.342468;-24.290466;-50.247192 +28875;6;-1.2118659;-0.56797475;0.0487225 +28875;7;0.326327;-0.7892708;0.520156;0.0;0.9443649;0.29612038;-0.1431351;0.0;-0.041056436 +28875;0;-0.3152008;4.7414856;7.434433 +28875;3;-0.14685059;-0.06625366;0.047042847 +28877;12;0.14208263;0.1932352;0.6691398;0.70336664 +28877;1;-0.76265764;4.493383;8.687 +28878;0;-0.35820007;4.7700043;7.47258 +28878;3;-0.15907288;-0.071136475;0.041549683 +28879;0;-0.3390808;4.7747498;7.4821167 +28879;12;0.14203084;0.19291098;0.6692627;0.7033492 +28879;3;-0.1688385;-0.07847595;0.039718628 +28882;1;-0.75814533;4.487816;8.690272 +28882;0;-0.3438568;4.7794952;7.515518 +28882;3;-0.17799377;-0.083358765;0.032989502 +28882;5;999.5725 +28884;4;20.292664;-24.890137;-50.39673 +28884;6;-1.2244717;-0.5659616;0.045721024 +28884;7;0.316035;-0.793958;0.5193772;0.0;0.947963;0.28651476;-0.13883704;0.0;-0.038578458 +28884;0;-0.3295288;4.760498;7.5918274 +28884;3;-0.18777466;-0.08886719;0.027496338 +28885;12;0.14195311;0.1925304;0.6693784;0.703359 +28886;1;-0.75335395;4.4813437;8.694029 +28886;0;-0.3104248;4.7747498;7.6156616 +28887;2;-0.47125208;-0.2685566;1.1852894; +28887;3;-0.19694519;-0.09190369;0.023834229 +28888;0;-0.34864807;4.7462463;7.687195 +28889;12;0.14185426;0.19210082;0.66948205;0.7033978 +28889;3;-0.20487976;-0.09312439;0.018341064 +28891;0;-0.3534088;4.73674;7.7253723 +28891;1;-0.7485129;4.473937;8.69826 +28891;3;-0.21403503;-0.09375;0.015899658 +28893;4;21.192932;-23.54126;-50.09613 +28893;6;-1.235967;-0.5495601;0.045714635 +28893;7;0.3057212;-0.80539787;0.50780785;0.0;0.9513233;0.28022188;-0.12829572;0.0;-0.03896978 +28894;0;-0.40596008;4.7319946;7.7587433 +28894;3;-0.21832275;-0.09375;0.0116119385 +28894;12;0.14172491;0.19163021;0.6695741;0.7034647 +28896;0;-0.40119934;4.6987305;7.806427 +28896;1;-0.7438847;4.4658422;8.702815 +28896;3;-0.22503662;-0.0925293;0.0048980713 +28898;0;-0.36775208;4.684494;7.8779755 +28898;12;0.14156435;0.19113529;0.6696629;0.70354706 +28898;3;-0.22869873;-0.09008789;6.2561035E-4 +28901;0;-0.41073608;4.660721;7.9208984 +28902;1;-0.7395712;4.4571433;8.707642 +28903;3;-0.23236084;-0.08824158;-0.0036468506 +28903;4;20.892334;-24.890137;-49.647522 +28903;6;-1.34472;-0.5312658;0.051808335 +28903;7;0.19828662;-0.8402272;0.5046786;0.0;0.9791265;0.19325928;-0.06294298;0.0;-0.044647425 +28903;0;-0.38208008;4.6084595;7.997223 +28907;12;0.14137107;0.19062652;0.66973954;0.703651 +28907;3;-0.23420715;-0.083358765;-0.009155273 +28907;1;-0.7356796;4.4480042;8.712643 +28907;2;-0.40897292;-0.22919416;0.8471174; +28907;0;-0.39640808;4.6322327;8.068741 +28907;3;-0.23603821;-0.0778656;-0.01159668 +28908;13;96.53899 +28909;0;-0.41552734;4.61322;8.121216 +28909;3;-0.23725891;-0.07054138;-0.012817383 +28909;12;0.14114998;0.19011669;0.66980594;0.70377016 +28910;0;-0.39163208;4.5894623;8.1689 +28910;3;-0.23847961;-0.06442261;-0.01586914 +28912;4;20.593262;-24.591064;-49.197388 +28912;6;-1.4029398;-0.5113838;0.047905162 +28912;7;0.14377207;-0.85981137;0.48995307;0.0;0.98872936;0.14569592;-0.034453582;0.0;-0.04176059 +28913;0;-0.37252808;4.5657043;8.221359 +28913;3;-0.23970032;-0.056488037;-0.017715454 +28917;1;-0.7324132;4.4386177;8.717704 +28918;1;-0.72975403;4.428971;8.722831 +28918;12;0.14089899;0.18961793;0.6698688;0.7038951 +28918;0;-0.36775208;4.5752106;8.240448 +28918;12;0.14061649;0.18913463;0.66993034;0.70402306 +28918;3;-0.23847961;-0.050369263;-0.017715454 +28918;0;-0.37252808;4.5514526;8.283371 +28918;3;-0.23847961;-0.042434692;-0.018310547 +28920;0;-0.32476807;4.522949;8.369217 +28920;1;-0.7276882;4.4193215;8.727897 +28920;3;-0.23847961;-0.03694153;-0.018936157 +28920;5;999.5725 +28923;4;21.49353;-24.14093;-50.846863 +28923;6;-1.4033602;-0.49514905;0.038785614 +28923;7;0.14836228;-0.8675928;0.47462767;0.0;0.98834443;0.14663921;-0.040894993;0.0;-0.034118824 +28923;0;-0.35820007;4.513443;8.407364 +28923;3;-0.23908997;-0.0289917;-0.018936157 +28923;12;0.1403107;0.1886736;0.6699949;0.7041464 +28926;0;-0.3295288;4.494446;8.416901 +28926;1;-0.7261935;4.4095755;8.732949 +28927;2;-0.41703594;-0.1342125;0.44460964; +28927;3;-0.23908997;-0.020446777;-0.018310547 +28927;0;-0.3343048;4.480179;8.450302 +28927;12;0.13998087;0.18823269;0.6700627;0.7042654 +28928;3;-0.23847961;-0.014953613;-0.017715454 +28932;0;-0.3056488;4.4231873;8.450302 +28933;1;-0.7252834;4.399761;8.737973 +28933;3;-0.23908997;-0.005783081;-0.0146484375 +28933;4;19.84253;-23.240662;-50.39673 +28933;6;-1.4012296;-0.48195112;0.0361544 +28933;7;0.15213105;-0.8733839;0.46266264;0.0;0.9878412;0.14953275;-0.04254035;0.0;-0.032029156 +28933;0;-0.3056488;4.4279175;8.507523 +28933;3;-0.23908997;9.3078613E-4;-0.012207031 +28933;12;0.13962565;0.18781225;0.6701349;0.70437956 +28934;0;-0.3390808;4.404175;8.517059 +28934;1;-0.72491723;4.38988;8.742971 +28934;3;-0.24092102;0.0058288574;-0.009155273 +28936;0;-0.34864807;4.4279175;8.555222 +28936;12;0.13924372;0.18741658;0.6702227;0.704477 +28936;3;-0.23786926;0.011306763;-0.0048675537 +28939;0;-0.3390808;4.389923;8.559982 +28939;3;-0.24214172;0.016815186;-0.0024261475 +28940;1;-0.7249054;4.379982;8.747935 +28941;4;19.692993;-23.991394;-50.247192 +28941;6;-1.4637126;-0.47355053;0.03959163 +28941;7;0.088847905;-0.8848571;0.45731184;0.0;0.99542224;0.09511771;-0.009349415;0.0;-0.03522555 +28941;0;-0.32476807;4.380417;8.593384 +28941;3;-0.24092102;0.021087646;0.0012359619 +28942;12;0.13884528;0.1870345;0.67032534;0.7045595 +28943;0;-0.3438568;4.356659;8.617218 +28944;1;-0.7251789;4.3699536;8.752927 +28944;2;-0.45337397;-0.0321846;0.21194458; +28944;3;-0.24397278;0.024749756;0.0036773682 +28946;0;-0.3390808;4.3994293;8.612442 +28946;12;0.1384284;0.18666403;0.670443;0.7046278 +28946;3;-0.24458313;0.025970459;0.009170532 +28948;0;-0.36775208;4.3614197;8.621979 +28948;1;-0.7256002;4.359848;8.75793 +28948;3;-0.24519348;0.025970459;0.014053345 +28950;4;19.993591;-23.690796;-50.9964 +28950;6;-1.4466336;-0.4679499;0.042627025 +28950;7;0.1046581;-0.8856242;0.45245606;0.0;0.9937806;0.11053016;-0.013523988;0.0;-0.03803288 +28951;0;-0.3534088;4.3614197;8.664902 +28951;3;-0.24763489;0.030258179;0.017120361 +28951;12;0.13799837;0.18629733;0.6705745;0.7046841 +28953;0;-0.36297607;4.3519135;8.660141 +28953;1;-0.725952;4.3496394;8.762975 +28953;3;-0.25068665;0.03147888;0.021392822 +28955;0;-0.39640808;4.3614197;8.6839905 +28955;12;0.13756299;0.1859295;0.67072403;0.7047241 +28956;3;-0.25190735;0.032089233;0.025054932 +28958;9;2AEC2AEBC4E1;-62;-2147483648 +28958;0;-0.39640808;4.356659;8.698288 +28958;1;-0.72635126;4.3392463;8.768093 +28959;3;-0.25375366;0.032699585;0.026885986 +28959;5;999.5725 +28960;4;20.742798;-23.690796;-49.49646 +28960;6;-1.4972603;-0.46392328;0.045541603 +28960;7;0.053077623;-0.891887;0.44913298;0.0;0.99776006;0.065704286;0.012562128;0.0;-0.040713955 +28960;0;-0.41552734;4.3519135;8.731674 +28960;3;-0.25619507;0.03453064;0.031158447 +28961;12;0.13711525;0.18555802;0.67088944;0.70475185 +28962;0;-0.43940735;4.3519135;8.76506 +28963;1;-0.7267486;4.3286858;8.773279 +28963;2;-0.40195233;-0.024244308;0.08388424; +28963;3;-0.26046753;0.03453064;0.034835815 +28965;0;-0.48718262;4.370926;8.803207 +28965;12;0.13665791;0.18518347;0.671066;0.70477104 +28966;3;-0.26229858;0.032089233;0.041549683 +28967;0;-0.5253906;4.404175;8.855682 +28967;1;-0.7270478;4.317888;8.778574 +28968;3;-0.2635193;0.029632568;0.046432495 +28970;4;19.692993;-23.991394;-50.546265 +28970;6;-1.4830112;-0.46080723;0.059258614 +28970;7;0.061284684;-0.8922448;0.44737384;0.0;0.9967096;0.078527585;0.020078938;0.0;-0.053046513 +28970;0;-0.5397186;4.3946686;8.879532 +28971;3;-0.26535034;0.025360107;0.054382324 +28971;12;0.13619193;0.18479821;0.67125946;0.7047781 +28972;0;-0.5540619;4.3946686;8.908142 +28972;1;-0.7269045;4.306983;8.783941 +28972;3;-0.26474;0.019256592;0.059265137 +28974;0;-0.5922699;4.4184265;8.922455 +28975;12;0.13573371;0.18439573;0.67147255;0.70476896 +28975;3;-0.26474;0.014984131;0.066589355 +28977;0;-0.57315063;4.3946686;8.998749 +28977;1;-0.7261143;4.296093;8.789337 +28977;3;-0.2635193;0.011306763;0.07330322 +28979;4;20.892334;-23.240662;-50.846863 +28979;6;-1.4621377;-0.45349818;0.06360634 +28979;7;0.0805419;-0.89361864;0.4415414;0.0;0.9951122;0.09748332;0.01577356;0.0;-0.057138465 +28980;0;-0.5827179;4.465927;9.008301 +28980;3;-0.26107788;0.008865356;0.078811646 +28980;12;0.13529687;0.18397085;0.6717032;0.70474416 +28982;0;-0.5827179;4.5086975;9.03215 +28982;2;-0.22951066;-0.12451172;-0.14090347; +28982;3;-0.25497437;0.008270264;0.08430481 +28982;1;-0.7247564;4.285415;8.794661 +28985;0;-0.6018219;4.513443;9.03215 +28985;12;0.13488412;0.18353756;0.67195165;0.7046994 +28986;3;-0.24824524;0.0070495605;0.08796692 +28986;0;-0.6161499;4.513443;9.056 +28987;1;-0.7231284;4.2752433;8.799744 +28987;3;-0.24336243;0.0033721924;0.08859253 +28989;4;19.993591;-22.640991;-50.546265 +28989;6;-1.4037806;-0.46143958;0.06793306 +28989;7;0.13605441;-0.882953;0.44931406;0.0;0.98883504;0.14885372;-0.0069094747;0.0;-0.060781334 +28989;0;-0.62094116;4.5086975;9.056 +28990;3;-0.23725891;3.3569336E-4;0.090408325 +28990;12;0.13449715;0.18311483;0.672209;0.7046379 +28991;1;-0.721186;4.265478;8.804641 +28991;0;-0.60661316;4.503952;9.103683 +28992;3;-0.23114014;-0.002105713;0.09347534 +28994;0;-0.59706116;4.513443;9.170456 +28994;3;-0.22381592;-0.0033416748;0.09591675 +28995;12;0.13413669;0.18269505;0.6724691;0.70456743 +28996;0;-0.57315063;4.5086975;9.16568 +28996;1;-0.718919;4.256301;8.809266 +29001;1;-0.7164398;4.2478724;8.813535 +29002;2;-0.1874057;-0.26665878;-0.32399845; +29002;12;0.13381192;0.18228845;0.67272913;0.70448625 +29002;3;-0.21464539;-0.004562378;0.098358154 +29002;5;999.5725 +29002;4;21.192932;-23.54126;-51.14746 +29002;6;-1.4627529;-0.456383;0.062450938 +29002;7;0.08027899;-0.8924182;0.44401023;0.0;0.9951968;0.09679684;0.014616482;0.0;-0.0560228 +29002;0;-0.5683899;4.5752106;9.222916 +29003;3;-0.20732117;-0.0039520264;0.10079956 +29003;0;-0.5253906;4.5514526;9.21814 +29003;3;-0.19876099;-0.005783081;0.10018921 +29004;0;-0.5158386;4.5847015;9.256302 +29004;12;0.1335223;0.18190278;0.6729899;0.7043918 +29004;3;-0.18777466;-0.0051727295;0.10140991 +29005;17;1;38dead6d7725;13006;3213;-76; +29006;17;1;38dead6d60ff;11604;1478;-66; +29007;17;1;1c1bb5efa29a;6611;3956;-71; +29007;17;1;1c1bb5ecd182;749;712;-51; +29008;0;-0.5062866;4.560959;9.199066 +29008;1;-0.7138439;4.2402105;8.817435 +29008;3;-0.17739868;-0.0033416748;0.103256226 +29008;4;19.242859;-24.14093;-50.846863 +29008;6;-1.4882042;-0.4596858;0.054981273 +29008;7;0.058075543;-0.893137;0.44601962;0.0;0.9970966;0.07393418;0.01821988;0.0;-0.04924895 +29008;0;-0.44895935;4.5799713;9.232452 +29008;3;-0.1663971;-0.0027313232;0.10447693 +29009;12;0.13326766;0.1815425;0.6732447;0.70428944 +29010;0;-0.44418335;4.5989685;9.189545 +29011;1;-0.7112112;4.2334943;8.820873 +29011;3;-0.15356445;-0.0027313232;0.10569763 +29013;0;-0.45373535;4.603714;9.16568 +29013;12;0.13304995;0.18122113;0.6734958;0.70417327 +29013;3;-0.14074707;-8.8500977E-4;0.10751343 +29015;0;-0.41552734;4.5989685;9.151382 +29015;1;-0.7085686;4.227879;8.823779 +29016;3;-0.13034058;3.3569336E-4;0.10935974 +29018;4;21.192932;-23.840332;-50.846863 +29018;6;-1.4696457;-0.46526736;0.0453748 +29018;7;0.08062736;-0.88913363;0.45048937;0.0;0.9959197;0.090244405;-1.3105199E-4;0.0;-0.040537618 +29018;0;-0.3534088;4.5989685;9.13707 +29018;3;-0.1187439;9.3078613E-4;0.10935974 +29018;12;0.13287666;0.1809392;0.6737416;0.7040434 +29020;0;-0.3534088;4.594223;9.13707 +29020;1;-0.70587283;4.2232423;8.826216 +29020;2;-0.3297609;-0.35807753;-0.36658192; +29020;3;-0.10713196;0.0033721924;0.111190796 +29023;0;-0.3534088;4.5989685;9.122772 +29023;12;0.1327404;0.18069625;0.67398304;0.70390046 +29023;3;-0.094314575;0.0039978027;0.1136322 +29025;0;-0.32476807;4.6322327;9.075058 +29025;1;-0.7032328;4.219667;8.8281355 +29025;3;-0.08148193;0.0076446533;0.11546326 +29027;4;18.34259;-23.390198;-51.446533 +29027;6;-1.401154;-0.47170216;0.035771623 +29027;7;0.15270376;-0.87800896;0.45363182;0.0;0.98775846;0.1503929;-0.041417096;0.0;-0.03185843 +29027;0;-0.3152008;4.627472;9.070297 +29028;3;-0.07048035;0.009490967;0.11668396 +29028;12;0.1326449;0.18049729;0.6742193;0.7037432 +29030;0;-0.2722168;4.636963;9.070297 +29030;1;-0.70067173;4.217187;8.829524 +29030;3;-0.058273315;0.008270264;0.12036133 +29032;0;-0.26264954;4.627472;9.027374 +29032;12;0.13258745;0.18034412;0.6744536;0.70356876 +29033;3;-0.045440674;0.009490967;0.122177124 +29034;0;-0.29130554;4.646469;9.036911 +29035;1;-0.69800204;4.215772;8.830411 +29035;3;-0.03565979;0.01008606;0.12339783 +29035;5;999.5764 +29037;4;19.84253;-23.240662;-50.39673 +29037;6;-1.4265716;-0.47470465;0.03222392 +29037;7;0.12907729;-0.8801933;0.45672598;0.0;0.99122024;0.1278332;-0.03377538;0.0;-0.028655889 +29037;0;-0.2722168;4.61322;8.994003 +29037;3;-0.025894165;0.011932373;0.12583923 +29038;12;0.13257234;0.1802302;0.67468596;0.703378 +29039;0;-0.26742554;4.6559753;8.965378 +29039;1;-0.6953518;4.215286;8.8308525 +29040;2;-0.46173388;-0.40640545;-0.22334576; +29040;3;-0.0155181885;0.011932373;0.12768555 +29042;0;-0.23876953;4.6892242;8.936752 +29042;12;0.13259506;0.180155;0.67491513;0.7031731 +29042;3;-0.005142212;0.013153076;0.13012695 +29045;0;-0.26264954;4.646469;8.941528 +29045;1;-0.69265854;4.2157373;8.830849 +29045;3;9.765625E-4;0.014984131;0.13195801 +29046;4;21.49353;-24.14093;-50.39673 +29046;6;-1.4667922;-0.47906768;0.029365677 +29046;7;0.09031086;-0.8826298;0.46131176;0.0;0.9955727;0.09212955;-0.018631088;0.0;-0.026056092 +29047;0;-0.26742554;4.670227;8.884293 +29047;3;0.008300781;0.01864624;0.13378906 +29049;12;0.13265106;0.18011495;0.6751431;0.7029539 +29049;0;-0.2722168;4.717743;8.836609 +29049;1;-0.6900966;4.216903;8.830493 +29050;3;0.013198853;0.02230835;0.13562012 +29051;0;-0.26264954;4.73674;8.836609 +29052;12;0.13273142;0.18010975;0.6753714;0.7027207 +29052;3;0.021133423;0.024139404;0.13868713 +29056;1;-0.6876918;4.2186985;8.829823 +29057;0;-0.24832153;4.760498;8.803207 +29057;3;0.02357483;0.024749756;0.14050293 +29057;12;0.13282755;0.18013641;0.6756046;0.7024715 +29059;1;-0.68534195;4.220898;8.828955 +29059;2;-0.4879741;-0.49323273;-0.02986145; +29062;12;0.13293563;0.18018241;0.6758414;0.7022115 +29065;1;-0.68317556;4.2234316;8.82791 +29065;9;2AEC2AEBC4E1;-61;-2147483648 +29067;12;0.13304618;0.18025163;0.6760866;0.70193666 +29068;1;-0.6809985;4.2261786;8.826764 +29069;4;19.543457;-22.190857;-52.046204 +29069;6;-1.2763088;-0.4955618;0.028200597 +29069;7;0.277303;-0.84183145;0.4630582;0.0;0.96046233;0.25533304;-0.11098329;0.0;-0.024804827 +29069;0;-0.26264954;4.7747498;8.793686 +29069;3;0.027252197;0.027816772;0.14356995 +29069;0;-0.26264954;4.7747498;8.769836 +29069;3;0.030303955;0.03147888;0.1478424 +29069;0;-0.2722168;4.7890015;8.703064 +29070;3;0.03213501;0.033920288;0.1478424 +29073;12;0.1331657;0.18032742;0.67633396;0.7016562 +29073;0;-0.29130554;4.817505;8.703064 +29073;3;0.03274536;0.03147888;0.14967346 +29073;4;20.292664;-24.591064;-50.846863 +29073;6;-1.3892078;-0.5053207;0.033459116 +29073;7;0.16456321;-0.8606323;0.48190364;0.0;0.9859321;0.15802161;-0.054470748;0.0;-0.029271906 +29073;0;-0.3343048;4.8365173;8.6792145 +29073;3;0.03640747;0.032089233;0.15211487 +29073;0;-0.35820007;4.8555145;8.650604 +29073;3;0.033966064;0.032699585;0.15272522 +29073;0;-0.3390808;4.869766;8.664902 +29073;3;0.033966064;0.032089233;0.15394592 +29073;0;-0.3343048;4.874527;8.674438 +29073;1;-0.67878485;4.228927;8.825619 +29073;3;0.03213501;0.032089233;0.15516663 +29074;5;999.5764 +29077;4;19.993591;-24.7406;-50.546265 +29077;6;-1.377237;-0.51164824;0.03852001 +29077;7;0.1737071;-0.855656;0.48752308;0.0;0.98422486;0.16772002;-0.056317724;0.0;-0.033578783 +29077;12;0.13328521;0.18040243;0.6765857;0.70137143 +29077;0;-0.3390808;4.907776;8.688751 +29077;3;0.0284729;0.032089233;0.15638733 +29078;1;-0.6765028;4.2315526;8.824534 +29078;2;-0.415442;-0.61880636;0.13809681; +29080;0;-0.32476807;4.8982697;8.664902 +29080;3;0.026016235;0.032089233;0.15945435 +29080;0;-0.3295288;4.869766;8.65538 +29080;12;0.13340046;0.18046999;0.67684305;0.70108384 +29081;3;0.022354126;0.033309937;0.15945435 +29083;0;-0.37728882;4.884018;8.669678 +29083;1;-0.6742027;4.233905;8.823583 +29083;3;0.015640259;0.03147888;0.16067505 +29085;4;21.192932;-23.840332;-50.39673 +29085;6;-1.3444862;-0.5126265;0.04349076 +29085;7;0.20339076;-0.8492379;0.48726496;0.0;0.9783643;0.1955409;-0.0675803;0.0;-0.037888482 +29085;0;-0.38685608;4.874527;8.6792145 +29086;3;0.010147095;0.030853271;0.1612854 +29086;12;0.13350284;0.1805292;0.6771087;0.70079243 +29087;0;-0.41073608;4.884018;8.6839905 +29087;1;-0.67186993;4.2357697;8.8228655 +29088;3;0.0052490234;0.029632568;0.16189575 +29089;0;-0.41073608;4.9125214;8.731674 +29090;12;0.13358802;0.18056823;0.6773809;0.700503 +29090;3;-0.0026855469;0.029037476;0.16311646 +29092;0;-0.39640808;4.86026;8.726913 +29092;1;-0.6694349;4.2371235;8.8224 +29092;3;-0.009399414;0.027816772;0.16616821 +29094;4;21.192932;-24.591064;-50.846863 +29094;6;-1.3784691;-0.5077085;0.045392424 +29094;7;0.16929242;-0.85774875;0.48539394;0.0;0.98476785;0.16703299;-0.04829357;0.0;-0.039653044 +29094;0;-0.40119934;4.8365173;8.745987 +29095;3;-0.016738892;0.025970459;0.16616821 +29095;12;0.13365492;0.18058161;0.6776607;0.7002161 +29097;0;-0.39163208;4.850769;8.741211 +29097;1;-0.66681504;4.2378263;8.822262 +29097;2;-0.342479;-0.62936544;0.11084843; +29097;3;-0.023452759;0.024749756;0.16677856 +29099;0;-0.38685608;4.8555145;8.755524 +29099;12;0.13370351;0.18056598;0.67795205;0.6999289 +29100;3;-0.028335571;0.022918701;0.16860962 +29101;0;-0.40596008;4.8460083;8.798447 +29102;1;-0.66403615;4.2379766;8.822399 +29102;3;-0.033218384;0.018035889;0.17044067 +29104;4;20.292664;-23.240662;-50.39673 +29104;6;-1.3326702;-0.50299263;0.046107274 +29104;7;0.21404019;-0.8514206;0.47882122;0.0;0.9759897;0.20666659;-0.06879568;0.0;-0.040382292 +29104;0;-0.37252808;4.803253;8.822296 +29105;3;-0.0362854;0.017425537;0.17044067 +29105;12;0.13373365;0.18052123;0.67825043;0.6996455 +29106;0;-0.4202881;4.793747;8.807983 +29107;1;-0.6609474;4.2376804;8.822773 +29107;3;-0.038101196;0.014984131;0.16921997 +29109;0;-0.39640808;4.7890015;8.81752 +29109;12;0.13375747;0.18045056;0.6785556;0.69936323 +29109;3;-0.037506104;0.014373779;0.17105103 +29111;0;-0.35820007;4.7747498;8.81752 +29111;1;-0.6577147;4.2372336;8.823229 +29111;3;-0.038726807;0.013748169;0.17044067 +29112;5;999.5764 +29113;4;21.043396;-22.640991;-49.79706 +29113;6;-1.3547591;-0.4959542;0.04060135 +29114;7;0.1953173;-0.8590703;0.4731272;0.0;0.9800901;0.18853341;-0.062277313;0.0;-0.035699684 +29114;0;-0.35820007;4.7652435;8.865219 +29114;3;-0.037506104;0.012527466;0.17166138 +29114;12;0.13378157;0.18036635;0.6788613;0.6990836 +29116;0;-0.36297607;4.760498;8.889069 +29116;3;-0.033843994;0.013153076;0.17166138 +29117;2;-0.3360247;-0.55847883;-0.004573822; +29117;1;-0.6543786;4.2367206;8.823724 +29118;0;-0.36775208;4.760498;8.903381 +29119;12;0.13380603;0.18027751;0.6791682;0.6988036 +29119;3;-0.028945923;0.012527466;0.17227173 +29121;0;-0.3438568;4.7082367;8.912918 +29121;1;-0.65100944;4.2364445;8.824105 +29121;3;-0.025894165;0.014984131;0.17166138 +29123;4;19.242859;-24.591064;-52.046204 +29123;6;-1.4052833;-0.4856832;0.03856048 +29123;7;0.1468857;-0.8722706;0.46644256;0.0;0.98856574;0.14570501;-0.038830005;0.0;-0.034092747 +29124;0;-0.3438568;4.7082367;8.917694 +29124;3;-0.023452759;0.013748169;0.17044067 +29124;12;0.13384081;0.18019547;0.6794742;0.69852066 +29126;0;-0.3390808;4.7082367;8.922455 +29126;1;-0.6477094;4.236413;8.824364 +29127;3;-0.017333984;0.013748169;0.17227173 +29128;9;52ADB5BC186F;-88;-2147483648 +29129;0;-0.32476807;4.684494;8.941528 +29129;12;0.13388343;0.18012598;0.67977643;0.69823635 +29130;3;-0.010025024;0.012527466;0.17105103 +29130;0;-0.32476807;4.670227;8.946289 +29130;1;-0.6443074;4.236798;8.824428 +29131;3;-0.005142212;0.012527466;0.16738892 +29133;4;20.4422;-23.091125;-50.247192 +29133;6;-1.4059182;-0.48084542;0.036286052 +29133;7;0.147472;-0.87458044;0.46191034;0.0;0.98854315;0.14552024;-0.040079787;0.0;-0.032164305 +29133;0;-0.3390808;4.684494;8.960602 +29133;3;3.6621094E-4;0.013748169;0.16555786 +29134;12;0.13394547;0.18007058;0.6800765;0.6979464 +29135;0;-0.3104248;4.693985;8.994003 +29135;1;-0.6410316;4.237635;8.824265 +29136;2;-0.36935776;-0.46207476;-0.11929321; +29136;3;0.004638672;0.014984131;0.1637268 +29138;0;-0.3534088;4.693985;8.979691 +29138;12;0.1340238;0.1800356;0.68036103;0.69766307 +29138;3;0.011367798;0.013748169;0.16555786 +29140;0;-0.3056488;4.693985;8.994003 +29140;1;-0.63785434;4.2389016;8.823886 +29140;3;0.015640259;0.01008606;0.16189575 +29142;4;20.892334;-25.790405;-51.14746 +29142;6;-1.5132949;-0.48077834;0.03397055 +29142;7;0.041755203;-0.8851699;0.46339062;0.0;0.99867404;0.050954677;0.0073452312;0.0;-0.030113693 +29143;0;-0.3199768;4.712982;9.03215 +29143;3;0.021743774;0.008865356;0.15945435 +29143;12;0.13411675;0.18001953;0.68064004;0.6973771 +29145;0;-0.3390808;4.7082367;9.017838 +29145;1;-0.6345527;4.2405987;8.823308 +29146;3;0.024795532;0.0070495605;0.15516663 +29147;0;-0.29130554;4.712982;9.03215 +29148;12;0.13423394;0.1800138;0.68090457;0.6970978 +29148;3;0.02784729;0.005218506;0.15394592 +29150;0;-0.2817688;4.6987305;9.075058 +29150;1;-0.63117903;4.242575;8.8226 +29150;3;0.030303955;0.0021514893;0.15211487 +29151;5;999.5764 +29152;4;20.292664;-23.840332;-49.197388 +29152;6;-1.4794915;-0.47756022;0.031038735 +29152;7;0.07693005;-0.8844196;0.46030843;0.0;0.9966555;0.08097699;-0.010982035;0.0;-0.02756166 +29152;0;-0.29130554;4.6749725;9.08461 +29153;3;0.03274536;3.3569336E-4;0.1478424 +29153;12;0.13436551;0.18001352;0.68115515;0.69682765 +29155;0;-0.25787354;4.703491;9.056 +29155;2;-0.38841438;-0.45322084;-0.21801376; +29155;1;-0.62767905;4.2447257;8.8218155 +29155;3;0.033966064;-0.0033416748;0.1466217 +29157;0;-0.2817688;4.703491;9.079834 +29157;3;0.037017822;-0.0039520264;0.14294434 +29158;12;0.13451318;0.18001528;0.6813941;0.696565 +29160;1;-0.62406707;4.247041;8.820958 +29160;0;-0.24832153;4.7414856;9.122772 +29160;3;0.03945923;-0.0051727295;0.14234924 +29161;4;19.242859;-23.840332;-50.39673 +29161;6;-1.4420842;-0.47916445;0.027213246 +29162;7;0.11586849;-0.88004005;0.4605475;0.0;0.992971;0.11390151;-0.032170735;0.0;-0.02414552 +29162;0;-0.25309753;4.73674;9.16568 +29162;3;0.03945923;-0.0051727295;0.13746643 +29163;12;0.13467371;0.18001597;0.68162113;0.69631165 +29164;0;-0.21487427;4.7700043;9.160919 +29164;1;-0.62045014;4.2495027;8.820027 +29165;3;0.043121338;-0.0063934326;0.13195801 +29165;9;2AEC2AEBC4E1;-53;-2147483648 +29167;0;-0.20533752;4.7794952;9.179993 +29167;12;0.13484354;0.18002138;0.68183815;0.6960649 +29167;3;0.047409058;-0.0039520264;0.13317871 +29169;0;-0.17666626;4.827011;9.237228 +29169;1;-0.61692744;4.252211;8.818969 +29169;3;0.04862976;-0.0033416748;0.12768555 +29171;4;20.4422;-24.7406;-50.9964 +29171;6;-1.4753394;-0.4814577;0.01912313 +29171;7;0.08648;-0.88228583;0.46270177;0.0;0.99610955;0.08447698;-0.025093284;0.0;-0.016948197 +29171;0;-0.16233826;4.86026;9.222916 +29172;3;0.05168152;-2.89917E-4;0.12158203 +29172;12;0.13502291;0.18003842;0.68204045;0.6958274 +29174;0;-0.143219;4.874527;9.208603 +29174;3;0.054122925;9.3078613E-4;0.118515015 +29174;2;-0.46970838;-0.5301409;-0.3600111; +29174;1;-0.6136447;4.255176;8.817767 +29176;0;-0.10499573;4.907776;9.208603 +29176;12;0.13520642;0.18007234;0.68222964;0.6955975 +29177;3;0.05656433;0.0015563965;0.11729431 +29178;0;-0.07635498;4.9315186;9.21814 +29179;3;0.057174683;0.0021514893;0.11729431 +29179;1;-0.61056614;4.258376;8.816437 +29181;4;19.84253;-24.591064;-51.597595 +29181;6;-1.4309824;-0.49122402;0.008282933 +29181;7;0.13548514;-0.8731519;0.46824083;0.0;0.9907524;0.122880526;-0.057532076;0.0;-0.0073034433 +29181;0;-0.038131714;4.9933014;9.256302 +29182;12;0.13539459;0.18012115;0.6824053;0.69537604 +29183;3;0.058395386;0.0076446533;0.11729431 +29183;0;0.009643555;5.074051;9.265839 +29184;3;0.059005737;0.013153076;0.119140625 +29184;1;-0.6075582;4.2617636;8.815008 +29187;17;0;38dead6d7725;0;0;0; +29187;17;1;38dead6d60ff;11802;2552;-70; +29188;17;1;1c1bb5efa29a;7361;2265;-71; +29188;17;1;1c1bb5ecd182;18;798;-50; +29188;0;0.019195557;5.164322;9.304001 +29188;12;0.13558838;0.18018246;0.6825798;0.69515103 +29188;3;0.059005737;0.021087646;0.122177124 +29188;1;-0.604954;4.2653337;8.813459 +29188;0;0.023986816;5.2165833;9.327835 +29188;3;0.058395386;0.033309937;0.12402344 +29189;5;999.57886 +29190;4;20.593262;-24.14093;-50.09613 +29190;6;-1.4102237;-0.5099151;-0.0025715253 +29190;7;0.16112198;-0.8615583;0.4814114;0.0;0.9869319;0.13954407;-0.08057782;0.0;0.0022443887 +29191;0;0.03352356;5.278351;9.365997 +29191;3;0.054733276;0.04736328;0.12583923 +29192;12;0.1357696;0.180268;0.68276274;0.6949138 +29195;1;-0.60324657;4.268867;8.811866 +29195;2;-0.65543216;-0.8388972;-0.48639965; +29196;12;0.1359106;0.18038927;0.68296075;0.6946601 +29196;0;0.0048675537;5.297348;9.399368 +29196;3;0.050460815;0.06262207;0.12646484 +29197;0;-0.0046844482;5.344864;9.423233 +29197;3;0.043121338;0.08155823;0.1295166 +29198;1;-0.6028784;4.2720194;8.810364 +29198;0;-0.052444458;5.3401184;9.4804535 +29198;3;0.03274536;0.10050964;0.13134766 +29200;4;18.193054;-23.54126;-50.09613 +29200;6;-1.3445787;-0.51297265;0.0055317944 +29200;7;0.22164403;-0.8490905;0.47949892;0.0;0.97511566;0.19542423;-0.104683705;0.0;-0.0048197694 +29200;0;-0.047683716;5.378128;9.509079 +29201;12;0.1359824;0.18054873;0.6831787;0.6943903 +29201;3;0.018081665;0.121276855;0.13195801 +29202;0;-0.100234985;5.4256287;9.585388 +29202;1;-0.60412204;4.274266;8.809188 +29203;3;0.0040283203;0.14141846;0.13439941 +29205;0;-0.143219;5.4161377;9.618759 +29206;12;0.13595358;0.18073826;0.68342304;0.69410616 +29206;3;-0.013076782;0.16220093;0.13500977 +29207;0;-0.21009827;5.4256287;9.661682 +29207;1;-0.6071487;4.275222;8.8085165 +29207;3;-0.034439087;0.18113708;0.13562012 +29210;4;20.4422;-25.041199;-52.946472 +29210;6;-1.3516166;-0.5115754;0.021742089 +29210;7;0.2069892;-0.85111344;0.48245355;0.0;0.97815967;0.18959254;-0.08519728;0.0;-0.018957052 +29210;0;-0.2960968;5.3923798;9.680771 +29210;3;-0.057052612;0.2006836;0.13500977 +29210;12;0.13580224;0.1809487;0.68369764;0.6938104 +29212;1;-0.61198044;4.2743936;8.808584 +29212;0;-0.3438568;5.4256287;9.723679 +29212;2;-0.5315016;-1.1203575;-0.7813139; +29212;3;-0.07965088;0.21717834;0.13378906 +29214;0;-0.4202881;5.4493866;9.709381 +29215;12;0.13551384;0.18116122;0.68400246;0.69351083 +29215;3;-0.1028595;0.23062134;0.13256836 +29217;0;-0.46328735;5.458893;9.737991 +29217;1;-0.6183878;4.271673;8.809457 +29218;3;-0.12730408;0.24221802;0.13012695 +29219;4;19.84253;-24.591064;-50.39673 +29219;6;-1.3671407;-0.51044536;0.0475394 +29219;7;0.1792848;-0.85449517;0.48753974;0.0;0.9829231;0.17646934;-0.052161828;0.0;-0.041463792 +29219;0;-0.5445099;5.4636383;9.776154 +29220;3;-0.1517334;0.2495575;0.1270752 +29220;12;0.13509049;0.1813591;0.68433285;0.6932158 +29221;0;-0.63526917;5.411377;9.776154 +29222;1;-0.6259873;4.266863;8.811251 +29222;3;-0.17799377;0.2507782;0.12646484 +29224;0;-0.71647644;5.3733673;9.833389 +29224;12;0.13453913;0.18151861;0.68468237;0.6929361 +29225;3;-0.20426941;0.2507782;0.122177124 +29227;0;-0.802475;5.3353577;9.923996 +29228;1;-0.63407606;4.2597356;8.814119 +29228;3;-0.22930908;0.24465942;0.11973572 +29228;5;999.57886 +29229;4;19.093323;-25.340271;-50.9964 +29229;6;-1.4113039;-0.49193233;0.080686525 +29229;7;0.120714314;-0.8702348;0.47761855;0.0;0.990142;0.1399849;0.004805986;0.0;-0.07104172 +29229;0;-0.859787;5.2736053;9.928772 +29229;3;-0.25190735;0.23672485;0.118515015 +29229;12;0.13388124;0.18160285;0.685048;0.69268 +29231;0;-0.93144226;5.2070923;9.928772 +29231;1;-0.64200646;4.2503757;8.818064 +29231;2;-0.03951347;-1.1234188;-1.0130167; +29232;3;-0.27574158;0.22572327;0.111190796 +29233;0;-0.95054626;5.1833344;9.938309 +29234;12;0.13314758;0.18159087;0.68542254;0.692454 +29234;3;-0.2965088;0.21290588;0.10873413 +29236;0;-0.9696655;5.15007;10.038467 +29236;1;-0.6492956;4.238976;8.823016 +29236;3;-0.3136139;0.19702148;0.10385132 +29238;4;19.392395;-24.7406;-50.9964 +29238;6;-1.4396563;-0.47213653;0.09629621 +29238;7;0.086807236;-0.88295144;0.46136883;0.0;0.9925382;0.116458684;0.03612699;0.0;-0.08562879 +29238;0;-1.0699768;5.0930634;10.05278 +29239;3;-0.32766724;0.18235779;0.10079956 +29239;12;0.13236254;0.18146959;0.6857946;0.6922678 +29241;0;-1.0747681;5.007553;10.086151 +29241;1;-0.6556229;4.2259507;8.8287945 +29241;3;-0.33865356;0.16403198;0.09713745 +29243;0;-1.0604248;4.9267883;10.13385 +29243;12;0.1315576;0.18123998;0.6861599;0.6921195 +29244;3;-0.34843445;0.14814758;0.094696045 +29245;0;-1.0556488;4.8650208;10.191071 +29245;1;-0.66064405;4.2117553;8.835201 +29246;3;-0.35575867;0.13165283;0.08981323 +29248;4;20.292664;-24.591064;-50.39673 +29248;6;-1.5584586;-0.44331777;0.10321754 +29248;7;-0.031920265;-0.90326476;0.4278947;0.0;0.9951472;0.011144856;0.09776265;0.0;-0.09307438 +29248;0;-1.0413208;4.8127594;10.200623 +29248;3;-0.3600464;0.11393738;0.08918762 +29249;12;0.13076238;0.18091217;0.6865147;0.69200414 +29251;0;-1.0938568;4.7652435;10.262619 +29251;1;-0.6644;4.1968064;8.842031 +29251;2;0.3068291;-0.7809143;-1.2752953; +29251;3;-0.3624878;0.09561157;0.08552551 +29253;0;-1.0795288;4.7462463;10.310318 +29253;12;0.1299901;0.18050452;0.6868545;0.69191885 +29253;3;-0.35820007;0.076675415;0.08493042 +29255;0;-1.0795288;4.684494;10.358002 +29255;1;-0.6667032;4.1816316;8.849044 +29255;3;-0.35331726;0.057128906;0.08308411 +29257;4;19.993591;-23.991394;-50.546265 +29257;6;-1.5984848;-0.42270592;0.10384681 +29258;7;-0.07004393;-0.91163266;0.40499347;0.0;0.9930542;-0.025248095;0.11491649;0.0;-0.09453631 +29258;0;-1.0747681;4.6559753;10.42955 +29258;3;-0.34843445;0.037582397;0.08125305 +29259;12;0.12926856;0.1800283;0.68717724;0.69185764 +29260;0;-1.0269775;4.622711;10.505859 +29260;1;-0.6673869;4.166726;8.856021 +29260;3;-0.34049988;0.018035889;0.07698059 +29262;0;-1.0222168;4.5657043;10.596466 +29263;12;0.12862286;0.17949712;0.68747985;0.6918153 +29263;3;-0.33010864;-8.8500977E-4;0.074539185 +29265;0;-0.9553375;4.53244;10.582169 +29266;1;-0.66648;4.1523304;8.862847 +29266;3;-0.31910706;-0.019836426;0.07270813 +29268;5;999.57886 +29268;4;19.242859;-23.840332;-51.14746 +29268;6;-1.657247;-0.40320346;0.090033986 +29268;7;-0.12114019;-0.9163738;0.381555;0.0;0.98918426;-0.07941906;0.12331754;0.0;-0.08270221 +29268;0;-0.92666626;4.5086975;10.629852 +29268;3;-0.30688477;-0.038772583;0.07026672 +29269;9;2AEC2AEBC4E1;-61;-2147483648 +29270;12;0.12806432;0.17892312;0.68775403;0.69179505 +29271;0;-0.9219055;4.5419617;10.706177 +29271;1;-0.6639761;4.1388226;8.869351 +29271;3;-0.29284668;-0.05342102;0.06842041 +29271;2;0.27930403;-0.46986055;-1.650115; +29272;0;-0.888443;4.470688;10.739548 +29272;12;0.12760314;0.17832106;0.68800026;0.69179094 +29272;3;-0.27696228;-0.06869507;0.06536865 +29274;0;-0.855011;4.4849396;10.75386 +29275;1;-0.6601317;4.1263475;8.875448 +29275;3;-0.26229858;-0.083969116;0.05987549 +29277;4;19.543457;-24.14093;-50.846863 +29277;6;-1.7146659;-0.39400294;0.07934045 +29277;7;-0.17303431;-0.91384;0.36736304;0.0;0.98219305;-0.13238847;0.1333047;0.0;-0.073184535 +29277;0;-0.826355;4.4089203;10.801544 +29278;3;-0.24763489;-0.09802246;0.055603027 +29278;12;0.12723653;0.17770559;0.68821937;0.691799 +29279;0;-0.7833557;4.3614197;10.854004 +29279;1;-0.6551485;4.1150775;8.881048 +29279;3;-0.23358154;-0.10900879;0.050720215 +29281;0;-0.7499237;4.342407;10.916 +29282;12;0.12696528;0.17708902;0.68840104;0.6918261 +29282;3;-0.21832275;-0.11451721;0.045822144 +29284;0;-0.7260437;4.3091583;10.944626 +29284;1;-0.6493934;4.1049232;8.886169 +29284;3;-0.20610046;-0.11512756;0.042160034 +29286;4;20.292664;-23.240662;-51.597595 +29287;6;-1.7074431;-0.3743362;0.06624086 +29287;7;-0.15990116;-0.92207444;0.35243505;0.0;0.98520863;-0.12678863;0.115276374;0.0;-0.061608635 +29287;0;-0.71170044;4.2949066;10.987549 +29288;3;-0.19387817;-0.11329651;0.03666687 +29288;12;0.12677146;0.17648456;0.68854904;0.69186884 +29292;0;-0.6925812;4.2949066;10.99231 +29292;1;-0.64367205;4.095802;8.890794 +29292;3;-0.17921448;-0.10719299;0.03237915 +29292;2;0.068072796;-0.27513027;-1.9880314; +29292;0;-0.68782043;4.252136;11.0877075 +29293;3;-0.16517639;-0.10107422;0.026275635 +29293;12;0.12662014;0.1759189;0.68867093;0.6919193 +29294;0;-0.65914917;4.190384;11.068634 +29294;1;-0.63854784;4.087735;8.894875 +29294;3;-0.1517334;-0.09375;0.022003174 +29296;4;19.993591;-23.991394;-50.546265 +29296;6;-1.8128142;-0.36132154;0.05948084 +29296;7;-0.2596407;-0.9081686;0.32835427;0.0;0.96410304;-0.22418739;0.14228666;0.0;-0.05560739 +29296;0;-0.63049316;4.176132;11.1258545 +29296;3;-0.1382904;-0.087646484;0.014678955 +29297;12;0.1264917;0.17541367;0.68876857;0.6919739 +29298;0;-0.64482117;4.095352;11.111557 +29298;1;-0.634176;4.080702;8.898416 +29299;3;-0.12608337;-0.08274841;0.0116119385 +29302;12;0.12637757;0.17497481;0.6888409;0.6920338 +29303;0;-0.63049316;4.0478516;11.10202 +29303;3;-0.11079407;-0.0766449;0.0048980713 +29304;1;-0.63047856;4.07468;8.901438 +29304;0;-0.64482117;4.009842;11.0924835 +29304;3;-0.09736633;-0.071136475;6.2561035E-4 +29306;4;19.392395;-23.991394;-49.49646 +29306;6;-1.8879327;-0.3463367;0.05806601 +29306;7;-0.3300387;-0.8937159;0.3038854;0.0;0.94238776;-0.29333028;0.16081879;0.0;-0.054587513 +29307;12;0.12628108;0.17459865;0.68888897;0.69209856 +29307;0;-0.65914917;3.938568;11.10202 +29307;3;-0.08331299;-0.06808472;-0.0048675537 +29309;5;999.57886 +29309;2;-0.04535967;-0.0011124611;-2.2004223; +29309;0;-0.64004517;3.872055;11.097244 +29309;3;-0.069869995;-0.06259155;-0.010986328 +29310;1;-0.6274343;4.069708;8.903927 +29311;0;-0.63526917;3.7817993;11.059082 +29311;3;-0.054611206;-0.059539795;-0.012207031 +29313;12;0.12620535;0.17428336;0.68891215;0.69216883 +29313;1;-0.62495685;4.065763;8.905903 +29313;0;-0.6782532;3.70578;11.059082 +29314;3;-0.03933716;-0.054656982;-0.017715454 +29317;4;18.94226;-23.840332;-50.846863 +29317;6;-1.9417663;-0.322765;0.06125325 +29317;7;-0.37993565;-0.88385075;0.2728675;0.0;0.92318934;-0.34379977;0.1718228;0.0;-0.058053937 +29317;0;-0.68782043;3.6962738;10.963715 +29317;3;-0.022232056;-0.050369263;-0.018310547 +29317;12;0.12615226;0.17402978;0.6889108;0.6922437 +29318;1;-0.62303007;4.063108;8.907249 +29318;0;-0.71170044;3.639267;10.916 +29318;3;-0.0014648438;-0.04548645;-0.018936157 +29321;0;-0.73080444;3.5585022;10.873093 +29321;12;0.12613036;0.17384367;0.68888795;0.69231707 +29321;3;0.022354126;-0.040603638;-0.022598267 +29324;0;-0.72125244;3.5109863;10.825394 +29324;1;-0.6216047;4.0621;8.907809 +29325;3;0.04862976;-0.03694153;-0.02381897 +29326;4;18.492126;-24.591064;-52.046204 +29326;6;-2.009227;-0.31297535;0.06652766 +29326;7;-0.44211224;-0.8614353;0.24993207;0.0;0.894727;-0.4038967;0.19060737;0.0;-0.06324918 +29327;0;-0.68782043;3.4444885;10.744324 +29328;3;0.07489014;-0.030822754;-0.025039673 +29328;0;-0.6925812;3.3922272;10.644165 +29328;1;-0.620614;4.063202;8.907375 +29328;12;0.12615699;0.17373864;0.68884695;0.6923794 +29328;3;0.10360718;-0.024719238;-0.026870728 +29328;2;0.0051546097;0.4766612;-1.9852982; +29330;0;-0.71170044;3.3494568;10.567856 +29330;12;0.1262496;0.173733;0.68878156;0.69242907 +29330;3;0.13475037;-0.016174316;-0.02746582 +29332;0;-0.69737244;3.2829437;10.439087 +29333;3;0.16651917;-0.008224487;-0.029907227 +29333;1;-0.6202849;4.0666966;8.905804 +29334;4;18.492126;-24.591064;-52.046204 +29334;6;-2.0374036;-0.30405635;0.06670486 +29334;7;-0.4666811;-0.8521331;0.23680754;0.0;0.882136;-0.4292237;0.19391492;0.0;-0.06359792 +29335;0;-0.68304443;3.1831818;10.3198395 +29335;3;0.19828796;9.3078613E-4;-0.032974243 +29335;12;0.12641089;0.1738426;0.6886926;0.69246054 +29337;0;-0.64004517;3.1594238;10.210159 +29337;1;-0.6207251;4.0727916;8.9029875 +29338;3;0.22821045;0.013153076;-0.036026 +29339;0;-0.6495819;3.0976562;10.038467 +29339;12;0.12664744;0.17408301;0.68857545;0.6924734 +29340;3;0.26182556;0.025970459;-0.037857056 +29342;1;-0.622265;4.081602;8.898844 +29342;0;-0.6257019;3.078659;9.900162 +29342;3;0.29296875;0.03819275;-0.03907776 +29343;5;999.5873 +29345;4;19.392395;-24.7406;-51.74713 +29345;6;-2.0301483;-0.3009262;0.063117236 +29345;7;-0.4592424;-0.8560606;0.237185;0.0;0.88626605;-0.42344353;0.18769155;0.0;-0.06024088 +29345;0;-0.6495819;3.078659;9.723679 +29345;3;0.32595825;0.04673767;-0.042129517 +29345;12;0.12695073;0.17447169;0.6884285;0.69246614 +29347;1;-0.62484884;4.093074;8.893392 +29347;2;-0.03176081;0.9388714;-1.2107964; +29347;0;-0.6257019;3.0644073;9.566299 +29348;3;0.35894775;0.057128906;-0.044570923 +29349;12;0.12731886;0.1750027;0.6882568;0.69243526 +29349;0;-0.6495819;3.0596466;9.4470825 +29349;3;0.38949585;0.06752014;-0.04701233 +29352;1;-0.62843305;4.107522;8.886476 +29352;0;-0.6161499;3.0406494;9.289688 +29352;3;0.41941833;0.07728577;-0.048233032 +29356;4;19.392395;-24.7406;-51.74713 +29356;6;-1.9896312;-0.31567556;0.06622922 +29356;7;-0.42457512;-0.86842144;0.2560864;0.0;0.90320444;-0.38660017;0.18644597;0.0;-0.06291061 +29356;0;-0.5922699;3.0168915;9.170456 +29356;3;0.44813538;0.08584595;-0.04763794 +29357;12;0.12776792;0.17568436;0.68805265;0.6923828 +29357;0;-0.64482117;3.0358887;8.984451 +29357;3;0.4737854;0.09561157;-0.048233032 +29357;1;-0.6328556;4.124448;8.878319 +29359;0;-0.67349243;3.021637;8.812759 +29359;3;0.5018921;0.10417175;-0.048233032 +29360;12;0.12828097;0.17649938;0.6878246;0.69230735 +29361;1;-0.6381691;4.1437936;8.868925 +29361;0;-0.6782532;3.0738983;8.65538 +29361;3;0.52449036;0.11393738;-0.046417236 +29364;4;19.692993;-24.290466;-50.9964 +29364;6;-1.9039798;-0.3402851;0.078202225 +29364;7;-0.35069346;-0.8908189;0.2888871;0.0;0.93359035;-0.30829972;0.18264854;0.0;-0.07364296 +29364;0;-0.68782043;3.0501556;8.531357 +29364;3;0.5464783;0.12187195;-0.046417236 +29364;12;0.12885706;0.17744121;0.68757635;0.6922061 +29365;0;-0.7021332;3.0358887;8.41214 +29366;1;-0.6442578;4.1652265;8.8584385 +29366;2;-0.0555709;1.133359;-0.06429672; +29366;3;0.56663513;0.13104248;-0.04335022 +29368;0;-0.6782532;3.08815;8.269058 +29368;12;0.12948555;0.17849487;0.68731457;0.6920779 +29369;3;0.58436584;0.14204407;-0.040908813 +29370;0;-0.6782532;3.1261597;8.187988 +29370;1;-0.6510388;4.1885076;8.846957 +29371;3;0.5977936;0.15119934;-0.036026 +29372;4;19.692993;-24.290466;-50.9964 +29372;6;-1.8277621;-0.36357954;0.08264646 +29372;7;-0.2816732;-0.9039418;0.32179096;0.0;0.95640326;-0.23753351;0.16991368;0.0;-0.07715594 +29373;0;-0.71170044;3.0929108;8.068741 +29373;3;0.6118469;0.15914917;-0.032974243 +29374;12;0.13015579;0.17964946;0.6870462;0.69191986 +29375;0;-0.71647644;3.1261597;7.9304504 +29375;3;0.6252899;0.16464233;-0.02809143 +29376;9;2AEC2AEBC4E1;-61;-2147483648 +29377;1;-0.65852386;4.2131042;8.834717 +29379;12;0.13084985;0.18088786;0.6867807;0.69172996 +29380;0;-0.7403717;3.1499176;7.8255157 +29380;3;0.63383484;0.17137146;-0.02319336 +29380;0;-0.73080444;3.2116852;7.734909 +29380;1;-0.6664133;4.238914;8.82177 +29380;3;0.63934326;0.17808533;-0.016479492 +29381;5;999.5873 +29382;4;19.392395;-23.091125;-50.9964 +29382;6;-1.6565534;-0.39198616;0.094201684 +29382;7;-0.12107436;-0.920756;0.3708766;0.0;0.9888299;-0.07915548;0.12629285;0.0;-0.08692799 +29382;0;-0.74513245;3.235443;7.6299744 +29382;3;0.64178467;0.18052673;-0.010375977 +29383;12;0.13157374;0.18219306;0.6865199;0.6915089 +29385;0;-0.74513245;3.2734528;7.5345917 +29386;1;-0.67454857;4.265362;8.808393 +29386;2;-0.022474825;1.1136413;0.89994335; +29387;3;0.63993835;0.18113708;-0.005493164 +29387;0;-0.7403717;3.3209534;7.467819 +29388;12;0.13230827;0.18353781;0.68627506;0.69125605 +29388;3;0.63505554;0.18174744;0.0030670166 +29389;0;-0.7260437;3.335205;7.39151 +29389;1;-0.6824993;4.291833;8.794912 +29390;3;0.6277313;0.18052673;0.008560181 +29392;4;19.392395;-23.091125;-50.9964 +29392;6;-1.5357007;-0.42207187;0.09791261 +29392;7;-0.005100934;-0.9116804;0.41086835;0.0;0.9960027;0.03200916;0.08339086;0.0;-0.08917736 +29392;0;-0.6925812;3.3542175;7.3676605 +29393;12;0.13304779;0.18487708;0.68604016;0.6909904 +29393;3;0.61672974;0.17991638;0.014678955 +29394;0;-0.7021332;3.4017181;7.31044 +29394;1;-0.6900609;4.317754;8.781624 +29394;3;0.60084534;0.17869568;0.021392822 +29397;9;52ADB5BC186F;-88;-2147483648 +29397;0;-0.6925812;3.4397278;7.2770386 +29397;12;0.13377218;0.18619066;0.6858407;0.69069576 +29397;3;0.58496094;0.17991638;0.028717041 +29399;1;-0.69728106;4.3425746;8.7688055 +29399;0;-0.6925812;3.4729767;7.229355 +29399;3;0.5641937;0.18113708;0.035446167 +29401;4;18.94226;-24.14093;-48.446655 +29401;6;-1.5844208;-0.446064;0.09550976 +29401;7;-0.054700103;-0.9020684;0.4281127;0.0;0.9947895;-0.012290921;0.101206616;0.0;-0.0860334 +29402;0;-0.68782043;3.5109863;7.181656 +29402;3;0.5422058;0.18174744;0.042770386 +29406;12;0.1344604;0.18745406;0.6856739;0.690386 +29406;2;-0.06939769;0.95309734;1.4504738; +29406;1;-0.70425797;4.3658805;8.756666 +29407;12;0.13509162;0.18865502;0.6855466;0.6900619 +29408;0;-0.6687012;3.5585022;7.133972 +29408;3;0.5165558;0.18418884;0.050094604 +29408;0;-0.6782532;3.5774994;7.09581 +29408;3;0.49272156;0.18418884;0.05682373 +29409;1;-0.7110273;4.3872643;8.745425 +29409;0;-0.6782532;3.6250305;7.1196594 +29409;3;0.46401978;0.18296814;0.062927246 +29410;17;1;38dead6d7725;13696;1283;-74; +29411;17;1;38dead6d60ff;8571;1704;-64; +29411;17;1;1c1bb5efa29a;5589;1282;-70; +29411;17;1;1c1bb5ecd182;1509;608;-44; +29412;4;21.043396;-23.690796;-49.49646 +29412;6;-1.4454864;-0.469123;0.094978206 +29412;7;0.0818796;-0.8849712;0.4583903;0.0;0.99304605;0.111479804;0.03784155;0.0;-0.08458994 +29412;0;-0.69737244;3.663025;7.062439 +29412;3;0.43347168;0.18113708;0.07148743 +29412;12;0.13564776;0.18977939;0.6854623;0.68972826 +29413;0;-0.71647644;3.6867828;7.1101227 +29413;1;-0.7174801;4.406536;8.735203 +29413;3;0.40048218;0.17869568;0.079422 +29415;0;-0.7260437;3.7675476;7.0767365 +29416;12;0.13612552;0.19081505;0.6854246;0.6893857 +29416;3;0.36566162;0.17381287;0.08796692 +29418;0;-0.7403717;3.8197937;7.0671997 +29418;1;-0.72331786;4.423123;8.726335 +29418;3;0.32962036;0.17137146;0.0977478 +29419;5;999.5873 +29422;12;0.13651337;0.19172855;0.68544006;0.6890401 +29423;1;-0.7285245;4.4368176;8.7189455 +29423;2;-0.06668621;0.709991;1.6202021; +29424;4;19.692993;-25.041199;-50.247192 +29424;6;-1.3931364;-0.49323776;0.10438093 +29424;7;0.12720883;-0.8669405;0.48190457;0.0;0.9876212;0.15566176;0.019330274;0.0;-0.09177232 +29425;0;-0.7642517;3.872055;7.062439 +29425;3;0.29174805;0.16586304;0.10507202 +29425;0;-0.8120117;3.8910675;7.1053467 +29426;3;0.24960327;0.15914917;0.114852905 +29426;12;0.13679978;0.1925085;0.6855138;0.6886924 +29426;0;-0.831131;3.9053192;7.1053467 +29426;3;0.20683289;0.15364075;0.12402344 +29427;0;-0.802475;3.8958282;7.138748 +29428;1;-0.7328596;4.4471064;8.713339 +29428;3;0.1598053;0.14631653;0.1307373 +29430;4;18.94226;-25.190735;-49.197388 +29430;6;-1.4092888;-0.49692327;0.11194123 +29430;7;0.10723935;-0.86761343;0.48553747;0.0;0.989372;0.14135739;0.0340735;0.0;-0.098196946 +29430;0;-0.8120117;3.933838;7.1578064 +29430;3;0.1121521;0.14141846;0.14112854 +29431;12;0.1369788;0.19312473;0.68565124;0.6883474 +29432;0;-0.835907;3.9670868;7.2388916 +29432;1;-0.7363042;4.4536014;8.70973 +29432;3;0.06266785;0.13653564;0.14906311 +29435;0;-0.855011;3.9670868;7.262741 +29435;12;0.13703199;0.19356397;0.685854;0.68801135 +29435;3;0.01625061;0.13287354;0.15823364 +29437;1;-0.7390053;4.4560757;8.708236 +29437;0;-0.845459;3.9670868;7.343811 +29438;3;-0.032608032;0.13165283;0.1637268 +29439;4;21.043396;-25.64087;-47.096252 +29439;6;-1.5277249;-0.49253592;0.11462076 +29439;7;-0.01125547;-0.88031936;0.47424793;0.0;0.9948455;0.037940063;0.094036944;0.0;-0.10077554 +29440;0;-0.874115;3.9860992;7.339035 +29440;3;-0.08026123;0.12799072;0.17288208 +29440;12;0.13694702;0.1938216;0.68612796;0.68768245 +29442;0;-0.90756226;4.0050964;7.415344 +29442;1;-0.7412387;4.454587;8.708808 +29442;2;0.04042238;0.5116887;1.4475279; +29442;3;-0.12423706;0.124938965;0.1796112 +29444;0;-0.9457855;4.024109;7.47258 +29445;12;0.13671522;0.19391061;0.68646824;0.68736386 +29445;3;-0.1663971;0.12249756;0.18632507 +29447;0;-0.9648895;3.9813385;7.5441284 +29447;1;-0.74298704;4.4493675;8.711326 +29447;3;-0.20791626;0.120651245;0.19059753 +29449;4;19.093323;-23.690796;-49.046326 +29449;6;-1.3618004;-0.48225144;0.12720877 +29449;7;0.14824432;-0.86667436;0.47633913;0.0;0.9825428;0.18381551;0.028659828;0.0;-0.11239728 +29449;0;-0.95054626;3.9480896;7.682434 +29450;3;-0.24822998;0.121276855;0.19487 +29450;12;0.13634807;0.19383168;0.68686754;0.68706006 +29451;0;-1.0317688;3.9195862;7.7635193 +29452;1;-0.74444646;4.4405136;8.715718 +29452;3;-0.2879486;0.12005615;0.20037842 +29454;0;-1.0556488;3.8815765;7.863678 +29454;12;0.1358412;0.19360544;0.68732595;0.68676573 +29454;3;-0.3251953;0.11883545;0.20526123 +29456;0;-1.0843201;3.8388062;7.997223 +29456;1;-0.74573654;4.42813;8.721906 +29457;3;-0.36186218;0.117614746;0.20648193 +29458;5;999.5873 +29458;4;21.342468;-25.041199;-48.29712 +29459;6;-1.6269329;-0.4439908;0.13476525 +29459;7;-0.113220304;-0.90162206;0.41744307;0.0;0.9861338;-0.050667156;0.15802811;0.0;-0.12133099 +29459;0;-1.0795288;3.8483124;8.09259 +29459;3;-0.39912415;0.11639404;0.2107544 +29460;12;0.1352002;0.19323477;0.68784106;0.6864809 +29461;0;-1.1225281;3.8197937;8.197525 +29461;1;-0.7468267;4.412609;8.729676 +29461;2;0.22008634;0.5159507;0.8918085; +29462;3;-0.4351654;0.11820984;0.21136475 +29463;0;-1.1177521;3.772293;8.297668 +29464;12;0.13444133;0.19273345;0.6883961;0.68621445 +29464;3;-0.4669342;0.12249756;0.21014404 +29466;0;-1.1034241;3.7485352;8.38829 +29466;1;-0.74802047;4.3939557;8.738977 +29466;3;-0.49990845;0.12371826;0.20709229 +29468;4;19.993591;-25.340271;-49.49646 +29468;6;-1.7363149;-0.41706792;0.13079244 +29468;7;-0.21546514;-0.90178525;0.37464416;0.0;0.9692042;-0.15064035;0.19481012;0.0;-0.11924035 +29468;0;-1.0890961;3.6962738;8.455063 +29469;3;-0.53167725;0.12005615;0.20465088 +29469;12;0.1335576;0.19211227;0.6889891;0.68596596 +29471;0;-1.0986481;3.6487732;8.626755 +29471;1;-0.7493555;4.3723726;8.749681 +29471;3;-0.56466675;0.11639404;0.20220947 +29473;0;-1.1320801;3.591751;8.698288 +29474;12;0.13255428;0.19137934;0.68960494;0.68574655 +29474;3;-0.5964203;0.11088562;0.19976807 +29475;0;-1.1273041;3.5062408;8.812759 +29476;1;-0.7505016;4.347809;8.761816 +29476;3;-0.6269684;0.10232544;0.1954956 +29478;4;20.292664;-25.190735;-49.647522 +29478;6;-1.8794236;-0.37588057;0.12722634 +29478;7;-0.34567317;-0.8862348;0.3083794;0.0;0.93090284;-0.28254464;0.23149163;0.0;-0.118025 +29478;0;-1.1225281;3.4302368;8.922455 +29478;3;-0.6544647;0.09439087;0.19303894 +29479;12;0.13144654;0.19051716;0.6902404;0.6855606 +29480;0;-1.1273041;3.3637238;9.041687 +29481;1;-0.7511458;4.3202434;8.775385 +29483;9;2AEC2AEBC4E1;-61;-2147483648 +29484;3;-0.68011475;0.08277893;0.19059753 +29484;2;0.3025571;0.7386527;0.10807991; +29484;0;-1.1320801;3.3114624;9.11322 +29484;12;0.13024716;0.18951711;0.6908915;0.68541086 +29484;3;-0.7033386;0.068740845;0.18632507 +29488;0;-1.0986481;3.268692;9.21814 +29488;3;-0.7222748;0.055908203;0.1796112 +29488;4;19.093323;-23.991394;-49.49646 +29488;6;-1.9718915;-0.3385458;0.11862371 +29488;7;-0.4238681;-0.8683775;0.25740302;0.0;0.8988187;-0.3682657;0.23770875;0.0;-0.11162825 +29488;0;-1.1225281;3.2211914;9.270599 +29488;3;-0.73509216;0.04185486;0.17288208 +29488;1;-0.750959;4.29047;8.789996 +29488;12;0.12900186;0.18839599;0.691544;0.68529737 +29490;0;-1.1129761;3.1594238;9.399368 +29490;1;-0.7499089;4.2589016;8.805424 +29490;3;-0.7442627;0.024749756;0.16555786 +29493;0;-1.0556488;3.0976562;9.466141 +29493;12;0.1277297;0.18716456;0.6921847;0.68522626 +29493;3;-0.7503662;0.009490967;0.16004944 +29497;0;-1.0413208;2.9978943;9.571075 +29497;3;-0.75341797;-0.0039520264;0.15394592 +29497;5;999.5873 +29497;1;-0.7477142;4.2262526;8.821327 +29498;4;21.043396;-23.991394;-49.046326 +29498;6;-2.0306497;-0.3018704;0.10837246 +29498;7;-0.47002923;-0.855597;0.21685529;0.0;0.87658876;-0.42374814;0.22809999;0.0;-0.10326966 +29498;0;-1.0365448;2.9693756;9.613998 +29498;3;-0.7546387;-0.018615723;0.14601135 +29498;12;0.12646852;0.18584415;0.6928015;0.6851962 +29499;0;-1.0030975;2.9123688;9.647385 +29500;1;-0.74456036;4.1930933;8.837403 +29500;2;0.27082223;1.0925884;-0.58831406; +29500;3;-0.74975586;-0.03387451;0.14172363 +29502;0;-0.98876953;2.8838654;9.709381 +29502;12;0.12523608;0.18446405;0.6933902;0.6852001 +29502;3;-0.7406006;-0.048538208;0.13684082 +29505;1;-0.74031967;4.1601458;8.853317 +29505;0;-0.9696655;2.8601227;9.723679 +29505;3;-0.72532654;-0.0619812;0.13378906 +29507;4;19.543457;-23.54126;-50.39673 +29507;6;-2.074517;-0.28473535;0.09939349 +29507;7;-0.50471693;-0.8405299;0.196902;0.0;0.8580159;-0.46325245;0.2218242;0.0;-0.09523452 +29508;0;-0.91711426;2.8078613;9.785706 +29508;3;-0.70700073;-0.076034546;0.1307373 +29509;12;0.12406299;0.18304761;0.69394636;0.6852302 +29509;0;-0.87890625;2.7603455;9.819077 +29509;1;-0.7349506;4.128259;8.868677 +29510;3;-0.6837921;-0.08886719;0.12768555 +29511;0;-0.835907;2.6938324;9.86676 +29512;12;0.1229797;0.18162757;0.69446987;0.68527305 +29512;3;-0.6550751;-0.09863281;0.12768555 +29514;1;-0.72854674;4.098198;8.883136 +29514;0;-0.816803;2.6795807;9.8619995 +29514;3;-0.6257477;-0.10534668;0.12583923 +29516;4;20.292664;-25.190735;-49.647522 +29516;6;-2.1671236;-0.26443914;0.08263466 +29516;7;-0.5775411;-0.79864264;0.16916348;0.0;0.8124646;-0.5420856;0.21457976;0.0;-0.079671465 +29516;0;-0.75468445;2.6510773;9.9096985 +29517;3;-0.5915375;-0.1108551;0.12583923 +29517;12;0.122013114;0.18024097;0.69495696;0.68531805 +29518;0;-0.74513245;2.6463165;9.928772 +29519;1;-0.7214842;4.070647;8.89637 +29519;2;0.08236736;1.3438816;-0.943985; +29519;3;-0.5530548;-0.11329651;0.12524414 +29521;0;-0.69737244;2.6320648;9.8619995 +29521;12;0.12117178;0.17892985;0.6954093;0.6853521 +29522;3;-0.5127411;-0.11512756;0.12583923 +29523;0;-0.6782532;2.6510773;9.881073 +29524;1;-0.71410763;4.0463233;8.908054 +29524;3;-0.4699707;-0.115737915;0.12768555 +29526;4;19.093323;-25.041199;-49.79706 +29526;6;-2.1840534;-0.26153767;0.06853415 +29526;7;-0.5886632;-0.789968;0.17154042;0.0;0.80566716;-0.55596226;0.2044662;0.0;-0.06615174 +29526;0;-0.64004517;2.6558228;9.885849 +29526;3;-0.42660522;-0.11756897;0.1282959 +29527;12;0.12046633;0.1777361;0.6958355;0.6853545 +29528;0;-0.63526917;2.67482;9.838165 +29528;1;-0.7065315;4.0256476;8.91802 +29528;3;-0.38323975;-0.11756897;0.1295166 +29531;0;-0.6161499;2.7175903;9.80954 +29531;12;0.11991203;0.1766794;0.6962173;0.6853371 +29531;3;-0.33680725;-0.11695862;0.13256836 +29533;0;-0.5922699;2.7223206;9.752304 +29533;1;-0.69884694;4.008842;8.926192 +29533;3;-0.29283142;-0.11390686;0.13317871 +29535;5;999.58606 +29535;4;18.94226;-25.190735;-50.39673 +29535;6;-2.1538854;-0.27174065;0.06065678 +29536;7;-0.5631749;-0.8041342;0.19026884;0.0;0.82427186;-0.5304008;0.19811855;0.0;-0.058395166 +29536;0;-0.5445099;2.774582;9.718933 +29536;3;-0.251297;-0.11022949;0.13439941 +29537;12;0.11951108;0.17577022;0.6965654;0.68528724 +29538;0;-0.5683899;2.8268433;9.675995 +29538;1;-0.6912862;3.99593;8.932568 +29538;2;-0.12938005;1.3141856;-0.88653946; +29538;3;-0.21096802;-0.10656738;0.13684082 +29540;0;-0.5397186;2.8838654;9.642624 +29541;12;0.11925357;0.17502177;0.69688076;0.6852031 +29541;3;-0.1706543;-0.10229492;0.13623047 +29543;0;-0.5062866;2.9503784;9.547226 +29543;1;-0.68397194;3.986679;8.9372635 +29543;3;-0.13339233;-0.09680176;0.13806152 +29545;4;20.742798;-24.290466;-50.247192 +29545;6;-1.992124;-0.29932454;0.052980084 +29545;7;-0.4226481;-0.87197125;0.2470523;0.0;0.9048802;-0.39078772;0.16875064;0.0;-0.050600693 +29546;0;-0.5206146;2.9978943;9.466141 +29546;3;-0.10223389;-0.08946228;0.13623047 +29547;12;0.119126536;0.17442769;0.6971686;0.68508387 +29547;0;-0.48718262;3.0738983;9.351685 +29547;1;-0.6771247;3.9807646;8.940421 +29548;3;-0.07597351;-0.08213806;0.13562012 +29550;0;-0.5015106;3.1594238;9.270599 +29550;12;0.11911087;0.17398319;0.69742686;0.68493676 +29550;3;-0.049087524;-0.07481384;0.13256836 +29552;0;-0.49195862;3.235443;9.203827 +29552;1;-0.67093235;3.9774537;8.942361 +29552;3;-0.03137207;-0.063201904;0.13012695 +29554;4;19.093323;-23.390198;-50.247192 +29554;6;-1.8733101;-0.33759326;0.053400714 +29554;7;-0.31437212;-0.9007084;0.29982445;0.0;0.947963;-0.2811045;0.1494874;0.0;-0.050362542 +29555;0;-0.5158386;3.325714;9.094147 +29555;3;-0.01550293;-0.055267334;0.12768555 +29555;12;0.11916988;0.17366551;0.69766045;0.6847692 +29557;0;-0.48239136;3.3827057;8.998749 +29557;1;-0.66571957;3.9760835;8.94336 +29557;2;-0.21995229;0.8775296;-0.3955164; +29558;3;-0.005126953;-0.048538208;0.122177124 +29559;0;-0.47763062;3.4919891;8.879532 +29560;12;0.11926952;0.17345846;0.6978714;0.6845894 +29560;3;3.8146973E-4;-0.042434692;0.11729431 +29562;0;-0.5062866;3.5632477;8.726913 +29562;1;-0.661278;3.9759073;8.943768 +29562;3;0.0022125244;-0.038772583;0.1124115 +29564;4;19.093323;-24.290466;-50.9964 +29564;6;-1.746462;-0.38705823;0.057949442 +29564;7;-0.19599548;-0.9117723;0.36091122;0.0;0.97913694;-0.16183518;0.12288226;0.0;-0.053632516 +29565;0;-0.5206146;3.6250305;8.631531 +29565;3;0.0016021729;-0.03694153;0.10569763 +29565;12;0.119386345;0.17332642;0.69806063;0.6844094 +29567;0;-0.5253906;3.7152863;8.540909 +29567;1;-0.6574275;3.97616;8.943939 +29567;3;-0.001449585;-0.04121399;0.10140991 +29569;0;-0.48718262;3.7865448;8.478897 +29569;12;0.119503774;0.17322788;0.6982298;0.68424135 +29570;3;-0.008163452;-0.04548645;0.0953064 +29571;0;-0.5015106;3.8768158;8.402588 +29572;1;-0.6535144;3.9763646;8.944136 +29572;3;-0.017944336;-0.052200317;0.08859253 +29574;5;999.58606 +29574;4;19.543457;-22.790527;-50.09613 +29574;6;-1.5280994;-0.43160412;0.059614535 +29574;7;0.0177072;-0.90746814;0.41974765;0.0;0.9983777;0.038769692;0.041700732;0.0;-0.05411557 +29574;0;-0.5110626;3.9670868;8.335815 +29574;3;-0.028320312;-0.060150146;0.079422 +29575;12;0.11962541;0.17312361;0.6983805;0.6840927 +29576;0;-0.5301666;4.019348;8.283371 +29576;1;-0.64937323;3.976008;8.944595 +29577;2;-0.20195246;0.24805403;0.39269352; +29577;3;-0.040542603;-0.06686401;0.07392883 +29578;0;-0.5445099;4.0668488;8.2118225 +29579;3;-0.053970337;-0.07235718;0.06719971 +29579;12;0.11973886;0.17298207;0.6985095;0.6839769 +29581;0;-0.5636139;4.142868;8.130753 +29581;1;-0.64497495;3.9747918;8.945455 +29581;3;-0.064971924;-0.0790863;0.062316895 +29583;4;19.093323;-24.7406;-50.247192 +29583;6;-1.4902234;-0.4702742;0.06920808 +29583;7;0.049059466;-0.8885519;0.45614523;0.0;0.9968915;0.071748555;0.03254522;0.0;-0.06164589 +29584;0;-0.5062866;4.176132;8.073517 +29584;3;-0.07841492;-0.08824158;0.055603027 +29585;12;0.11983627;0.17279258;0.69862795;0.6838867 +29586;0;-0.45851135;4.2283936;8.073517 +29595;1;-0.6401003;3.972674;8.946744 +29595;12;0.119923264;0.17254281;0.6987263;0.6838341 +29596;1;-0.6349294;3.9695358;8.948506 +29596;3;-0.0900116;-0.09436035;0.0476532 +29596;0;-0.44418335;4.2711487;8.059219 +29596;3;-0.10467529;-0.09741211;0.04032898 +29596;0;-0.43463135;4.3043976;8.030594 +29596;3;-0.12055969;-0.09741211;0.0317688 +29596;4;18.492126;-25.190735;-51.597595 +29596;6;-1.4080445;-0.49142236;0.05406919 +29596;7;0.1366328;-0.87001145;0.47372088;0.0;0.98947513;0.14285962;-0.023020428;0.0;-0.047647554 +29596;12;0.11998758;0.17223802;0.6988065;0.6838176 +29599;17;0;38dead6d7725;0;0;0; +29599;17;1;38dead6d60ff;8302;1048;-66; +29599;17;1;1c1bb5efa29a;7815;1147;-75; +29600;17;1;1c1bb5ecd182;866;1126;-56; +29600;2;-0.20727557;-0.24073839;0.86659527; +29600;0;-0.42507935;4.3281555;8.011505 +29600;3;-0.13705444;-0.09741211;0.023223877 +29600;0;-0.48718262;4.3376617;7.9542847 +29600;3;-0.15232849;-0.09741211;0.016494751 +29600;1;-0.6300412;3.9650972;8.950819 +29600;12;0.119996086;0.17189038;0.69887054;0.6838382 +29600;0;-0.5110626;4.375656;7.939972 +29600;3;-0.16638184;-0.099853516;0.0116119385 +29601;0;-0.5015106;4.3851776;7.9304504 +29601;3;-0.18164062;-0.09863281;0.007949829 +29601;1;-0.625438;3.9593985;8.953664 +29603;4;19.392395;-23.091125;-49.49646 +29603;6;-1.3151714;-0.50426406;0.0631545 +29603;7;0.22284324;-0.8470804;0.48248914;0.0;0.9732871;0.22137795;-0.060862593;0.0;-0.05525694 +29604;0;-0.47283936;4.3994293;7.939972 +29604;3;-0.19447327;-0.09802246;0.0030670166 +29604;12;0.119953565;0.17149541;0.6989247;0.68388945 +29606;0;-0.47763062;4.404175;7.9161377 +29608;3;-0.20730591;-0.099853516;-0.0012054443 +29608;1;-0.62096876;3.9524817;8.957031 +29608;0;-0.47763062;4.4184265;7.887512 +29608;3;-0.21708679;-0.099243164;-0.0036468506 +29608;12;0.119862355;0.17105718;0.6989759;0.6839629 +29612;1;-0.6165926;3.9445405;8.960833 +29612;0;-0.45851135;4.404175;7.9208984 +29612;3;-0.22990417;-0.099243164;-0.009155273 +29613;5;999.58606 +29613;4;20.593262;-23.54126;-51.597595 +29613;6;-1.2939247;-0.50674295;0.057821754 +29613;7;0.24591196;-0.8410313;0.48186478;0.0;0.96797436;0.2389961;-0.07685407;0.0;-0.050527122 +29613;0;-0.41552734;4.470688;7.973358 +29613;3;-0.24212646;-0.10168457;-0.009765625 +29613;12;0.119732805;0.17057738;0.6990238;0.6840564 +29615;1;-0.6122298;3.9355822;8.96507 +29615;2;-0.20638156;-0.45485902;1.0144262; +29615;0;-0.41552734;4.456436;7.978134 +29615;3;-0.2531128;-0.10290527;-0.013427734 +29619;12;0.119567595;0.17005572;0.6990701;0.6841679 +29619;0;-0.3056488;4.470688;7.9685974 +29619;3;-0.26533508;-0.10107422;-0.016479492 +29623;13;188.65599 +29623;1;-0.60761034;3.9256494;8.969737 +29623;0;-0.12411499;4.503952;8.001968 +29623;3;-0.27633667;-0.10168457;-0.01953125 +29623;4;18.193054;-23.840332;-51.597595 +29623;6;-1.3086984;-0.51260805;0.015509314 +29623;7;0.2517297;-0.8417064;0.47766355;0.0;0.96770316;0.22580385;-0.11208533;0.0;-0.013515334 +29623;12;0.11937067;0.16948922;0.6991179;0.68429404 +29624;0;-0.36297607;4.5086975;8.111679 +29624;3;-0.2861023;-0.10290527;-0.026245117 +29625;1;-0.603395;3.9145842;8.974857 +29625;0;-0.47283936;4.480179;8.159363 +29625;3;-0.29588318;-0.0949707;-0.030532837 +29628;12;0.119116515;0.16889189;0.6991587;0.6844443 +29629;0;-0.5397186;4.480179;8.202286 +29629;3;-0.3068695;-0.09008789;-0.03175354 +29630;1;-0.59997666;3.902719;8.980252 +29631;0;-0.5397186;4.437439;8.1689 +29631;3;-0.3166504;-0.09375;-0.03112793 +29632;4;18.34259;-23.690796;-51.446533 +29632;6;-1.2955703;-0.49670333;0.06597404 +29632;7;0.24093987;-0.8460702;0.47551385;0.0;0.968808;0.23892404;-0.065777175;0.0;-0.057959564 +29632;0;-0.49195862;4.44693;8.14505 +29633;3;-0.32582092;-0.10534668;-0.02809143 +29633;12;0.11881249;0.16828744;0.6991959;0.684608 +29635;1;-0.596105;3.889871;8.986083 +29635;2;-0.24255115;-0.56700087;0.8530712; +29635;0;-0.47763062;4.4991913;8.197525 +29635;3;-0.3313141;-0.11695862;-0.02809143 +29637;0;-0.39163208;4.5181885;8.35968 +29638;3;-0.33558655;-0.12489319;-0.026870728 +29638;12;0.118488446;0.16762598;0.69924265;0.68477863 +29640;1;-0.5911249;3.876503;8.992186 +29640;0;-0.35820007;4.5086975;8.464584 +29640;3;-0.3410797;-0.12489319;-0.03175354 +29642;4;20.593262;-23.54126;-52.046204 +29642;6;-1.3535115;-0.48905742;0.042292267 +29642;7;0.19599064;-0.86201876;0.46745187;0.0;0.9798952;0.19030805;-0.059901696;0.0;-0.03732347 +29642;0;-0.3104248;4.5419617;8.588608 +29642;3;-0.34658813;-0.123672485;-0.037246704 +29643;12;0.11818404;0.16690354;0.6992931;0.68495613 +29644;1;-0.58604217;3.8625574;8.998517 +29644;0;-0.32476807;4.4849396;8.6410675 +29644;3;-0.3520813;-0.11878967;-0.04273987 +29647;12;0.11786163;0.16615519;0.6993354;0.68515044 +29647;0;-0.3199768;4.465927;8.664902 +29647;3;-0.353302;-0.1126709;-0.04763794 +29649;1;-0.5815407;3.8481405;9.004984 +29649;0;-0.3390808;4.4897003;8.664902 +29649;3;-0.35513306;-0.10900879;-0.053131104 +29652;5;999.58606 +29652;4;18.792725;-23.690796;-50.546265 +29652;6;-1.421802;-0.47774783;0.03911272 +29652;7;0.13055065;-0.87819403;0.46014315;0.0;0.9908333;0.13182282;-0.029529758;0.0;-0.03472452 +29653;0;-0.40119934;4.470688;8.741211 +29653;3;-0.35269165;-0.10597229;-0.05496216 +29653;12;0.11750351;0.165411;0.699365;0.6853618 +29656;2;-0.2783631;-0.63823605;0.37693405; +29657;1;-0.5776758;3.833559;9.01145 +29657;0;-0.43940735;4.4516907;8.850922 +29657;3;-0.35025024;-0.10290527;-0.05923462 +29657;12;0.11711775;0.1646785;0.69938254;0.6855863 +29657;0;-0.44418335;4.4279175;8.931976 +29657;3;-0.34536743;-0.09802246;-0.061065674 +29658;1;-0.57425815;3.8190932;9.017809 +29658;0;-0.45851135;4.4089203;8.994003 +29658;3;-0.3410797;-0.091308594;-0.05923462 +29661;4;19.543457;-23.840332;-51.597595 +29661;6;-1.4714408;-0.45526958;0.050935574 +29662;7;0.07678704;-0.8937132;0.44201875;0.0;0.9959984;0.08908874;0.007103782;0.0;-0.04572763 +29662;0;-0.43940735;4.4184265;9.051224 +29662;12;0.11672385;0.16396683;0.6993919;0.68581444 +29662;3;-0.3361969;-0.08580017;-0.060455322 +29663;1;-0.5713389;3.80497;9.023961 +29663;0;-0.46328735;4.4231873;9.117996 +29663;3;-0.3313141;-0.08030701;-0.062286377 +29666;0;-0.49195862;4.4421844;9.156143 +29666;12;0.116323665;0.16328982;0.6993986;0.6860371 +29668;3;-0.32337952;-0.07298279;-0.06289673 +29668;0;-0.5349426;4.3994293;9.184769 +29668;3;-0.3166504;-0.06686401;-0.06411743 +29668;1;-0.56905985;3.7912903;9.029861 +29670;4;17.442322;-23.390198;-52.197266 +29670;6;-1.4451963;-0.44604093;0.05817664 +29670;7;0.10017272;-0.8950555;0.43455857;0.0;0.9935863;0.113013975;0.0037360452;0.0;-0.052455157 +29670;9;52ADB5BC186F;-92;-2147483648 +29671;0;-0.5062866;4.404175;9.242004 +29671;3;-0.3068695;-0.060150146;-0.06718445 +29671;12;0.11591691;0.16265161;0.6993992;0.686257 +29672;1;-0.5673995;3.7782288;9.0354395 +29672;0;-0.5253906;4.413666;9.270599 +29673;2;-0.1458317;-0.6206553;-0.09492016; +29673;3;-0.29771423;-0.055267334;-0.0690155 +29676;0;-0.5540619;4.3946686;9.346909 +29676;3;-0.2879486;-0.0460968;-0.07145691 +29676;12;0.115510635;0.16206141;0.69939184;0.6864725 +29684;1;-0.56643045;3.7659123;9.04064 +29684;1;-0.5662366;3.7544768;9.045406 +29685;12;0.115109555;0.16152503;0.6993729;0.6866856 +29685;0;-0.57315063;4.3851776;9.356461 +29685;3;-0.27694702;-0.039993286;-0.07267761 +29686;4;18.94226;-21.890259;-51.14746 +29686;6;-1.4263693;-0.43755922;0.061180755 +29686;7;0.11801792;-0.8963581;0.42733374;0.0;0.9914659;0.13036598;-3.653802E-4;0.0;-0.055382263 +29686;0;-0.5683899;4.389923;9.394608 +29686;3;-0.2677765;-0.030212402;-0.07695007 +29686;0;-0.59706116;4.413666;9.365997 +29686;12;0.11471395;0.16105238;0.6993418;0.6868944 +29687;3;-0.2561798;-0.025939941;-0.07939148 +29687;0;-0.6113739;4.3946686;9.389847 +29688;3;-0.24639893;-0.020446777;-0.08244324 +29688;0;-0.62094116;4.375656;9.385086 +29688;3;-0.2341919;-0.018615723;-0.086120605 +29688;1;-0.5667071;3.743925;9.04975 +29689;4;18.492126;-23.54126;-52.796936 +29689;6;-1.4780585;-0.43543684;0.06606625 +29689;7;0.06467574;-0.9027898;0.4251913;0.0;0.9961095;0.083963655;0.026758334;0.0;-0.05985777 +29689;0;-0.65437317;4.3994293;9.375534 +29689;3;-0.22319031;-0.01739502;-0.08856201 +29690;5;999.59326 +29690;12;0.11432902;0.16063747;0.6992953;0.6871031 +29692;0;-0.68782043;4.323395;9.4375305 +29692;3;-0.21463013;-0.01739502;-0.09283447 +29692;1;-0.5675828;3.7343054;9.053669 +29692;2;-0.020454586;-0.6330607;-0.33898258; +29695;0;-0.68782043;4.3281555;9.466141 +29695;3;-0.2048645;-0.016174316;-0.09649658 +29695;12;0.1139646;0.16026911;0.69923085;0.6873152 +29696;9;2AEC2AEBC4E1;-55;-2147483648 +29697;1;-0.5686578;3.725373;9.057281 +29697;0;-0.68304443;4.3329163;9.466141 +29697;3;-0.19508362;-0.016174316;-0.101379395 +29698;4;18.792725;-23.390198;-51.74713 +29698;6;-1.5229441;-0.42827997;0.07203175 +29699;7;0.017854773;-0.90864015;0.4171982;0.0;0.99769485;0.043513708;0.05207282;0.0;-0.065469295 +29699;0;-0.71647644;4.347168;9.4756775 +29699;3;-0.18470764;-0.013717651;-0.10505676 +29700;12;0.11362345;0.15993606;0.699151;0.68753046 +29701;0;-0.73080444;4.389923;9.4852295 +29701;1;-0.5700002;3.7173789;9.06048 +29701;3;-0.17370605;-0.012496948;-0.11054993 +29704;12;0.113312624;0.15964605;0.6990451;0.6877568 +29704;0;-0.7260437;4.3614197;9.46138 +29704;3;-0.16087341;-0.011276245;-0.114212036 +29706;0;-0.69737244;4.366165;9.466141 +29706;1;-0.57161856;3.7103508;9.063258 +29706;3;-0.14927673;-0.011886597;-0.1184845 +29708;4;18.34259;-23.091125;-50.247192 +29708;6;-1.5347425;-0.4311335;0.07353735 +29709;7;0.005264909;-0.9079022;0.41914892;0.0;0.9977559;0.03274753;0.058400393;0.0;-0.06674794 +29709;0;-0.6925812;4.3614197;9.4423065 +29709;3;-0.13705444;-0.015548706;-0.12277222 +29709;12;0.11303209;0.15940021;0.6989165;0.68799067 +29710;0;-0.73080444;4.3329163;9.504303 +29711;1;-0.57329774;3.7043302;9.065616 +29711;2;0.07396191;-0.632128;-0.4159336; +29711;3;-0.12606812;-0.018615723;-0.12704468 +29713;0;-0.76901245;4.3329163;9.470917 +29713;12;0.11278732;0.15919448;0.69876426;0.6882331 +29713;3;-0.11506653;-0.021057129;-0.13131714 +29715;0;-0.7594757;4.366165;9.4470825 +29715;1;-0.5749263;3.6992803;9.0675745 +29716;3;-0.10406494;-0.025939941;-0.1355896 +29717;4;18.94226;-23.240662;-52.046204 +29717;6;-1.4871235;-0.43170345;0.080220096 +29717;7;0.04989421;-0.90507674;0.42231116;0.0;0.996099;0.075907595;0.044996742;0.0;-0.07278212 +29718;0;-0.75468445;4.313904;9.4470825 +29718;3;-0.0912323;-0.030822754;-0.14231873 +29718;12;0.112586856;0.1590211;0.69859093;0.6884818 +29720;0;-0.75468445;4.3376617;9.40892 +29720;1;-0.57634354;3.695193;9.06915 +29720;3;-0.08024597;-0.035720825;-0.14720154 +29722;0;-0.7594757;4.323395;9.4423065 +29723;12;0.11243585;0.1588742;0.69838655;0.6887477 +29723;3;-0.064971924;-0.039993286;-0.1502533 +29725;13;281.51 +29727;0;-0.7738037;4.3186646;9.427994 +29727;1;-0.5775324;3.692161;9.07031 +29728;0;-0.7403717;4.3043976;9.427994 +29728;3;-0.052139282;-0.043045044;-0.15454102 +29728;3;-0.03993225;-0.043655396;-0.15820312 +29728;4;19.543457;-23.240662;-52.796936 +29728;6;-1.4872279;-0.42713147;0.07836825 +29728;7;0.050896462;-0.9069815;0.41808382;0.0;0.9961587;0.07597198;0.043542046;0.0;-0.071254484 +29729;12;0.11233764;0.15875547;0.69815403;0.68902683 +29730;5;999.59326 +29730;1;-0.57862335;3.690178;9.071047 +29730;0;-0.76901245;4.280655;9.413681 +29730;3;-0.025878906;-0.043045044;-0.16064453 +29730;2;0.12109041;-0.6172385;-0.37478924; +29732;0;-0.7499237;4.2616425;9.404144 +29732;12;0.11228658;0.15867034;0.69789094;0.6893213 +29733;3;-0.012451172;-0.042434692;-0.16064453 +29735;1;-0.57982236;3.6893926;9.071289 +29735;0;-0.8215637;4.2426453;9.404144 +29735;3;0.0034332275;-0.04121399;-0.16308594 +29737;4;19.543457;-22.790527;-52.3468 +29737;6;-1.4847066;-0.42238358;0.08714064 +29737;7;0.05011234;-0.9087364;0.41435102;0.0;0.9955838;0.07842663;0.05159419;0.0;-0.07938168 +29737;0;-0.8072357;4.2711487;9.361221 +29737;3;0.017486572;-0.038772583;-0.16247559 +29738;12;0.11227628;0.1586382;0.6976211;0.68960345 +29739;0;-0.7929077;4.252136;9.365997 +29739;1;-0.58120376;3.6899014;9.070994 +29739;3;0.029708862;-0.03387451;-0.16247559 +29742;0;-0.826355;4.2854004;9.318314 +29742;12;0.11231076;0.15866089;0.6973342;0.6898827 +29742;3;0.042526245;-0.031433105;-0.16308594 +29744;0;-0.8120117;4.3043976;9.299225 +29745;1;-0.5829389;3.6915853;9.070198 +29745;3;0.055358887;-0.02532959;-0.16308594 +29747;4;18.193054;-23.54126;-51.597595 +29747;6;-1.511519;-0.43206468;0.08709944 +29747;7;0.022655617;-0.9065081;0.42158008;0.0;0.9966175;0.053798497;0.06212291;0.0;-0.0789953 +29747;0;-0.7881317;4.290146;9.270599 +29748;3;0.06636047;-0.021057129;-0.16064453 +29748;12;0.11237808;0.15874043;0.6970373;0.6901535 +29749;0;-0.8072357;4.2949066;9.251541 +29749;1;-0.5850436;3.6943636;9.068931 +29749;2;0.15589947;-0.5674391;-0.27502918; +29749;3;0.078567505;-0.016174316;-0.16064453 +29751;0;-0.840683;4.342407;9.251541 +29751;12;0.11247118;0.15887909;0.69673437;0.6904121 +29752;3;0.08895874;-0.0131073;-0.16064453 +29753;0;-0.874115;4.356659;9.237228 +29754;1;-0.5875762;3.6982036;9.067203 +29754;3;0.09689331;-0.00944519;-0.15942383 +29756;4;19.84253;-21.440125;-52.046204 +29756;6;-1.3451132;-0.43898708;0.09434862 +29756;7;0.18375158;-0.8822286;0.43348387;0.0;0.9792668;0.20255479;-0.00286562;0.0;-0.08527608 +29756;0;-0.888443;4.389923;9.222916 +29757;3;0.10055542;-0.004562378;-0.15757751 +29757;12;0.11258844;0.15907463;0.696426;0.69065917 +29758;0;-0.874115;4.4516907;9.146606 +29758;1;-0.59043634;3.7027996;9.06514 +29759;3;0.10240173;-0.004562378;-0.15879822 +29761;0;-0.888443;4.44693;9.0607605 +29761;12;0.112723716;0.15931295;0.6961164;0.69089425 +29761;3;0.106674194;-0.0051727295;-0.16064453 +29763;0;-0.99354553;4.4516907;9.0607605 +29763;1;-0.59350234;3.7077296;9.062924 +29764;3;0.107284546;-0.004562378;-0.16186523 +29766;4;19.242859;-23.54126;-52.046204 +29766;6;-1.3891432;-0.4543149;0.109217316 +29766;7;0.13253196;-0.8837774;0.448746;0.0;0.98632777;0.16233036;0.028399047;0.0;-0.09794352 +29766;0;-1.0843201;4.5514526;8.979691 +29766;3;0.10362244;-0.0033416748;-0.16308594 +29767;12;0.11286097;0.15957531;0.6958007;0.69112915 +29767;5;999.59326 +29768;0;-0.94099426;4.660721;8.84137 +29768;1;-0.5967606;3.7129352;9.060579 +29768;2;0.26755697;-0.731931;-0.048347473; +29769;3;0.10177612;-0.017990112;-0.16918945 +29770;0;-0.72125244;4.5752106;8.970154 +29771;12;0.11301354;0.15983975;0.6954811;0.69136477 +29771;3;0.10484314;-0.030212402;-0.17224121 +29773;0;-0.74513245;4.4231873;8.974915 +29773;1;-0.5989283;3.7178972;9.058401 +29773;3;0.1078949;-0.030822754;-0.17224121 +29775;4;18.94226;-23.240662;-52.796936 +29775;6;-1.365178;-0.45654184;0.08283393 +29775;7;0.1677655;-0.87867475;0.44697365;0.0;0.98302567;0.18326166;-0.008703858;0.0;-0.07426528 +29775;0;-0.9457855;4.4611816;8.898605 +29775;3;0.10177612;-0.036315918;-0.1685791 +29776;12;0.11318441;0.16006315;0.6951442;0.6916239 +29778;0;-1.0174255;4.61322;8.903381 +29778;1;-0.6010086;3.7229638;9.056183 +29778;3;0.09567261;-0.051589966;-0.1685791 +29780;0;-0.89323425;4.6892242;8.989227 +29780;12;0.11337691;0.16028453;0.69480217;0.69188476 +29781;3;0.08773804;-0.06625366;-0.17286682 +29782;0;-0.826355;4.5847015;9.027374 +29783;1;-0.6018171;3.7275054;9.05426 +29783;3;0.0773468;-0.0766449;-0.17346191 +29787;4;19.093323;-23.390198;-52.946472 +29787;6;-1.3150898;-0.46823865;0.091284394 +29787;7;0.21207276;-0.8633492;0.4578791;0.0;0.9738624;0.22570488;-0.025481768;0.0;-0.08134588 +29787;0;-0.8120117;4.503952;9.008301 +29787;3;0.06758118;-0.08457947;-0.17346191 +29788;12;0.113589816;0.16042982;0.69446003;0.69215965 +29788;1;-0.60173947;3.7310383;9.052811 +29789;2;0.19767708;-0.79976606;0.07474518; +29789;0;-0.897995;4.470688;8.989227 +29789;3;0.06085205;-0.09680176;-0.17346191 +29791;0;-0.91233826;4.5419617;8.994003 +29791;12;0.113800496;0.16051042;0.69411397;0.6924534 +29791;3;0.053527832;-0.10719299;-0.17286682 +29793;1;-0.6007719;3.7339778;9.051662 +29793;0;-0.864563;4.5894623;9.051224 +29793;3;0.04374695;-0.11817932;-0.17408752 +29796;4;18.94226;-21.890259;-52.046204 +29796;6;-1.250341;-0.4674459;0.09522998 +29796;7;0.27290615;-0.84727556;0.45568246;0.0;0.9582885;0.2812063;-0.051052213;0.0;-0.08488548 +29796;0;-0.855011;4.5847015;9.08461 +29797;12;0.1140255;0.1605294;0.6937686;0.692758 +29797;3;0.035812378;-0.13040161;-0.17468262 +29801;1;-0.5987818;3.7361128;9.050913 +29803;12;0.11425505;0.16047457;0.6934231;0.6930788 +29806;1;-0.59597003;3.7375107;9.050521 +29806;12;0.114489995;0.16036385;0.69307816;0.69341063 +29807;9;2AEC2AEBC4E1;-63;-2147483648 +29807;0;-0.8120117;4.556198;9.146606 +29808;3;0.030319214;-0.13955688;-0.17468262 +29808;0;-0.802475;4.465927;9.222916 +29808;3;0.023590088;-0.14506531;-0.17408752 +29808;0;-0.8072357;4.470688;9.270599 +29808;3;0.015655518;-0.14933777;-0.17346191 +29808;4;19.543457;-22.491455;-52.3468 +29808;6;-1.3696587;-0.447866;0.08685575 +29808;7;0.16222334;-0.88320154;0.4400439;0.0;0.9836512;0.18008007;-0.0011912212;0.0;-0.07819105 +29808;0;-0.7785797;4.44693;9.265839 +29808;3;0.0101623535;-0.15299988;-0.17408752 +29808;1;-0.5927299;3.7382605;9.050425 +29808;2;0.17568368;-0.76589155;-0.121108055; +29809;12;0.11471404;0.1602124;0.6927374;0.693749 +29810;5;999.59326 +29810;0;-0.7738037;4.437439;9.280151 +29817;3;0.002822876;-0.15605164;-0.17408752 +29817;0;-0.8072357;4.3946686;9.318314 +29817;3;3.8146973E-4;-0.1603241;-0.17286682 +29818;1;-0.58919764;3.7385046;9.050554 +29818;12;0.11493362;0.16003078;0.69239914;0.69409215 +29819;1;-0.5850711;3.7383924;9.050869 +29823;12;0.115155056;0.15980901;0.6920632;0.69444144 +29823;0;-0.7642517;4.465927;9.251541 +29824;3;-0.002670288;-0.16644287;-0.17164612 +29824;4;18.34259;-22.04132;-53.697205 +29824;6;-1.2903315;-0.4484005;0.08242089 +29824;7;0.24156617;-0.8659313;0.43795982;0.0;0.9675442;0.2494381;-0.04048246;0.0;-0.07418884 +29824;0;-0.7594757;4.4184265;9.308762 +29824;3;-0.0063476562;-0.1749878;-0.17286682 +29824;0;-0.7642517;4.3186646;9.38031 +29824;3;-0.009384155;-0.18354797;-0.17164612 +29824;0;-0.76901245;4.266403;9.46138 +29824;3;-0.010604858;-0.18659973;-0.17102051 +29824;1;-0.58030784;3.737856;9.051397 +29824;0;-0.7642517;4.266403;9.547226 +29824;3;-0.013656616;-0.18232727;-0.1685791 +29824;4;19.093323;-22.04132;-52.946472 +29824;6;-1.4391117;-0.41906258;0.079879284 +29824;7;0.09869809;-0.905562;0.4125725;0.0;0.9924443;0.119942665;0.025845565;0.0;-0.07288981 +29824;0;-0.7642517;4.280655;9.599686 +29824;3;-0.014877319;-0.1768341;-0.16369629 +29825;17;1;38dead6d7725;12268;3270;-77; +29826;17;1;38dead6d60ff;9842;1966;-68; +29826;17;1;1c1bb5efa29a;4060;1606;-76; +29827;17;1;1c1bb5ecd182;-806;393;-44; +29827;12;0.11538816;0.15954998;0.6917274;0.6947968 +29827;1;-0.5757065;3.7371545;9.05198 +29827;0;-0.7976837;4.313904;9.54245 +29827;2;0.14125597;-0.5971587;-0.38063145; +29827;3;-0.014877319;-0.16949463;-0.15820312 +29828;0;-0.7976837;4.3376617;9.580612 +29828;3;-0.014877319;-0.16522217;-0.1526947 +29828;12;0.1156078;0.15929554;0.6914024;0.6951421 +29831;13;299.934 +29832;0;-0.835907;4.299652;9.566299 +29832;3;-0.010009766;-0.16217041;-0.14720154 +29832;1;-0.57149374;3.7364817;9.052525 +29832;4;18.043518;-22.340393;-51.74713 +29832;6;-1.4732147;-0.42098302;0.087159015 +29832;7;0.061653074;-0.9083457;0.4136507;0.0;0.9949305;0.088920236;0.046971492;0.0;-0.079448275 +29833;0;-0.8215637;4.2616425;9.618759 +29833;3;-0.005722046;-0.159729;-0.14047241 +29833;12;0.1158061;0.15905665;0.6910996;0.6954649 +29835;0;-0.86935425;4.190384;9.59491 +29835;1;-0.56739306;3.7360306;9.052969 +29835;3;0.0022125244;-0.15483093;-0.13375854 +29837;0;-0.897995;4.1618805;9.656921 +29838;12;0.116002545;0.15883422;0.6908144;0.6957663 +29838;3;0.009536743;-0.15116882;-0.12643433 +29840;0;-0.92666626;4.142868;9.680771 +29840;1;-0.56345147;3.7361028;9.053185 +29842;3;0.01626587;-0.14628601;-0.12033081 +29843;4;20.4422;-23.091125;-54.14734 +29843;6;-1.5283924;-0.40271816;0.095431596 +29843;7;0.0048869844;-0.91917205;0.3938258;0.0;0.99613804;0.038999822;0.07866279;0.0;-0.08766378 +29843;0;-0.9219055;4.1571198;9.685532 +29844;3;0.02420044;-0.13955688;-0.114212036 +29844;5;999.5974 +29849;0;-0.9648895;4.142868;9.690308 +29849;3;0.030319214;-0.13101196;-0.10810852 +29849;0;-0.9601135;4.1571198;9.666458 +29849;3;0.038253784;-0.124298096;-0.10322571 +29849;12;0.11621137;0.15864217;0.6905471;0.69604045 +29849;2;0.26367682;-0.46930218;-0.58713055; +29849;1;-0.55978805;3.7368214;9.053117 +29849;12;0.11642918;0.15849024;0.6902997;0.69628406 +29849;0;-0.95054626;4.1143646;9.733231 +29849;1;-0.55659896;3.7381597;9.052761 +29850;3;0.04496765;-0.11512756;-0.09832764 +29851;4;18.792725;-22.340393;-52.197266 +29851;6;-1.5515863;-0.39823276;0.09735118 +29852;7;-0.01856739;-0.92157763;0.38774973;0.0;0.99580544;0.017705688;0.089765824;0.0;-0.089591555 +29852;0;-0.9648895;4.1143646;9.723679 +29852;3;0.049865723;-0.10719299;-0.09466553 +29852;12;0.116647184;0.15838124;0.6900716;0.6964985 +29854;0;-0.97442627;4.1143646;9.747543 +29854;1;-0.553981;3.7400503;9.05214 +29854;3;0.05657959;-0.09741211;-0.089782715 +29856;0;-1.0030975;4.1048584;9.718933 +29857;12;0.11686161;0.15831983;0.6898573;0.6966887 +29857;3;0.06452942;-0.087020874;-0.08427429 +29859;0;-1.0317688;4.123871;9.723679 +29859;1;-0.5520811;3.742538;9.051228 +29859;3;0.070632935;-0.07847595;-0.07817078 +29861;4;18.792725;-22.340393;-52.197266 +29861;6;-1.5437764;-0.39910486;0.10571334 +29861;7;-0.014122295;-0.9210728;0.38913405;0.0;0.99516225;0.024893366;0.09503814;0.0;-0.097223915 +29861;0;-1.0604248;4.109619;9.685532 +29861;3;0.0773468;-0.071762085;-0.07450867 +29862;12;0.117068276;0.15831232;0.68965846;0.6968526 +29863;0;-1.0556488;4.1048584;9.685532 +29864;1;-0.5507909;3.74564;9.050022 +29864;2;0.39443785;-0.36699295;-0.66625214; +29864;3;0.086517334;-0.06625366;-0.070236206 +29866;0;-1.0604248;4.095352;9.680771 +29866;12;0.11727197;0.15835275;0.68947697;0.69698876 +29867;3;0.09628296;-0.06625366;-0.065963745 +29868;0;-1.0604248;4.11911;9.642624 +29869;1;-0.54974616;3.7495244;9.048478 +29869;3;0.10484314;-0.06625366;-0.06289673 +29871;4;19.093323;-21.740723;-52.946472 +29871;6;-1.4670063;-0.40154654;0.10953249 +29871;7;0.06048843;-0.9155044;0.3977348;0.0;0.9930847;0.09536289;0.06847528;0.0;-0.10061855 +29871;0;-1.0652008;4.11911;9.613998 +29872;3;0.11462402;-0.06869507;-0.060455322 +29872;12;0.117494345;0.15843637;0.68930453;0.69710284 +29873;0;-1.0413208;4.1476135;9.637848 +29874;1;-0.5485307;3.7542598;9.046589 +29874;3;0.1237793;-0.07298279;-0.05618286 +29876;0;-1.0652008;4.133362;9.59491 +29876;12;0.11775296;0.15854694;0.6891355;0.69720113 +29877;3;0.13354492;-0.07847595;-0.05557251 +29878;0;-1.0413208;4.1618805;9.580612 +29878;1;-0.546861;3.759855;9.044365 +29878;3;0.14393616;-0.08518982;-0.054351807 +29880;4;18.34259;-23.091125;-52.946472 +29880;6;-1.5343834;-0.40766934;0.10826543 +29880;7;-0.0066200993;-0.9174388;0.39782184;0.0;0.9950456;0.03342144;0.093633436;0.0;-0.09919873 +29881;0;-1.0269775;4.190384;9.547226 +29881;3;0.15431213;-0.09190369;-0.05496216 +29882;12;0.11806175;0.15867491;0.68896633;0.697287 +29882;5;999.5974 +29883;0;-0.98399353;4.214142;9.494766 +29883;1;-0.54456365;3.7664232;9.041771 +29883;2;0.44497448;-0.376333;-0.5627308; +29883;3;0.16409302;-0.10168457;-0.05557251 +29886;0;-0.9983368;4.223633;9.509079 +29886;12;0.1184305;0.15881594;0.6887875;0.697369 +29887;3;0.17448425;-0.112075806;-0.05557251 +29888;0;-0.98399353;4.2711487;9.470917 +29888;1;-0.54147804;3.7739167;9.038831 +29888;3;0.18424988;-0.12062073;-0.05557251 +29890;4;18.193054;-22.190857;-51.14746 +29890;6;-1.4663064;-0.42165637;0.1035249 +29890;7;0.06167791;-0.9074359;0.4156392;0.0;0.9936325;0.09516449;0.06031795;0.0;-0.09428876 +29891;0;-0.9457855;4.2949066;9.423233 +29891;3;0.19342041;-0.13162231;-0.056793213 +29891;12;0.1188669;0.15896241;0.6885946;0.6974519 +29892;0;-0.91233826;4.3281555;9.4423065 +29893;1;-0.5375028;3.7823424;9.035545 +29893;3;0.20440674;-0.1426239;-0.058013916 +29895;0;-0.859787;4.342407;9.43277 +29895;12;0.11937283;0.15910769;0.6883871;0.6975372 +29895;3;0.21418762;-0.15177917;-0.060455322 +29898;0;-0.8120117;4.342407;9.38031 +29898;3;0.22395325;-0.1609497;-0.061676025 +29898;1;-0.5325618;3.7916803;9.031924 +29900;4;18.492126;-21.890259;-52.046204 +29900;6;-1.3928566;-0.43213126;0.086350285 +29900;7;0.14079382;-0.89373714;0.42592376;0.0;0.9869366;0.1607313;0.011027705;0.0;-0.078315146 +29901;0;-0.840683;4.4516907;9.356461 +29901;3;0.23617554;-0.17132568;-0.061065674 +29901;12;0.11995219;0.15925355;0.6881603;0.69762826 +29902;0;-0.8120117;4.5181885;9.423233 +29902;1;-0.52683765;3.8020582;9.027896 +29903;2;0.31618702;-0.54064393;-0.40675354; +29903;3;0.24533081;-0.1786499;-0.06411743 +29905;0;-0.7403717;4.5752106;9.4375305 +29905;12;0.120603345;0.15940472;0.68791604;0.6977224 +29906;9;2AEC2AEBC4E1;-64;-2147483648 +29908;3;0.253891;-0.18232727;-0.06718445 +29908;0;-0.6495819;4.6084595;9.4375305 +29908;1;-0.52036613;3.8134146;9.02348 +29908;3;0.26184082;-0.18598938;-0.07206726 +29910;4;18.193054;-21.141052;-52.046204 +29910;6;-1.2851028;-0.45332244;0.068721265 +29910;7;0.25230354;-0.8625575;0.43856308;0.0;0.965677;0.25335792;-0.057250503;0.0;-0.06173159 +29910;0;-0.5636139;4.6322327;9.427994 +29910;3;0.27038574;-0.18904114;-0.07450867 +29910;12;0.12132322;0.15956137;0.68765146;0.69782263 +29912;0;-0.5062866;4.703491;9.385086 +29912;1;-0.51358366;3.825479;9.018761 +29912;3;0.27772522;-0.19148254;-0.07633972 +29914;0;-0.4202881;4.7985077;9.351685 +29914;12;0.122086555;0.15973511;0.68736786;0.6979291 +29915;3;0.2856598;-0.1920929;-0.07633972 +29916;0;-0.36775208;4.9267883;9.385086 +29917;1;-0.5065069;3.8384168;9.013663 +29917;3;0.2917633;-0.18965149;-0.07633972 +29919;4;18.043518;-22.640991;-51.74713 +29919;6;-1.3084393;-0.48309946;0.039164692 +29919;7;0.2415928;-0.85525674;0.45844173;0.0;0.969758;0.22967662;-0.08257118;0.0;-0.034673795 +29920;0;-0.30085754;5.0265503;9.38031 +29921;12;0.122895226;0.15993096;0.68707126;0.6980344 +29921;3;0.29786682;-0.18843079;-0.077560425 +29921;5;999.5974 +29922;0;-0.21009827;5.1453247;9.399368 +29922;1;-0.499399;3.8521194;9.008212 +29922;2;-0.08223885;-0.9479847;-0.39627552; +29922;3;0.3027649;-0.18232727;-0.07817078 +29924;0;-0.16711426;5.2450867;9.404144 +29924;12;0.12373443;0.16015463;0.6867689;0.69813246 +29925;3;0.3076477;-0.17437744;-0.07511902 +29927;1;-0.4926101;3.8664143;9.0024605 +29928;0;-0.100234985;5.297348;9.456619 +29928;3;0.3113098;-0.16339111;-0.07572937 +29928;4;19.242859;-22.190857;-53.097534 +29928;6;-1.227046;-0.51059645;0.010599056 +29928;7;0.33212483;-0.8214123;0.4636538;0.0;0.9431901;0.2940345;-0.15471305;0.0;-0.009247007 +29929;0;-0.07156372;5.4398804;9.46138 +29929;3;0.30947876;-0.15238953;-0.073898315 +29929;12;0.12458226;0.16041364;0.6864653;0.6982207 +29931;0;-0.047683716;5.5253906;9.499542 +29931;1;-0.4865952;3.881093;8.9964695 +29931;3;0.30581665;-0.13896179;-0.07267761 +29933;0;-0.023803711;5.577652;9.4804535 +29934;12;0.12541291;0.16071846;0.6861681;0.69829404 +29934;3;0.29849243;-0.1255188;-0.07145691 +29936;0;-0.009475708;5.6156616;9.513855 +29937;9;52ADB5BC186F;-86;-2147483648 +29937;1;-0.4815979;3.8954973;8.99051 +29937;3;0.2881012;-0.112075806;-0.07206726 +29938;4;18.043518;-21.740723;-52.6474 +29938;6;-1.1501559;-0.53322774;9.9599E-4 +29938;7;0.40788284;-0.7861005;0.46441102;0.0;0.9130338;0.35165495;-0.20665897;0.0;-8.5771736E-4 +29938;0;0.0048675537;5.6774445;9.575851 +29939;3;0.27282715;-0.099853516;-0.07206726 +29939;12;0.12619129;0.16105214;0.6858857;0.69835436 +29941;0;0.009643555;5.7296906;9.59491 +29943;1;-0.4777171;3.908995;8.984858 +29943;2;-0.4808283;-1.6056676;-0.5160036; +29944;3;0.25572205;-0.08580017;-0.07511902 +29944;0;0.014419556;5.7866974;9.661682 +29945;12;0.12689206;0.16139519;0.685619;0.6984101 +29945;3;0.23495483;-0.07054138;-0.07572937 +29946;0;0.08129883;5.8532104;9.699844 +29946;1;-0.47505793;3.9210067;8.979762 +29946;3;0.20928955;-0.05404663;-0.07939148 +29948;4;18.792725;-22.340393;-52.946472 +29948;6;-1.1702933;-0.5429247;-0.008381261 +29948;7;0.39385527;-0.7884458;0.47247347;0.0;0.9191444;0.3338171;-0.20914015;0.0;0.0071759624 +29948;0;0.057418823;5.9102325;9.728455 +29948;3;0.18118286;-0.03755188;-0.08427429 +29949;12;0.12749124;0.16172773;0.685368;0.69847035 +29950;0;0.019195557;5.8864594;9.776154 +29950;1;-0.47393075;3.9308617;8.9755125 +29950;3;0.15003967;-0.02166748;-0.09100342 +29955;0;-0.057235718;5.8627167;9.8572235 +29955;12;0.12794426;0.1620347;0.6851355;0.69854456 +29955;3;0.11582947;-0.002105713;-0.09954834 +29955;0;-0.08111572;5.7677;9.923996 +29955;1;-0.4746447;3.9378378;8.972417 +29955;3;0.07489014;0.014373779;-0.11054993 +29957;0;-0.143219;5.6631775;10.05278 +29957;3;0.0284729;0.028411865;-0.11911011 +29958;4;19.392395;-22.640991;-52.6474 +29958;6;-1.2475408;-0.51298726;0.014245742 +29958;7;0.3109937;-0.82615536;0.46984062;0.0;0.95033085;0.27676728;-0.14237621;0.0;-0.012411642 +29958;12;0.1282188;0.16229418;0.6849158;0.69864947 +29958;5;999.5974 +29959;0;-0.21487427;5.5301514;10.148163 +29960;1;-0.4772844;3.9409506;8.970909 +29960;2;-0.49160868;-1.8458025;-0.88637733; +29960;3;-0.019180298;0.041244507;-0.12948608 +29962;0;-0.18621826;5.4351196;10.305542 +29962;12;0.1282785;0.16247194;0.6847067;0.69880205 +29962;3;-0.06864929;0.04736328;-0.14109802 +29964;0;-0.21966553;5.2926025;10.472473 +29966;1;-0.48131374;3.939542;8.971313 +29966;3;-0.12486267;0.05407715;-0.15454102 +29967;4;19.84253;-22.790527;-52.3468 +29967;6;-1.3888395;-0.4678556;0.020972438 +29967;7;0.17161347;-0.8778029;0.44722575;0.0;0.9849865;0.1615086;-0.06096299;0.0;-0.018717313 +29967;0;-0.2722168;5.1453247;10.59169 +29967;3;-0.18411255;0.05529785;-0.17102051 +29968;12;0.12811585;0.16252378;0.6845101;0.6990124 +29969;0;-0.38208008;5.017044;10.653702 +29970;1;-0.48643836;3.9329412;8.973932 +29970;3;-0.24275208;0.05041504;-0.1820221 +29972;0;-0.41552734;4.893524;10.701401 +29972;12;0.12772273;0.1624138;0.6843144;0.6993014 +29972;3;-0.2989502;0.036972046;-0.19241333 +29974;1;-0.49171153;3.9209757;8.97888 +29975;0;-0.5397186;4.712982;10.730011 +29975;3;-0.3539276;0.01008606;-0.20217896 +29978;12;0.1271224;0.16209432;0.68412054;0.6996746 +29978;4;19.392395;-23.390198;-52.946472 +29978;6;-1.5579525;-0.41339967;0.050257556 +29978;7;-0.007352332;-0.9156848;0.4018298;0.0;0.9989142;0.011761509;0.045079246;0.0;-0.046004508 +29978;0;-0.59706116;4.4611816;10.763397 +29978;3;-0.40768433;-0.027770996;-0.21133423 +29979;0;-0.65914917;4.2711487;10.925552 +29979;1;-0.4952725;3.903653;8.986229 +29979;2;-0.14135885;-1.004782;-1.6578608; +29979;3;-0.45838928;-0.07235718;-0.22233582 +29981;0;-0.6782532;4.0811005;11.078171 +29981;12;0.12638953;0.16149384;0.68392116;0.70014095 +29982;3;-0.5060425;-0.12185669;-0.2333374 +29984;0;-0.71170044;3.9005737;11.140167 +29984;1;-0.49545303;3.881559;8.995785 +29984;3;-0.55184937;-0.17376709;-0.24493408 +29986;4;19.093323;-23.091125;-52.197266 +29986;6;-1.8326036;-0.33616132;0.06379927 +29986;7;-0.27861437;-0.911859;0.30147514;0.0;0.9585153;-0.24433962;0.14678779;0.0;-0.060187444 +29986;0;-0.70692444;3.7390442;11.273712 +29987;3;-0.588501;-0.22142029;-0.25654602 +29987;12;0.12561047;0.16057542;0.6837023;0.70070595 +29988;0;-0.72125244;3.6250305;11.388168 +29989;1;-0.49171388;3.8552485;9.007297 +29989;3;-0.617218;-0.26478577;-0.266922 +29991;0;-0.6925812;3.4017181;11.5550995 +29991;12;0.124826014;0.15933709;0.68344885;0.7013757 +29991;3;-0.6343231;-0.29716492;-0.27304077 +29993;0;-0.63526917;3.268692;11.664795 +29994;1;-0.48462808;3.8260763;9.02011 +29994;3;-0.64164734;-0.3203888;-0.2791443 +29995;4;19.093323;-22.640991;-52.197266 +29996;6;-2.0027266;-0.27282685;0.054406635 +29996;7;-0.43131238;-0.8745693;0.22158112;0.0;0.90068144;-0.40314096;0.16201903;0.0;-0.05236845 +29996;0;-0.62094116;3.102417;11.784012 +29996;3;-0.6355438;-0.3368683;-0.2840271 +29997;12;0.12406604;0.15785657;0.6831605;0.7021259 +29997;5;999.5974 +29999;0;-0.59706116;2.9646301;11.85556 +29999;1;-0.47558418;3.7959816;9.033298 +29999;3;-0.6208801;-0.3435974;-0.28709412 +29999;2;0.14017075;0.28326607;-2.436243; +30001;0;-0.54927063;2.7841034;11.9270935 +30001;12;0.12334748;0.1562645;0.68284327;0.7029167 +30001;3;-0.59217834;-0.3417511;-0.29075623 +30003;0;-0.55882263;2.6510773;11.974808 +30003;1;-0.465956;3.7669268;9.045952 +30003;3;-0.5555115;-0.33381653;-0.29319763 +30006;4;19.543457;-21.890259;-52.796936 +30006;6;-2.091704;-0.21764429;0.04663269 +30006;7;-0.50585717;-0.84690565;0.16388805;0.0;0.86141557;-0.48592693;0.1477776;0.0;-0.04551607 +30006;0;-0.5397186;2.4800262;11.989105 +30007;3;-0.50787354;-0.31793213;-0.2962494 +30007;12;0.12269207;0.15469171;0.68249726;0.7037149 +30008;0;-0.5779419;2.3517609;11.946182 +30008;1;-0.45712584;3.7408156;9.057232 +30008;3;-0.44921875;-0.29899597;-0.2974701 +30010;0;-0.60661316;2.2709808;11.898499 +30010;3;-0.38142395;-0.27578735;-0.2993164 +30011;12;0.12212271;0.15326537;0.68211716;0.7044942 +30012;0;-0.5779419;2.1854706;11.884186 +30013;1;-0.45003682;3.7195878;9.066324 +30013;3;-0.3013916;-0.24829102;-0.3005371 +30015;4;19.543457;-21.890259;-52.796936 +30015;6;-2.1800387;-0.18165545;0.048592888 +30015;7;-0.57876724;-0.8065882;0.12018333;0.0;0.8140922;-0.56283057;0.14309332;0.0;-0.047774535 +30015;0;-0.5206146;2.090454;11.807877 +30015;3;-0.21403503;-0.21591187;-0.2993164 +30016;12;0.121681176;0.15208884;0.68169874;0.7052302 +30017;0;-0.48239136;2.0381927;11.741104 +30017;2;0.051761597;1.3509068;-2.827404; +30018;1;-0.44525495;3.705073;9.072502 +30018;3;-0.11935425;-0.1786499;-0.2962494 +30020;0;-0.5158386;2.0239563;11.660019 +30020;3;-0.017333984;-0.13896179;-0.29319763 +30025;12;0.12141378;0.15125951;0.6812359;0.7059015 +30025;1;-0.44358194;3.6988008;9.075143 +30025;0;-0.5301666;2.0334473;11.569412 +30025;3;0.08465576;-0.09741211;-0.29014587 +30025;4;18.792725;-22.340393;-54.14734 +30025;6;-2.2252183;-0.17380486;0.045792818 +30025;7;-0.6143433;-0.7814465;0.10919535;0.0;0.7877496;-0.5995299;0.14147227;0.0;-0.045087136 +30025;0;-0.5206146;2.0191956;11.450165 +30027;3;0.18789673;-0.05342102;-0.2840271 +30027;12;0.12134877;0.15086442;0.6807339;0.7064813 +30028;17;1;38dead6d7725;11202;1579;-77; +30028;17;1;38dead6d60ff;11001;1280;-72; +30029;17;1;1c1bb5efa29a;1920;5227;-70; +30030;17;1;1c1bb5ecd182;-373;1150;-49; +30030;0;-0.5301666;2.0619507;11.245102 +30030;1;-0.44540933;3.7015;9.073953 +30030;3;0.28930664;-0.010055542;-0.2815857 +30030;0;-0.48718262;2.0762177;11.049545 +30030;12;0.121501304;0.15094572;0.6801934;0.7069581 +30030;3;0.38887024;0.03147888;-0.27853394 +30032;0;-0.5015106;2.1047058;10.811081 +30032;1;-0.45087662;3.713232;9.068888 +30032;3;0.48173523;0.06690979;-0.27731323 +30034;4;18.792725;-22.340393;-54.14734 +30034;6;-2.18373;-0.19207388;0.04635534 +30034;7;-0.5818871;-0.80292195;0.12932028;0.0;0.81199646;-0.5646906;0.14760156;0.0;-0.04548659 +30034;0;-0.5015106;2.147461;10.59169 +30034;3;0.56604004;0.09866333;-0.27731323 +30035;12;0.12186756;0.1515108;0.67961127;0.707334 +30035;5;999.60803 +30037;13;318.357 +30038;1;-0.45942;3.7330778;9.0603075 +30038;0;-0.48239136;2.2329865;10.315094 +30039;2;-0.0052601695;1.6525555;-2.0320148; +30039;3;0.6436157;0.12554932;-0.27853394 +30039;0;-0.46328735;2.2805023;10.095703 +30039;12;0.12243756;0.15250185;0.6789892;0.7076199 +30040;3;0.7101898;0.14692688;-0.2791443 +30041;0;-0.41552734;2.3232422;9.871536 +30041;1;-0.47027665;3.7597334;9.048721 +30041;3;0.76638794;0.16281128;-0.27975464 +30045;4;18.492126;-21.141052;-52.046204 +30046;6;-2.0517602;-0.23094401;0.04206865 +30046;7;-0.47075897;-0.8630122;0.18329193;0.0;0.8813114;-0.45035127;0.14308655;0.0;-0.040939678 +30046;12;0.123187;0.15383796;0.67832184;0.7078407 +30046;0;-0.47283936;2.3565063;9.70462 +30046;3;0.8122101;0.17440796;-0.27792358 +30047;1;-0.48261458;3.7914052;9.034846 +30047;0;-0.47283936;2.4657745;9.4804535 +30047;3;0.847641;0.17869568;-0.27426147 +30049;12;0.124085665;0.15542309;0.6776181;0.7080115 +30050;0;-0.42507935;2.5608063;9.179993 +30050;3;0.8757324;0.17747498;-0.269989 +30055;1;-0.49529487;3.8267295;9.019254 +30055;0;-0.42507935;2.617813;8.979691 +30055;3;0.89590454;0.17381287;-0.2657013 +30056;12;0.12511253;0.15716037;0.6768923;0.7081415 +30056;4;18.492126;-21.141052;-52.046204 +30056;6;-1.9027151;-0.2833639;0.04730255 +30056;7;-0.3379918;-0.9077159;0.24862295;0.0;0.94005346;-0.31286255;0.13570769;0.0;-0.045399208 +30056;0;-0.42507935;2.6700745;8.731674 +30056;3;0.9123993;0.16893005;-0.2651062 +30057;0;-0.39640808;2.7556;8.49321 +30057;2;-0.12493789;1.3698344;-0.32181644; +30057;1;-0.50750226;3.863879;9.002722 +30057;3;0.9221649;0.16098022;-0.2644806 +30061;12;0.12623218;0.15895222;0.6761593;0.7082431 +30061;1;-0.5190695;3.9021904;8.98552 +30062;0;-0.38208008;2.8363647;8.292908 +30062;3;0.92826843;0.15426636;-0.2644806 +30062;0;-0.34864807;2.9028778;8.111679 +30062;3;0.92889404;0.14387512;-0.2675476 +30063;4;18.792725;-22.340393;-52.197266 +30063;6;-1.7624353;-0.34337068;0.04295456 +30063;7;-0.20448458;-0.92438734;0.32201594;0.0;0.9780343;-0.17934962;0.106219664;0.0;-0.04043466 +30063;0;-0.36297607;2.9646301;7.978134 +30063;3;0.9246063;0.13594055;-0.27120972 +30064;12;0.12742272;0.1607633;0.67541087;0.7083352 +30067;1;-0.5299433;3.94073;8.96805 +30068;0;-0.2960968;3.0358887;7.8684235 +30068;3;0.91667175;0.13104248;-0.27487183 +30068;0;-0.30085754;3.1594238;7.7587433 +30068;12;0.12865664;0.1625551;0.6746431;0.7084349 +30068;3;0.9038391;0.124938965;-0.27670288 +30071;0;-0.25787354;3.2211914;7.6586 +30071;3;0.8855133;0.117614746;-0.27792358 +30071;1;-0.5403763;3.978782;8.950609 +30074;4;18.792725;-22.340393;-52.197266 +30074;6;-1.5786663;-0.39793375;0.033658393 +30074;7;-0.020905659;-0.9218351;0.38701802;0.0;0.99930006;-0.0072549507;0.036698956;0.0;-0.03102259 +30074;0;-0.22921753;3.2877045;7.520279 +30074;3;0.8623047;0.10661316;-0.2791443 +30074;12;0.12989321;0.16430892;0.6738625;0.70854765 +30074;5;999.60803 +30075;0;-0.24832153;3.3542175;7.3771973 +30076;1;-0.5501502;4.0154667;8.933615 +30076;2;-0.30169362;0.93025684;1.1047916; +30076;3;0.8366394;0.09439087;-0.27975464 +30078;0;-0.20533752;3.4112244;7.315201 +30078;12;0.13110387;0.1659865;0.6730816;0.7086759 +30078;3;0.8091583;0.07850647;-0.27975464 +30080;1;-0.558838;4.0501256;8.917415 +30083;0;-0.21966553;3.4729767;7.210266 +30083;3;0.78105164;0.06262207;-0.2791443 +30084;4;19.242859;-21.890259;-52.796936 +30084;6;-1.3789853;-0.44869593;0.030456243 +30084;7;0.17758133;-0.88448954;0.43144313;0.0;0.98372364;0.1717666;-0.052765213;0.0;-0.027437245 +30084;0;-0.21487427;3.5347595;7.1578064 +30084;3;0.74746704;0.04185486;-0.283432 +30084;12;0.13227847;0.16754527;0.6723039;0.708829 +30085;0;-0.15278625;3.6202698;7.1196594 +30086;1;-0.5660779;4.082432;8.902214 +30086;3;0.7126312;0.019866943;-0.28770447 +30088;0;-0.11933899;3.70578;7.057663 +30088;3;0.6759796;-8.8500977E-4;-0.29380798 +30088;12;0.13342118;0.16895597;0.6715355;0.70900834 +30090;0;-0.095443726;3.7437897;6.9956665 +30090;1;-0.57158303;4.1119137;8.888283 +30091;3;0.63993835;-0.019836426;-0.2986908 +30092;4;19.093323;-23.390198;-51.74713 +30092;6;-1.3611445;-0.49133846;0.013642417 +30092;7;0.20180446;-0.86239594;0.46427175;0.0;0.97935206;0.18349923;-0.0848396;0.0;-0.012028176 +30092;0;-0.08111572;3.7675476;7.0052032 +30093;3;0.60269165;-0.039382935;-0.3047943 +30093;12;0.13451828;0.17018665;0.67076296;0.709238 +30094;1;-0.575604;4.1382713;8.875782 +30095;2;-0.4887361;0.5122328;1.7561054; +30095;0;-0.052444458;3.8197937;7.0338135 +30095;3;0.56481934;-0.058929443;-0.31152344 +30097;0;-0.028564453;3.8388062;7.0195007 +30097;12;0.1355539;0.17123537;0.66998726;0.7095215 +30097;3;0.52693176;-0.075424194;-0.319458 +30099;0;-0.009475708;3.9053192;7.0290375 +30100;3;0.48539734;-0.09008789;-0.3292389 +30100;1;-0.5782547;4.161417;8.864781 +30106;4;20.4422;-23.091125;-52.946472 +30106;6;-1.3051231;-0.50713056;0.0013480795 +30106;7;0.26192698;-0.8434733;0.46898517;0.0;0.965087;0.22951375;-0.12621637;0.0;-0.0011784122 +30106;0;7.6293945E-5;3.9243164;7.09581 +30106;3;0.44384766;-0.10107422;-0.33596802 +30106;12;0.13652006;0.172103;0.6692047;0.70986474 +30106;0;0.014419556;3.9908295;7.1434937 +30106;3;0.40293884;-0.111450195;-0.34268188 +30106;1;-0.580031;4.1810517;8.855421 +30106;0;0.04307556;4.0050964;7.210266 +30108;3;0.3619995;-0.11634827;-0.34939575 +30108;12;0.13738786;0.17279544;0.6684171;0.71027106 +30109;0;0.08607483;3.9955902;7.262741 +30109;1;-0.5812368;4.1970954;8.84775 +30109;3;0.31985474;-0.115737915;-0.35734558 +30112;4;19.392395;-23.390198;-50.546265 +30112;6;-1.3850412;-0.50292796;-0.011851008 +30112;7;0.19028945;-0.86110216;0.47147933;0.0;0.981673;0.16181964;-0.10065928;0.0;0.010383314 +30112;0;0.09085083;3.9670868;7.3247375 +30112;3;0.27893066;-0.1126709;-0.36405945 +30112;5;999.60803 +30112;12;0.1381376;0.1733211;0.66763526;0.71073276 +30113;0;0.09562683;3.9670868;7.4105835 +30113;1;-0.5827044;4.2094097;8.841801 +30113;2;-0.67658824;0.26658583;1.6477346; +30114;3;0.23982239;-0.1084137;-0.36894226 +30115;0;0.08607483;3.9670868;7.477356 +30116;12;0.13873461;0.17371248;0.66686296;0.71124583 +30116;3;0.20195007;-0.10046387;-0.37199402 +30118;0;0.10517883;3.938568;7.558426 +30118;1;-0.58479893;4.2182274;8.837459 +30118;3;0.16468811;-0.091308594;-0.3756714 +30120;4;18.492126;-23.840332;-52.3468 +30120;6;-1.4197987;-0.48033187;-0.013914543 +30120;7;0.15676609;-0.87675065;0.45467854;0.0;0.9875586;0.13340269;-0.08325621;0.0;0.0123395985 +30120;0;0.1386261;3.9053192;7.6681366 +30121;3;0.1304779;-0.0778656;-0.3781128 +30121;12;0.1391724;0.1739894;0.6661107;0.71179724 +30122;0;0.1386261;3.8910675;7.7587433 +30123;1;-0.5878354;4.2237453;8.834621 +30123;3;0.0962677;-0.063201904;-0.3781128 +30126;0;0.124298096;3.9005737;7.8398285 +30127;12;0.13944627;0.17417996;0.66538095;0.7123794 +30127;3;0.06451416;-0.046707153;-0.3781128 +30128;0;0.1529541;3.862564;7.9161377 +30128;1;-0.5920961;4.2262325;8.833148 +30128;3;0.03640747;-0.028381348;-0.37872314 +30130;4;20.892334;-23.240662;-51.597595 +30130;6;-1.4998969;-0.45387593;-0.019319406 +30130;7;0.07927567;-0.8964965;0.43590063;0.0;0.99670154;0.06366782;-0.050323863;0.0;0.017362323 +30130;0;0.1386261;3.8578186;7.978134 +30131;3;0.007080078;-0.011276245;-0.37750244 +30131;12;0.13955098;0.17430568;0.66469675;0.71296656 +30132;0;0.1290741;3.7913055;8.040131 +30133;1;-0.59792507;4.226091;8.832823 +30133;2;-0.7838815;0.34229422;1.046381; +30133;3;-0.020996094;0.0045928955;-0.3768921 +30135;0;0.124298096;3.7247925;8.111679 +30135;12;0.13949049;0.17439272;0.6640409;0.713568 +30135;3;-0.04788208;0.021087646;-0.37321472 +30137;0;0.10517883;3.682022;8.2070465 +30137;1;-0.60505015;4.2233334;8.833656 +30138;3;-0.074157715;0.033309937;-0.37261963 +30139;4;20.742798;-21.740723;-50.247192 +30139;6;-1.5418215;-0.421693;-0.012814973 +30139;7;0.03421132;-0.9120143;0.40872908;0.0;0.9993462;0.02643288;-0.024666183;0.0;0.011692026 +30140;12;0.13927417;0.17443752;0.6634285;0.7141687 +30141;0;0.08129883;3.639267;8.273819 +30141;3;-0.09980774;0.046142578;-0.36894226 +30142;1;-0.6132832;4.218166;8.835557 +30142;0;0.052627563;3.591751;8.340591 +30142;3;-0.12423706;0.057739258;-0.3646698 +30144;0;0.04307556;3.5537567;8.378754 +30145;12;0.13891806;0.17443907;0.66285557;0.7147694 +30145;3;-0.14807129;0.068740845;-0.36161804 +30149;1;-0.62243396;4.210785;8.838437 +30149;0;-0.042907715;3.515747;8.402588 +30150;3;-0.1688385;0.076675415;-0.35610962 +30150;4;20.292664;-24.14093;-51.14746 +30150;6;-1.6943876;-0.39627305;0.005106444 +30150;7;-0.12523122;-0.91546935;0.3824042;0.0;0.99211633;-0.11372364;0.052649613;0.0;-0.004710704 +30150;0;-0.095443726;3.4302368;8.488449 +30150;3;-0.18899536;0.08155823;-0.3524475 +30150;12;0.13843195;0.17439966;0.66232324;0.7153666 +30150;5;999.60803 +30152;0;-0.095443726;3.3779755;8.526611 +30152;1;-0.6321934;4.201389;8.842216 +30152;2;-0.7146516;0.6429863;0.4935875; +30152;3;-0.20671082;0.080947876;-0.346344 +30160;0;-0.11933899;3.3447113;8.593384 +30161;12;0.13784227;0.17431098;0.6618296;0.7159587 +30161;3;-0.22137451;0.080947876;-0.34024048 +30161;0;-0.171875;3.3019562;8.674438 +30161;1;-0.6418534;4.190369;8.846747 +30161;3;-0.23542786;0.07484436;-0.3335266 +30161;4;21.043396;-23.690796;-51.446533 +30161;6;-1.7534412;-0.36365277;0.019811371 +30161;7;-0.1885245;-0.91905826;0.34610745;0.0;0.98189396;-0.1697531;0.084072344;0.0;-0.018514572 +30161;0;-0.21009827;3.2496948;8.755524 +30161;3;-0.24824524;0.07118225;-0.32740784 +30162;12;0.13718379;0.17416348;0.6613699;0.71654564 +30162;0;-0.2722168;3.2211914;8.836609 +30162;3;-0.25985718;0.068740845;-0.32252502 +30162;1;-0.65102684;4.1780195;8.851916 +30164;12;0.13648616;0.17395157;0.66094035;0.7171265 +30164;0;-0.2722168;3.1831818;8.941528 +30164;3;-0.26841736;0.06384277;-0.3176422 +30166;0;-0.3343048;3.102417;8.989227 +30166;1;-0.65976244;4.164565;8.857608 +30167;3;-0.2806244;0.05895996;-0.3109131 +30169;4;19.993591;-22.640991;-51.446533 +30169;6;-1.8096423;-0.3321132;0.037172366 +30169;7;-0.24819109;-0.91851836;0.30777454;0.0;0.96807384;-0.22365369;0.113190904;0.0;-0.035133008 +30169;0;-0.35820007;3.0168915;9.089371 +30169;3;-0.29284668;0.056518555;-0.30603027 +30169;12;0.13575336;0.17368409;0.66053563;0.717703 +30171;0;-0.39163208;2.9693756;9.156143 +30172;1;-0.6679707;4.1499376;8.863856 +30172;2;-0.46347702;0.9843445;-0.024334908; +30172;3;-0.30322266;0.05529785;-0.2999115 +30173;0;-0.44895935;2.9123688;9.232452 +30174;3;-0.31178284;0.05407715;-0.29197693 +30174;12;0.1349897;0.17335822;0.6601573;0.7182737 +30176;0;-0.5253906;2.8838654;9.318314 +30176;1;-0.6759208;4.134291;8.870563 +30177;3;-0.31973267;0.053466797;-0.2858734 +30178;4;21.043396;-23.091125;-52.6474 +30178;6;-1.9014376;-0.29968655;0.05632295 +30178;7;-0.33985364;-0.9036776;0.26051158;0.0;0.9389391;-0.31017977;0.14893536;0.0;-0.053784136 +30178;0;-0.5445099;2.8268433;9.399368 +30178;3;-0.3294983;0.051635742;-0.2815857 +30179;12;0.13418993;0.17298946;0.65980697;0.7188341 +30180;0;-0.5636139;2.7556;9.4804535 +30180;1;-0.6835923;4.1177683;8.877657 +30181;3;-0.33927917;0.04736328;-0.27304077 +30183;0;-0.5922699;2.7556;9.552002 +30183;12;0.13336167;0.17258158;0.65948397;0.7193826 +30183;3;-0.34721375;0.044906616;-0.266922 +30185;0;-0.63526917;2.7128296;9.618759 +30185;1;-0.69076204;4.10038;8.885147 +30185;3;-0.35331726;0.040634155;-0.25959778 +30188;4;21.192932;-21.890259;-50.39673 +30188;6;-1.9484154;-0.274327;0.06594904 +30188;7;-0.38450164;-0.8947873;0.22696726;0.0;0.920942;-0.35492152;0.16092384;0.0;-0.063437045 +30188;0;-0.64004517;2.665329;9.656921 +30188;3;-0.3600464;0.03514099;-0.24861145 +30189;12;0.13251105;0.17212725;0.6591894;0.7199183 +30189;5;999.60126 +30190;0;-0.6639252;2.617813;9.728455 +30190;1;-0.6972849;4.082329;8.892946 +30190;3;-0.3649292;0.027816772;-0.24127197 +30190;2;-0.1824261;1.3275685;-0.6157608; +30192;0;-0.71647644;2.5940552;9.795227 +30192;12;0.13165048;0.17162988;0.6589246;0.7204372 +30192;3;-0.36553955;0.022918701;-0.23150635 +30194;0;-0.73558044;2.5655518;9.842926 +30195;1;-0.703027;4.063759;8.900996 +30195;3;-0.3661499;0.014373779;-0.22111511 +30197;4;20.4422;-22.340393;-52.6474 +30197;6;-2.0246933;-0.2542973;0.07459324 +30197;7;-0.4541014;-0.8698419;0.19278783;0.0;0.88802564;-0.42437017;0.17697562;0.0;-0.0721274 +30197;0;-0.75468445;2.4990387;9.919235 +30198;17;1;38dead6d7725;15365;1112;-71; +30198;17;1;38dead6d60ff;9385;1168;-67; +30198;17;0;1c1bb5efa29a;0;0;0; +30199;17;1;1c1bb5ecd182;-2171;2358;-48; +30199;3;-0.36431885;0.0058288574;-0.21318054 +30199;12;0.13079153;0.17108703;0.65868735;0.72093964 +30199;0;-0.73558044;2.5655518;9.952621 +30199;1;-0.70769745;4.0452704;8.909043 +30199;3;-0.35942078;-8.8500977E-4;-0.2015686 +30201;0;-0.76901245;2.4895477;9.928772 +30202;12;0.12996937;0.17051448;0.65847945;0.7214137 +30202;3;-0.35087585;-0.008834839;-0.18997192 +30204;0;-0.8072357;2.4942932;10.009842 +30204;1;-0.711346;4.0272326;8.916922 +30204;3;-0.34049988;-0.017990112;-0.18019104 +30207;4;20.892334;-20.541382;-51.597595 +30207;6;-1.9749762;-0.24345124;0.08047006 +30207;7;-0.40980756;-0.89231306;0.18930161;0.0;0.9088299;-0.38166812;0.16839749;0.0;-0.07801289 +30207;0;-0.7833557;2.4515228;10.043243 +30207;3;-0.32583618;-0.024108887;-0.1697998 +30208;12;0.12919292;0.1699244;0.65829885;0.721857 +30209;0;-0.7499237;2.4515228;10.062302 +30209;1;-0.7138487;4.010142;8.924421 +30210;3;-0.30873108;-0.030822754;-0.15820312 +30211;2;-0.019064724;1.5120082;-1.0321026; +30212;0;-0.71170044;2.461029;10.10524 +30212;3;-0.28674316;-0.035095215;-0.14781189 +30212;12;0.12849078;0.1693307;0.65814036;0.72226626 +30215;0;-0.70692444;2.475296;10.119553 +30215;1;-0.7153231;3.9946518;8.931248 +30215;3;-0.26412964;-0.03816223;-0.1368103 +30218;4;20.892334;-22.190857;-52.3468 +30218;6;-2.0454314;-0.2393337;0.06974398 +30218;7;-0.47059658;-0.86410654;0.17849043;0.0;0.8797474;-0.4439873;0.1700584;0.0;-0.067701094 +30218;0;-0.6495819;2.484787;10.10524 +30218;3;-0.23847961;-0.03755188;-0.12826538 +30220;12;0.12788145;0.16876426;0.6580018;0.7226332 +30220;0;-0.65437317;2.5132904;10.114777 +30220;1;-0.7161087;3.9812634;8.9371605 +30220;3;-0.21098328;-0.035720825;-0.117874146 +30223;0;-0.64004517;2.475296;10.110016 +30224;3;-0.18165588;-0.02960205;-0.10871887 +30224;12;0.12737116;0.16825594;0.6578778;0.72295463 +30224;0;-0.64004517;2.4942932;10.086151 +30224;1;-0.7167261;3.9702902;8.941991 +30224;3;-0.15112305;-0.02166748;-0.09954834 +30227;4;21.792603;-21.740723;-51.74713 +30227;6;-1.9976968;-0.24196689;0.06337285 +30227;7;-0.42703316;-0.8837365;0.19144838;0.0;0.9021431;-0.40198952;0.15665957;0.0;-0.06148553 +30227;0;-0.64004517;2.5037842;10.043243 +30228;3;-0.11935425;-0.014328003;-0.089782715 +30228;5;999.60126 +30228;12;0.1269572;0.16783832;0.65776604;0.72322613 +30228;0;-0.6113739;2.5560455;10.000305 +30228;1;-0.71759564;3.9620786;8.945563 +30229;2;-0.12264693;1.4865847;-1.1540527; +30229;3;-0.08758545;-0.0033416748;-0.081832886 +30232;0;-0.60661316;2.6273193;9.9144745 +30232;3;-0.053390503;0.008270264;-0.07084656 +30232;12;0.12664053;0.16754086;0.65766567;0.72344196 +30233;0;-0.6257019;2.698578;9.828613 +30233;1;-0.7189829;3.956908;8.947741 +30234;3;-0.022842407;0.019866943;-0.05984497 +30236;4;21.49353;-21.440125;-52.046204 +30236;6;-1.9192306;-0.2674444;0.06357547 +30236;7;-0.3565175;-0.90649414;0.22619379;0.0;0.9322771;-0.3292886;0.14976054;0.0;-0.061274022 +30236;0;-0.5636139;2.7460938;9.766617 +30236;3;0.008926392;0.030258179;-0.05067444 +30237;12;0.12641987;0.16738246;0.6575758;0.72359884 +30240;1;-0.7208762;3.9547086;8.94856 +30240;0;-0.5683899;2.7935944;9.680771 +30240;3;0.037017822;0.04246521;-0.041519165 +30241;0;-0.57315063;2.855362;9.575851 +30241;12;0.12629016;0.16736275;0.6575029;0.7236923 +30241;3;0.06510925;0.051635742;-0.030532837 +30243;0;-0.5206146;2.931366;9.4804535 +30243;1;-0.72332734;3.9552777;8.948111 +30244;3;0.08833313;0.061401367;-0.021972656 +30245;4;19.993591;-21.740723;-50.546265 +30246;6;-1.883654;-0.29945195;0.054859426 +30246;7;-0.32270586;-0.9091165;0.2633785;0.0;0.9450482;-0.29408216;0.14282738;0.0;-0.0523918 +30246;0;-0.5206146;2.9741364;9.38031 +30246;3;0.106658936;0.073013306;-0.0146484375 +30247;12;0.12624496;0.16747282;0.6574458;0.72372663 +30248;0;-0.5253906;3.0501556;9.256302 +30248;1;-0.72628033;3.9581137;8.946617 +30249;2;-0.22536993;1.1465771;-0.6793051; +30249;3;0.12071228;0.08155823;-0.008544922 +30251;0;-0.49195862;3.1404114;9.13707 +30251;12;0.12626621;0.16769485;0.65740526;0.7237083 +30251;3;0.1304779;0.09133911;-0.0018310547 +30255;0;-0.5015106;3.1641693;9.017838 +30255;1;-0.7297783;3.9624603;8.944408 +30255;3;0.13719177;0.096832275;0.002456665 +30256;4;20.292664;-21.141052;-52.3468 +30256;6;-1.7024759;-0.3369755;0.05555595 +30256;7;-0.14929713;-0.93558866;0.31997547;0.0;0.98740274;-0.12391497;0.098391764;0.0;-0.05240446 +30256;0;-0.5062866;3.244934;8.884293 +30257;3;0.14086914;0.10050964;0.007949829 +30257;12;0.12632036;0.16799903;0.65738004;0.72365123 +30257;0;-0.46806335;3.29245;8.745987 +30257;1;-0.7335967;3.9676695;8.941787 +30257;3;0.13659668;0.10110474;0.011001587 +30259;0;-0.47763062;3.368454;8.6362915 +30260;12;0.12639444;0.16835116;0.65737003;0.7235655 +30260;3;0.13171387;0.10295105;0.014678955 +30261;0;-0.45851135;3.3874664;8.579071 +30262;1;-0.7374158;3.9729583;8.939124 +30262;3;0.12376404;0.10232544;0.018951416 +30264;0;-0.43463135;3.449234;8.455063 +30265;3;0.11520386;0.09744263;0.02078247 +30265;4;21.942139;-22.491455;-52.046204 +30265;6;-1.6119868;-0.38687882;0.051359657 +30265;7;-0.06047749;-0.9253056;0.37436864;0.0;0.9970366;-0.03813528;0.06680978;0.0;-0.047542818 +30265;12;0.12646689;0.16870727;0.6573753;0.72346514 +30266;5;999.60126 +30267;0;-0.45851135;3.4967346;8.35968 +30268;1;-0.74093056;3.9777892;8.936685 +30268;2;-0.32883304;0.6840539;0.19352818; +30268;3;0.10298157;0.093170166;0.025054932 +30269;0;-0.47283936;3.591751;8.278595 +30269;12;0.12652835;0.16904032;0.6573959;0.723358 +30269;3;0.09138489;0.08950806;0.025665283 +30271;0;-0.45373535;3.6250305;8.197525 +30272;1;-0.7440474;3.9819973;8.93455 +30272;3;0.08039856;0.084625244;0.026885986 +30275;4;22.242737;-21.141052;-52.796936 +30275;6;-1.4444902;-0.41579172;0.055293866 +30275;7;0.10363331;-0.90750957;0.40704626;0.0;0.99332976;0.115237504;0.004021868;0.0;-0.050556876 +30275;0;-0.44418335;3.6772919;8.173676 +30275;3;0.06573486;0.080337524;0.028717041 +30275;12;0.12657636;0.16933256;0.6574309;0.7232493 +30276;0;-0.45851135;3.7485352;8.097366 +30276;1;-0.74669856;3.9853413;8.932838 +30277;3;0.054122925;0.07423401;0.029937744 +30279;0;-0.43463135;3.753296;8.078278 +30279;12;0.12660432;0.16957541;0.65747654;0.723146 +30279;3;0.041290283;0.06813049;0.031158447 +30281;0;-0.45373535;3.8007965;8.016281 +30281;1;-0.74880266;3.9877381;8.931593 +30281;3;0.0284729;0.06568909;0.030548096 +30283;4;19.84253;-21.440125;-52.3468 +30283;6;-1.3681587;-0.4421232;0.0565414 +30283;7;0.17724791;-0.8853518;0.42980847;0.0;0.9828398;0.18190219;-0.030615695;0.0;-0.051077448 +30283;0;-0.43940735;3.8388062;7.98291 +30284;3;0.017471313;0.06323242;0.029937744 +30284;12;0.12661262;0.16976298;0.65753293;0.72304934 +30286;0;-0.40119934;3.9053192;7.9638214 +30286;1;-0.7505881;3.9892397;8.930772 +30287;2;-0.3688491;0.27047205;0.8160038; +30287;3;0.0034179688;0.060180664;0.031158447 +30288;0;-0.38685608;3.9053192;7.9304504 +30288;12;0.12659664;0.16990235;0.6575966;0.72296154 +30289;3;-0.009399414;0.056518555;0.031158447 +30290;0;-0.44895935;3.9575806;7.8731995 +30291;1;-0.7520916;3.9897518;8.930417 +30291;3;-0.021621704;0.05407715;0.029327393 +30293;4;20.742798;-21.290588;-51.74713 +30293;6;-1.3135159;-0.46512613;0.05696206 +30293;7;0.2293435;-0.86434716;0.44755498;0.0;0.97201455;0.22741973;-0.058887992;0.0;-0.050883166 +30293;0;-0.42507935;4.009842;7.892288 +30293;3;-0.033218384;0.052856445;0.029937744 +30294;12;0.12654908;0.1699973;0.6576687;0.7228819 +30295;0;-0.45851135;4.019348;7.854141 +30295;1;-0.75344926;3.9893343;8.930489 +30296;3;-0.04421997;0.051635742;0.02810669 +30297;0;-0.44418335;4.052597;7.8684235 +30298;12;0.1264687;0.17004944;0.65774626;0.72281307 +30298;3;-0.054611206;0.052246094;0.029937744 +30300;0;-0.44418335;4.0668488;7.882736 +30300;1;-0.7547541;3.9880302;8.930962 +30300;3;-0.065597534;0.05407715;0.028717041 +30302;4;20.892334;-22.190857;-51.14746 +30302;6;-1.3415953;-0.47565556;0.056289352 +30302;7;0.20175089;-0.86574405;0.45802176;0.0;0.9781592;0.2019787;-0.049086362;0.0;-0.050014406 +30303;0;-0.45373535;4.057358;7.8684235 +30303;3;-0.07537842;0.056518555;0.027496338 +30303;12;0.12635364;0.17006515;0.6578312;0.7227522 +30304;5;999.60126 +30305;0;-0.47763062;4.095352;7.849365 +30305;1;-0.7562519;3.9858546;8.931806 +30306;3;-0.086364746;0.057739258;0.025665283 +30306;2;-0.37740993;-0.012155056;1.0387287; +30308;0;-0.48718262;4.0763702;7.858902 +30308;12;0.12619662;0.17005718;0.6579234;0.7226976 +30308;3;-0.09553528;0.060791016;0.025054932 +30309;0;-0.47283936;4.100113;7.863678 +30310;1;-0.75799125;3.9828098;8.933016 +30310;3;-0.105911255;0.06201172;0.023834229 +30312;4;19.993591;-21.740723;-53.396606 +30312;6;-1.2334394;-0.47988042;0.06005723 +30312;7;0.3042492;-0.8370496;0.4547311;0.0;0.95110345;0.29360843;-0.09589769;0.0;-0.053241756 +30312;0;-0.47763062;4.109619;7.8398285 +30313;3;-0.11691284;0.06262207;0.022613525 +30313;12;0.12599859;0.17002513;0.6580196;0.7226521 +30314;0;-0.48718262;4.1523743;7.8731995 +30315;1;-0.75990283;3.9789422;8.934578 +30315;3;-0.12730408;0.06262207;0.022613525 +30317;0;-0.5015106;4.133362;7.858902 +30317;12;0.12576018;0.1699693;0.6581215;0.722614 +30317;3;-0.13768005;0.06201172;0.022613525 +30319;0;-0.5253906;4.1286316;7.901825 +30319;1;-0.76188374;3.9741237;8.936553 +30320;3;-0.14562988;0.06384277;0.02078247 +30322;4;21.043396;-21.290588;-52.197266 +30322;6;-1.2491136;-0.4805733;0.066392064 +30322;7;0.28637046;-0.8412449;0.4585835;0.0;0.95631105;0.28035164;-0.082896255;0.0;-0.058828592 +30322;0;-0.5445099;4.214142;7.935196 +30322;3;-0.15478516;0.06201172;0.018341064 +30323;12;0.12548155;0.16988185;0.65823114;0.7225832 +30324;0;-0.57315063;4.1713715;7.9304504 +30324;1;-0.76399565;3.9686177;8.938819 +30325;2;-0.31922656;-0.14620304;1.0410681; +30325;3;-0.16210938;0.060180664;0.015899658 +30327;0;-0.5922699;4.185623;7.98291 +30327;3;-0.1688385;0.05834961;0.012832642 +30327;12;0.12516959;0.16977108;0.6583415;0.72256273 +30329;0;-0.63526917;4.2188873;7.9590607 +30329;1;-0.76612544;3.9624295;8.941381 +30329;3;-0.17433167;0.055908203;0.009170532 +30331;4;20.4422;-22.340393;-51.74713 +30331;6;-1.2665192;-0.48610315;0.07964825 +30331;7;0.2631902;-0.8435451;0.46814796;0.0;0.9621756;0.26489753;-0.06361709;0.0;-0.07034736 +30332;0;-0.5683899;4.185623;8.049683 +30332;3;-0.18165588;0.05407715;0.005508423 +30333;12;0.124834314;0.16963245;0.6584484;0.72255594 +30334;0;-0.6018219;4.209381;8.106903 +30334;1;-0.7681664;3.9555666;8.944245 +30334;3;-0.1871643;0.053466797;0.002456665 +30336;0;-0.6018219;4.185623;8.173676 +30337;12;0.12447612;0.16946392;0.65854746;0.72256696 +30337;3;-0.19143677;0.05407715;6.2561035E-4 +30338;0;-0.6495819;4.214142;8.197525 +30339;1;-0.7702989;3.9481888;8.947322 +30339;3;-0.19448853;0.057739258;6.2561035E-4 +30341;4;20.4422;-22.04132;-52.946472 +30341;6;-1.2605342;-0.47357255;0.079075985 +30341;7;0.2700479;-0.84745294;0.4570532;0.0;0.9602771;0.2717075;-0.06358448;0.0;-0.07029993 +30341;0;-0.67349243;4.180893;8.221359 +30341;3;-0.19876099;0.064453125;0.0018463135 +30342;12;0.12409654;0.16927981;0.6586395;0.7225915 +30343;5;999.5878 +30343;0;-0.71647644;4.176132;8.269058 +30344;1;-0.772845;3.9404387;8.950518 +30344;2;-0.20690125;-0.23465872;0.8161516; +30345;3;-0.20243835;0.07118225;0.0048980713 +30348;0;-0.73558044;4.185623;8.288132 +30348;3;-0.20487976;0.07728577;0.0073394775 +30348;12;0.123687774;0.1690979;0.65873563;0.72261655 +30348;1;-0.7759248;3.9323752;8.953796 +30349;0;-0.75468445;4.180893;8.340591 +30349;3;-0.20610046;0.08277893;0.0073394775 +30352;4;21.342468;-20.991516;-52.6474 +30352;6;-1.2493668;-0.46303228;0.09023759 +30352;7;0.27644813;-0.8488798;0.45053244;0.0;0.9576408;0.28265718;-0.055037193;0.0;-0.08062625 +30352;0;-0.7785797;4.142868;8.38829 +30352;12;0.123244174;0.1689253;0.65884626;0.7226319 +30352;3;-0.20732117;0.08584595;0.009780884 +30354;0;-0.7642517;4.1523743;8.46936 +30354;1;-0.7794155;3.9240875;8.9571295 +30354;3;-0.20976257;0.09194946;0.0116119385 +30359;12;0.1227773;0.1687618;0.65896624;0.72264016 +30359;0;-0.7929077;4.1618805;8.536133 +30359;3;-0.21159363;0.09805298;0.015899658 +30359;1;-0.7832479;3.9156067;8.9605055 +30359;0;-0.7499237;4.176132;8.588608 +30359;3;-0.21342468;0.10417175;0.019561768 +30361;4;21.342468;-20.690918;-50.9964 +30361;6;-1.3186148;-0.4510882;0.08709521 +30361;7;0.21184999;-0.8715075;0.44226047;0.0;0.97416186;0.22455871;-0.024129614;0.0;-0.0782843 +30361;0;-0.7738037;4.1523743;8.574295 +30361;12;0.122289;0.16860673;0.65910023;0.7226369 +30361;3;-0.2164917;0.11088562;0.022003174 +30363;0;-0.8072357;4.176132;8.65538 +30363;1;-0.7875044;3.90694;8.963915 +30363;2;-0.08157104;-0.24071479;0.4699459; +30363;3;-0.2189331;0.11210632;0.022613525 +30365;0;-0.840683;4.133362;8.703064 +30365;12;0.12177182;0.16846493;0.6592514;0.7226194 +30366;3;-0.22320557;0.11639404;0.025665283 +30368;1;-0.7920495;3.8979237;8.967439 +30368;0;-0.850235;4.123871;8.769836 +30369;3;-0.22442627;0.12005615;0.030548096 +30370;4;21.342468;-20.991516;-53.697205 +30370;6;-1.296629;-0.43775347;0.09664788 +30370;7;0.23010394;-0.87187904;0.43229532;0.0;0.9692336;0.2452159;-0.0213416;0.0;-0.08739837 +30370;0;-0.845459;4.109619;8.76506 +30371;3;-0.22625732;0.12309265;0.03666687 +30372;12;0.12123116;0.1683216;0.6594119;0.72259724 +30372;0;-0.874115;4.133362;8.807983 +30373;1;-0.7967428;3.8887312;8.971013 +30373;3;-0.22747803;0.12738037;0.04399109 +30374;0;-0.840683;4.1381226;8.822296 +30375;12;0.120675415;0.16818188;0.6595934;0.7225572 +30376;3;-0.22808838;0.13287354;0.050094604 +30377;0;-0.850235;4.1381226;8.855682 +30378;3;-0.22625732;0.13409424;0.054992676 +30378;1;-0.80152524;3.879488;8.974588 +30380;4;19.84253;-21.440125;-51.597595 +30380;6;-1.3696724;-0.43537727;0.09571672 +30380;7;0.1593616;-0.8884341;0.43045175;0.0;0.98340976;0.18113427;0.009776048;0.0;-0.08665494 +30380;0;-0.883667;4.133362;8.922455 +30380;3;-0.22503662;0.13775635;0.058654785 +30381;12;0.12010628;0.1680481;0.65980154;0.7224931 +30382;5;999.5878 +30382;0;-0.87890625;4.133362;8.994003 +30382;1;-0.8064088;3.8703148;8.978111 +30382;2;-0.011684954;-0.24231815;0.13446903; +30383;3;-0.22564697;0.14204407;0.061706543 +30387;0;-0.859787;4.11911;9.017838 +30387;3;-0.22686768;0.14692688;0.062316895 +30387;12;0.11953372;0.16792206;0.6600277;0.72241086 +30387;1;-0.81155115;3.8610766;8.981625 +30387;0;-0.897995;4.100113;9.056 +30387;3;-0.22686768;0.15182495;0.062927246 +30391;12;0.118946984;0.16780698;0.66026485;0.72231764 +30391;4;20.593262;-20.240784;-51.597595 +30391;6;-1.3490659;-0.42330405;0.09883712 +30391;7;0.17930333;-0.8894159;0.4204637;0.0;0.9796716;0.20050737;0.0063645467;0.0;-0.08996679 +30391;0;-0.86935425;4.11911;9.079834 +30391;3;-0.22930908;0.15548706;0.06109619 +30392;1;-0.8170328;3.8518085;8.985106 +30392;0;-0.816803;4.185623;9.041687 +30392;3;-0.23114014;0.15119934;0.057434082 +30394;0;-0.86935425;4.214142;9.132294 +30395;12;0.11834879;0.16770644;0.66050553;0.72221917 +30395;3;-0.23236084;0.14570618;0.058044434 +30397;1;-0.8224137;3.842408;8.98864 +30397;0;-0.90756226;4.2426453;9.19429 +30397;3;-0.22930908;0.14265442;0.05987549 +30399;4;20.292664;-21.440125;-52.046204 +30399;6;-1.3768402;-0.43048796;0.0983906 +30399;7;0.15158519;-0.8917224;0.42644235;0.0;0.9844048;0.17515694;0.016344912;0.0;-0.08926947 +30399;0;-0.97442627;4.185623;9.227692 +30399;3;-0.22991943;0.14387512;0.06904602 +30400;12;0.117745735;0.1675947;0.66073793;0.72213113 +30401;0;-0.97442627;4.142868;9.242004 +30401;1;-0.8275553;3.8330247;8.992173 +30401;2;0.005795002;-0.31333137;-0.14518547; +30401;3;-0.23052979;0.14387512;0.079422 +30405;0;-0.98876953;4.1523743;9.256302 +30406;12;0.11715254;0.16747396;0.6609794;0.72203463 +30406;3;-0.23175049;0.13897705;0.08918762 +30407;0;-1.0174255;4.1523743;9.237228 +30407;1;-0.8323183;3.8235824;8.995752 +30407;3;-0.23420715;0.12982178;0.0965271 +30408;4;20.892334;-19.79065;-53.097534 +30408;6;-1.2849226;-0.42020947;0.109701835 +30408;7;0.23744996;-0.8759498;0.4199159;0.0;0.96624327;0.25746316;-0.009310462;0.0;-0.09995739 +30408;0;-0.9983368;4.1381226;9.227692 +30408;3;-0.23603821;0.11943054;0.10079956 +30411;12;0.11656438;0.1673422;0.6612526;0.7219102 +30411;0;-0.98876953;4.1571198;9.275375 +30411;3;-0.23725891;0.10600281;0.103256226 +30411;1;-0.8360539;3.8140924;8.999434 +30414;17;1;38dead6d7725;10532;2720;-75; +30414;17;1;38dead6d60ff;9628;959;-70; +30415;17;1;1c1bb5efa29a;3442;3944;-71; +30415;17;1;1c1bb5ecd182;-1623;2863;-44; +30415;0;-0.9553375;4.1618805;9.361221 +30415;12;0.116006054;0.16716984;0.66155;0.72176766 +30415;3;-0.23664856;0.09439087;0.10813904 +30415;0;-0.9696655;4.1381226;9.427994 +30415;1;-0.8385532;3.804495;9.003264 +30416;3;-0.23664856;0.085235596;0.1124115 +30417;4;21.792603;-21.740723;-51.446533 +30417;6;-1.4829639;-0.41166776;0.10248925 +30417;7;0.046478923;-0.912922;0.40547884;0.0;0.994509;0.080390975;0.06699977;0.0;-0.093762405 +30418;0;-0.92666626;4.1476135;9.4852295 +30418;3;-0.23542786;0.07911682;0.118515015 +30418;12;0.115484774;0.16694586;0.66185397;0.72162443 +30419;5;999.5878 +30420;0;-0.93144226;4.180893;9.4804535 +30421;1;-0.8400474;3.794961;9.007147 +30421;2;0.06963915;-0.34156203;-0.35002518; +30421;3;-0.23236084;0.07484436;0.12583923 +30424;0;-0.94099426;4.133362;9.4852295 +30425;12;0.114998855;0.16668926;0.66216934;0.721472 +30426;1;-0.8408772;3.785743;9.010948 +30426;3;-0.22747803;0.0693512;0.13134766 +30426;0;-0.9219055;4.176132;9.4756775 +30426;3;-0.22198486;0.06384277;0.13562012 +30431;1;-0.84100723;3.7770452;9.014585 +30431;12;0.114546284;0.1664205;0.66250205;0.72130054 +30431;4;21.342468;-20.39032;-51.446533 +30431;6;-1.4046681;-0.41337532;0.09698653 +30431;7;0.12622482;-0.9031622;0.41032338;0.0;0.9880301;0.15143642;0.029385954;0.0;-0.088678196 +30431;0;-0.90278625;4.1523743;9.528137 +30431;3;-0.21403503;0.056518555;0.13928223 +30431;0;-0.9219055;4.142868;9.561539 +30432;3;-0.20487976;0.05102539;0.14294434 +30433;12;0.114136264;0.16614455;0.6628424;0.7211165 +30433;0;-0.850235;4.1381226;9.566299 +30433;3;-0.19265747;0.04673767;0.1478424 +30434;0;-0.835907;4.185623;9.590164 +30434;1;-0.84042066;3.7692223;9.017914 +30435;3;-0.17921448;0.04246521;0.15150452 +30437;4;21.342468;-21.740723;-52.197266 +30437;6;-1.479246;-0.41014284;0.08694322 +30437;7;0.05659804;-0.91322345;0.40350926;0.0;0.99521625;0.083840236;0.05015395;0.0;-0.079632066 +30437;0;-0.826355;4.1951294;9.609222 +30438;12;0.11378491;0.1658766;0.6631858;0.7209179 +30438;3;-0.16517639;0.040634155;0.15577698 +30439;1;-0.8393265;3.7625887;9.020784 +30439;2;-0.02741313;-0.38240504;-0.5490484; +30440;0;-0.7929077;4.1713715;9.637848 +30440;3;-0.14929199;0.041244507;0.15945435 +30442;0;-0.76901245;4.190384;9.652161 +30442;12;0.11349571;0.16563278;0.6635313;0.7207016 +30442;3;-0.13218689;0.04185486;0.16311646 +30444;0;-0.7881317;4.1951294;9.623535 +30444;1;-0.8380607;3.7573564;9.023084 +30444;3;-0.114471436;0.044906616;0.16737366 +30446;4;21.342468;-19.641113;-52.946472 +30446;6;-1.3554354;-0.40986386;0.081713915 +30446;7;0.18121283;-0.89598763;0.40542313;0.0;0.9805902;0.19600032;-0.0051345453;0.0;-0.074862584 +30448;12;0.1132651;0.16543572;0.66387576;0.72046584 +30449;0;-0.73080444;4.1523743;9.656921 +30449;3;-0.09614563;0.05041504;0.17225647 +30449;0;-0.70692444;4.142868;9.642624 +30449;1;-0.83683467;3.753639;9.024744 +30449;3;-0.07720947;0.053466797;0.17713928 +30451;0;-0.71170044;4.166626;9.618759 +30451;12;0.11309047;0.165301;0.6642248;0.7202025 +30452;3;-0.058883667;0.0546875;0.18203735 +30453;0;-0.6639252;4.2283936;9.59491 +30454;1;-0.8356762;3.75165;9.025679 +30454;3;-0.041168213;0.0546875;0.18753052 +30456;4;21.192932;-20.541382;-51.597595 +30456;6;-1.429484;-0.41420528;0.069085434 +30456;7;0.11300124;-0.90631133;0.40722275;0.0;0.99158317;0.12893233;0.011793792;0.0;-0.06319303 +30456;0;-0.63049316;4.209381;9.547226 +30456;3;-0.023452759;0.057128906;0.19180298 +30457;12;0.11298026;0.16523509;0.66457754;0.7199094 +30458;5;999.5878 +30458;0;-0.5779419;4.190384;9.523392 +30459;1;-0.83431685;3.751287;9.025955 +30459;2;-0.19942266;-0.41651702;-0.59442997; +30459;3;-0.007583618;0.05895996;0.19607544 +30460;0;-0.5397186;4.256897;9.528137 +30461;12;0.11293744;0.16522372;0.6649346;0.719589 +30461;3;0.007080078;0.064453125;0.20219421 +30463;0;-0.5158386;4.2711487;9.499542 +30463;1;-0.8329403;3.752431;9.025607 +30463;3;0.021133423;0.06752014;0.20524597 +30466;4;21.192932;-20.840454;-52.3468 +30466;6;-1.4156107;-0.4219844;0.054248143 +30466;7;0.13239542;-0.9013151;0.41243517;0.0;0.989962;0.14100489;-0.009641748;0.0;-0.049465112 +30467;0;-0.47763062;4.290146;9.43277 +30467;3;0.037017822;0.0717926;0.21134949 +30468;12;0.11295046;0.16527158;0.6652968;0.7192411 +30468;0;-0.47283936;4.3329163;9.337372 +30468;3;0.05168152;0.07728577;0.21624756 +30468;1;-0.8316754;3.7550051;9.0246525 +30471;0;-0.46806335;4.3329163;9.351685 +30471;12;0.113010496;0.16538145;0.66566694;0.7188638 +30471;3;0.06451416;0.08218384;0.21929932 +30473;0;-0.42507935;4.3519135;9.318314 +30473;1;-0.8306466;3.7588928;9.023129 +30473;3;0.077941895;0.08706665;0.22113037 +30476;4;21.192932;-19.79065;-52.046204 +30476;6;-1.3380878;-0.43652543;0.045586023 +30476;7;0.2116269;-0.88179916;0.42147878;0.0;0.9764776;0.20898837;-0.05305883;0.0;-0.041296937 +30476;0;-0.40119934;4.370926;9.289688 +30476;3;0.08833313;0.09378052;0.22479248 +30476;12;0.11311186;0.16554981;0.66604006;0.71846336 +30477;0;-0.40119934;4.413666;9.246765 +30477;1;-0.82991993;3.764015;9.021061 +30478;2;-0.43053603;-0.5477021;-0.36715317; +30478;3;0.09565735;0.09866333;0.22784424 +30480;0;-0.40596008;4.480179;9.179993 +30480;12;0.1132478;0.16578232;0.6664189;0.71803695 +30480;3;0.10298157;0.10417175;0.23335266 +30482;0;-0.41552734;4.4421844;9.146606 +30482;1;-0.82954246;3.7699604;9.018613 +30483;3;0.10848999;0.11027527;0.23394775 +30485;4;20.742798;-20.991516;-52.6474 +30485;6;-1.331017;-0.45170885;0.04539846 +30485;7;0.21800058;-0.8739624;0.43435642;0.0;0.97509414;0.21366882;-0.059473213;0.0;-0.040831078 +30485;0;-0.38208008;4.480179;9.156143 +30486;3;0.1121521;0.11515808;0.23701477 +30486;12;0.113398105;0.1660574;0.6668045;0.7175915 +30488;0;-0.40119934;4.503952;9.03215 +30488;1;-0.8295337;3.7764611;9.015893 +30488;3;0.11276245;0.11883545;0.24067688 +30489;0;-0.38208008;4.546707;9.003525 +30490;12;0.11355657;0.16637295;0.6671962;0.7171291 +30490;3;0.11764526;0.120651245;0.24433899 +30492;0;-0.40119934;4.5799713;8.936752 +30492;1;-0.82969743;3.783338;9.012994 +30492;3;0.11582947;0.120651245;0.24679565 +30494;4;20.892334;-19.79065;-51.14746 +30494;6;-1.2537154;-0.47317895;0.04486307 +30494;7;0.29206133;-0.8457511;0.4465482;0.0;0.95556617;0.27753562;-0.09933503;0.0;-0.039920308 +30495;0;-0.42507935;4.603714;8.955841 +30495;3;0.1133728;0.121276855;0.25167847 +30495;12;0.11371795;0.16671139;0.66759884;0.7166502 +30497;5;999.5886 +30497;0;-0.4298401;4.603714;8.917694 +30497;3;0.1109314;0.12005615;0.25411987 +30498;1;-0.8298312;3.7902665;9.010071 +30498;2;-0.48870456;-0.7254939;-0.043208122; +30501;0;-0.41073608;4.6417236;8.860458 +30501;3;0.106048584;0.120651245;0.25778198 +30501;12;0.1138808;0.16705158;0.6680127;0.7161592 +30504;0;-0.44895935;4.627472;8.84137 +30504;1;-0.82981396;3.7970297;9.007224 +30504;3;0.10054016;0.117614746;0.26083374 +30505;4;20.593262;-20.240784;-52.3468 +30505;6;-1.2097261;-0.48165414;0.050735813 +30505;7;0.33084288;-0.8290852;0.45073372;0.0;0.9426151;0.3130835;-0.1159989;0.0;-0.044944305 +30506;0;-0.46328735;4.6559753;8.81752 +30506;3;0.09260559;0.11210632;0.26390076 +30506;12;0.11403709;0.16738234;0.6684383;0.71565986 +30509;1;-0.82947963;3.8033695;9.00458 +30509;0;-0.46328735;4.7224884;8.822296 +30509;3;0.08528137;0.10722351;0.26634216 +30512;12;0.11418684;0.16768703;0.66887814;0.7151535 +30512;0;-0.47763062;4.703491;8.76506 +30512;3;0.08039856;0.10050964;0.26878357 +30513;1;-0.8285796;3.8091834;9.002205 +30517;0;-0.46328735;4.7414856;8.807983 +30517;3;0.07122803;0.09194946;0.26937866 +30517;4;19.993591;-21.290588;-52.946472 +30517;6;-1.1950247;-0.4932528;0.05255015 +30517;7;0.34334847;-0.8193394;0.4591238;0.0;0.9380678;0.32324418;-0.124666736;0.0;-0.046264727 +30517;0;-0.44418335;4.73674;8.836609 +30517;3;0.062057495;0.085235596;0.27122498 +30518;12;0.11433367;0.16794868;0.66932917;0.7146465 +30518;0;-0.48239136;4.7414856;8.846146 +30518;1;-0.82695115;3.8142862;9.000194 +30518;2;-0.4352458;-0.8697741;0.1640625; +30518;3;0.05290222;0.07728577;0.27183533 +30519;0;-0.47763062;4.717743;8.898605 +30519;12;0.11447532;0.1681568;0.6697869;0.71414584 +30520;3;0.044952393;0.06813049;0.27059937 +30521;1;-0.8246136;3.8185747;8.9985895 +30521;0;-0.44895935;4.750992;8.922455 +30521;3;0.037017822;0.060180664;0.27000427 +30523;4;19.84253;-22.491455;-52.046204 +30524;6;-1.28702;-0.48876515;0.050275516 +30524;7;0.25697672;-0.8476012;0.46425778;0.0;0.9653985;0.2472007;-0.08305156;0.0;-0.044370223 +30524;0;-0.46328735;4.73674;8.884293 +30524;3;0.029693604;0.052856445;0.27000427 +30524;12;0.114612795;0.16830793;0.6702507;0.7136529 +30526;0;-0.46806335;4.717743;8.931976 +30526;1;-0.8216021;3.8221707;8.997338 +30526;3;0.021743774;0.044296265;0.26815796 +30530;12;0.11474688;0.16840456;0.67071235;0.71317464 +30530;0;-0.45851135;4.7224884;8.965378 +30530;3;0.01625061;0.037582397;0.26693726 +30531;0;-0.44895935;4.684494;8.994003 +30531;3;0.009521484;0.03147888;0.26449585 +30531;1;-0.81794494;3.825064;8.996442 +30534;4;21.342468;-20.39032;-51.74713 +30534;6;-1.2486761;-0.47967562;0.04987623 +30534;7;0.29436022;-0.84151554;0.4529941;0.0;0.95467055;0.28085086;-0.09862526;0.0;-0.044229086 +30534;0;-0.47763062;4.6749725;9.03215 +30534;3;0.0052490234;0.024139404;0.26083374 +30534;12;0.11487707;0.16844898;0.6711716;0.712711 +30535;5;999.5886 +30535;0;-0.44895935;4.703491;9.051224 +30535;1;-0.813823;3.827377;8.9958315 +30536;2;-0.41813338;-0.8757138;0.025149345; +30536;3;0.0015869141;0.016815186;0.25595093 +30538;0;-0.45851135;4.670227;9.108459 +30538;12;0.11500561;0.16845201;0.6716235;0.71226364 +30538;3;-0.0020751953;0.009490967;0.25534058 +30541;0;-0.42507935;4.6179657;9.189545 +30541;1;-0.8091683;3.8292189;8.995467 +30541;3;-0.0057373047;0.005218506;0.25105286 +30544;12;0.11513693;0.16841234;0.6720634;0.7118368 +30544;4;20.742798;-20.991516;-51.446533 +30544;6;-1.318663;-0.465236;0.046223894 +30544;7;0.22912915;-0.86545855;0.44551238;0.0;0.9725196;0.2229556;-0.06705482;0.0;-0.041296307 +30545;0;-0.42507935;4.5894623;9.213379 +30545;3;-0.010025024;-2.89917E-4;0.24801636 +30546;0;-0.39163208;4.560959;9.232452 +30546;1;-0.80412304;3.8305874;8.9953375 +30546;3;-0.010620117;-0.0063934326;0.24250793 +30548;0;-0.38685608;4.546707;9.284912 +30548;12;0.11526796;0.16833906;0.67249376;0.7114264 +30548;3;-0.012466431;-0.011886597;0.23884583 +30550;0;-0.38685608;4.560959;9.256302 +30550;1;-0.79868597;3.8317099;8.995344 +30550;3;-0.012466431;-0.01676941;0.23516846 +30555;4;19.84253;-20.541382;-52.046204 +30555;6;-1.2997645;-0.45747766;0.041769497 +30555;7;0.24972187;-0.8644184;0.43637115;0.0;0.9675926;0.24019538;-0.07791472;0.0;-0.03746342 +30555;0;-0.35820007;4.4991913;9.304001 +30555;3;-0.010620117;-0.022277832;0.22969055 +30555;12;0.115407415;0.16823988;0.67291;0.7110336 +30556;1;-0.7929247;3.8326983;8.995432 +30556;2;-0.4656952;-0.72545075;-0.25846672; +30556;0;-0.3199768;4.494446;9.361221 +30556;3;-0.007583618;-0.024108887;0.22662354 +30557;0;-0.2960968;4.432678;9.418457 +30557;12;0.11555729;0.1681182;0.6733079;0.7106612 +30557;3;-0.0045166016;-0.027160645;0.22418213 +30559;0;-0.25309753;4.4184265;9.451843 +30559;3;9.765625E-4;-0.0289917;0.22052002 +30559;1;-0.78695047;3.8337605;8.995504 +30561;4;18.34259;-20.991516;-52.6474 +30561;6;-1.3685431;-0.43714687;0.026771188 +30561;7;0.18970366;-0.8874965;0.41995525;0.0;0.9815419;0.18198723;-0.058789738;0.0;-0.024250817 +30563;0;-0.21009827;4.375656;9.466141 +30564;12;0.1157227;0.16798943;0.67368996;0.7103026 +30564;3;0.0052490234;-0.026550293;0.21624756 +30564;0;-0.18144226;4.370926;9.4423065 +30564;3;0.010147095;-0.021057129;0.21258545 +30564;1;-0.78091747;3.83512;8.995451 +30567;0;-0.16711426;4.3614197;9.4470825 +30567;12;0.11590509;0.16787057;0.6740575;0.7099521 +30567;3;0.015640259;-0.018615723;0.20829773 +30568;0;-0.18621826;4.2854004;9.4470825 +30569;1;-0.77535397;3.8368118;8.995211 +30569;3;0.025405884;-0.018615723;0.20280457 +30571;4;21.342468;-20.39032;-53.697205 +30571;6;-1.3865817;-0.42578846;0.01970917 +30571;7;0.17513658;-0.8953044;0.40958163;0.0;0.9843805;0.16681951;-0.05626909;0.0;-0.017948242 +30571;0;-0.20054626;4.2283936;9.48999 +30571;3;0.03274536;-0.01676941;0.19792175 +30572;12;0.116081804;0.16777922;0.6744102;0.70960975 +30574;0;-0.171875;4.223633;9.518616 +30575;1;-0.7700855;3.8390212;8.99472 +30575;2;-0.62996566;-0.4891765;-0.47536182; +30575;3;0.04006958;-0.014953613;0.19607544 +30581;1;-0.7650588;3.84177;8.993976 +30581;12;0.11627637;0.1677163;0.6747405;0.70927876 +30581;12;0.11648679;0.16768117;0.67505246;0.7089557 +30582;5;999.5886 +30583;0;-0.157547;4.180893;9.494766 +30583;1;-0.76038015;3.845031;8.992978 +30584;3;0.047409058;-0.012496948;0.19302368 +30584;0;-0.15278625;4.176132;9.556763 +30585;3;0.054122925;-0.008834839;0.18997192 +30585;4;20.4422;-19.940186;-51.74713 +30585;6;-1.4402802;-0.41192862;0.015985876 +30585;7;0.12378357;-0.9085566;0.39900175;0.0;0.9922011;0.11925922;-0.036251567;0.0;-0.014648041 +30585;0;-0.11456299;4.1523743;9.528137 +30586;12;0.116705455;0.16768001;0.67535394;0.7086328 +30587;3;0.060836792;-0.0063934326;0.18630981 +30588;0;-0.138443;4.1286316;9.54245 +30588;3;0.070007324;-0.004562378;0.18203735 +30588;0;-0.12890625;4.142868;9.537689 +30588;1;-0.7560146;3.8489451;8.9916725 +30589;3;0.077941895;-0.0039520264;0.17591858 +30589;0;-0.11933899;4.11911;9.556763 +30590;3;0.086502075;-0.0063934326;0.17286682 +30590;4;19.242859;-22.190857;-53.097534 +30590;6;-1.5315205;-0.40692618;0.012486737 +30590;7;0.03432456;-0.9176335;0.39594266;0.0;0.9993449;0.036059413;-0.0030629495;0.0;-0.011466794 +30591;0;-0.100234985;4.1048584;9.585388 +30591;3;0.09565735;-0.007003784;0.16798401 +30592;12;0.116942056;0.16771112;0.67563444;0.70831895 +30593;0;-0.12411499;4.0763702;9.575851 +30593;1;-0.75168765;3.853493;8.990087 +30593;2;-0.6919511;-0.27275467;-0.5670662; +30593;3;0.10726929;-0.0076141357;0.16249084 +30595;0;-0.143219;4.0811005;9.556763 +30596;12;0.11720533;0.16776787;0.6758927;0.7080155 +30596;3;0.11886597;-0.007003784;0.15881348 +30598;1;-0.7475521;3.8589513;8.9880905 +30598;0;-0.13366699;4.090622;9.54245 +30598;3;0.1304779;-0.0051727295;0.15515137 +30601;4;21.043396;-22.04132;-51.74713 +30601;6;-1.5588793;-0.40494487;0.014006702 +30601;7;0.0063979845;-0.9190589;0.39406836;0.0;0.9998967;0.010952994;0.009310881;0.0;-0.012873476 +30601;0;-0.13366699;4.0763702;9.54245 +30601;3;0.14453125;-8.8500977E-4;0.15148926 +30601;12;0.11750304;0.16786246;0.6761254;0.7077215 +30602;0;-0.143219;4.0763702;9.528137 +30603;1;-0.7437178;3.8654583;8.985612 +30603;3;0.15797424;0.0027770996;0.1508789 +30605;0;-0.157547;4.0811005;9.528137 +30605;3;0.17202759;0.009490967;0.14782715 +30605;12;0.11783304;0.16800766;0.67633784;0.7074292 +30607;1;-0.7404052;3.8731153;8.982588 +30615;0;-0.171875;4.11911;9.494766 +30615;3;0.18545532;0.016204834;0.1459961 +30616;4;20.892334;-20.840454;-51.14746 +30616;6;-1.5017173;-0.40926567;0.018100102 +30616;7;0.061827622;-0.91522527;0.39817095;0.0;0.99794865;0.06332356;-0.009406686;0.0;-0.016604366 +30617;0;-0.147995;4.1618805;9.4852295 +30617;12;0.11819361;0.16821639;0.67653286;0.7071329 +30617;3;0.19950867;0.024749756;0.14292908 +30617;0;-0.138443;4.214142;9.4423065 +30617;1;-0.73777014;3.8820412;8.9789505 +30617;2;-0.6627838;-0.22159576;-0.5460882; +30617;3;0.21356201;0.033920288;0.14233398 +30617;5;999.5886 +30617;12;0.118581556;0.16849919;0.67671186;0.70682925 +30617;0;-0.12890625;4.2854004;9.4470825 +30617;3;0.22761536;0.04246521;0.14355469 +30617;0;-0.07635498;4.347168;9.413681 +30618;1;-0.73586804;3.8923104;8.97466 +30618;3;0.24043274;0.051635742;0.14355469 +30619;17;1;38dead6d7725;16944;1651;-81; +30620;17;1;38dead6d60ff;13652;790;-66; +30620;17;1;1c1bb5efa29a;2738;4145;-69; +30621;17;1;1c1bb5ecd182;-837;1049;-47; +30621;4;20.742798;-21.290588;-51.446533 +30621;6;-1.4576823;-0.4326047;0.008110887 +30621;7;0.1094907;-0.902075;0.4174596;0.0;0.9939605;0.1024748;-0.039260022;0.0;-0.007363606 +30622;0;-0.047683716;4.4231873;9.385086 +30622;3;0.25021362;0.059570312;0.14477539 +30622;12;0.118996926;0.1688607;0.6768811;0.706511 +30622;0;-0.047683716;4.513443;9.356461 +30622;1;-0.73461145;3.903893;8.969731 +30622;3;0.25938416;0.06996155;0.1472168 +30624;0;-0.038131714;4.627472;9.308762 +30624;12;0.11943799;0.1693019;0.67704713;0.7061718 +30624;3;0.26914978;0.084625244;0.1508789 +30627;0;-0.028564453;4.7224884;9.294464 +30627;1;-0.73417073;3.9164717;8.964282 +30627;3;0.27464294;0.09561157;0.15148926 +30628;4;21.192932;-20.541382;-51.14746 +30628;6;-1.3426183;-0.47010222;0.0030732662 +30628;7;0.22484598;-0.86841387;0.4419294;0.0;0.97439045;0.20166501;-0.0994708;0.0;-0.00273988 +30629;0;-0.06201172;4.793747;9.246765 +30629;3;0.27830505;0.108444214;0.15454102 +30629;12;0.1198836;0.16981457;0.6772172;0.7058101 +30631;0;-0.13366699;4.841263;9.256302 +30631;1;-0.73478997;3.929739;8.958423 +30631;2;-0.7372317;-0.63165164;-0.38988972; +30631;3;0.27770996;0.12187195;0.15699768 +30633;0;-0.12890625;4.879257;9.199066 +30634;12;0.120311856;0.17039572;0.6773939;0.70542747 +30634;3;0.2740326;0.13349915;0.15943909 +30636;0;-0.17666626;4.94104;9.227692 +30636;1;-0.7364684;3.9430892;8.952416 +30636;3;0.26426697;0.14387512;0.1631012 +30638;4;20.742798;-20.39032;-52.6474 +30638;6;-1.2274079;-0.49153364;0.019142888 +30638;7;0.3281109;-0.83014107;0.45078734;0.0;0.94448847;0.29682013;-0.14085223;0.0;-0.016875532 +30638;0;-0.22442627;4.9885406;9.213379 +30638;3;0.24960327;0.15304565;0.16737366 +30639;12;0.120707504;0.17101923;0.67755574;0.7050535 +30640;0;-0.3343048;5.007553;9.232452 +30641;1;-0.7390507;3.95571;8.946634 +30641;3;0.23127747;0.16159058;0.16859436 +30643;0;-0.38685608;5.0455627;9.237228 +30643;12;0.12102761;0.1716582;0.6777703;0.70463693 +30643;3;0.20928955;0.16830444;0.17103577 +30645;0;-0.49195862;5.1263123;9.275375 +30646;1;-0.74243736;3.966821;8.941433 +30647;3;0.18484497;0.17503357;0.17286682 +30649;4;21.792603;-22.04132;-50.9964 +30649;6;-1.272194;-0.5043038;0.05298956 +30649;7;0.26931173;-0.83676845;0.4767491;0.0;0.961936;0.2575619;-0.09132891;0.0;-0.04637124 +30650;0;-0.5540619;5.121567;9.227692 +30650;3;0.15492249;0.18052673;0.17591858 +30650;12;0.12125696;0.17227371;0.67800987;0.7042167 +30650;1;-0.7464775;3.9758267;8.937096 +30650;0;-0.6495819;5.140564;9.237228 +30650;2;-0.45177633;-1.0495362;-0.30327415; +30651;3;0.12376404;0.18052673;0.17713928 +30651;5;999.5886 +30653;0;-0.75468445;5.121567;9.270599 +30653;12;0.1213744;0.17283483;0.6782794;0.7037993 +30653;3;0.09138489;0.17808533;0.17713928 +30655;0;-0.8072357;5.107315;9.356461 +30655;1;-0.7507378;3.9820952;8.933948 +30656;3;0.058395386;0.17686462;0.17469788 +30657;4;20.593262;-21.890259;-51.14746 +30657;6;-1.2166156;-0.4981011;0.08606264 +30658;7;0.30702108;-0.82396424;0.47625735;0.0;0.9487022;0.30468026;-0.08446267;0.0;-0.075511985 +30658;0;-0.897995;5.074051;9.4423065 +30658;3;0.022354126;0.17259216;0.17347717 +30659;12;0.12137443;0.17329712;0.67857844;0.7033972 +30660;0;-0.95054626;5.0027924;9.518616 +30660;1;-0.7550168;3.9852986;8.932158 +30660;3;-0.017333984;0.16893005;0.17469788 +30664;0;-1.0652008;4.960037;9.580612 +30664;12;0.12125353;0.17364182;0.67889893;0.7030238 +30664;3;-0.05644226;0.16647339;0.1789856 +30667;0;-1.1559601;4.9030304;9.566299 +30667;1;-0.7591622;3.9850426;8.931922 +30668;3;-0.09309387;0.16464233;0.1802063 +30669;4;20.292664;-21.141052;-52.796936 +30669;6;-1.1590313;-0.4706868;0.12025367 +30669;7;0.34748086;-0.8167621;0.46060476;0.0;0.93157154;0.35670555;-0.07025483;0.0;-0.106918804 +30669;12;0.12100318;0.1738512;0.6792528;0.7026732 +30669;0;-1.2132874;4.8555145;9.561539 +30669;3;-0.13218689;0.15670776;0.17959595 +30671;1;-0.7631225;3.981427;8.933196 +30671;2;0.18019998;-0.98822784;-0.5647955; +30671;0;-1.2849579;4.7700043;9.618759 +30671;3;-0.1663971;0.14387512;0.1777649 +30672;0;-1.3088379;4.684494;9.690308 +30672;12;0.12062587;0.17392138;0.6796413;0.70234495 +30672;3;-0.19754028;0.13165283;0.1777649 +30675;1;-0.76627266;3.9746203;8.935957 +30675;0;-1.4043732;4.6179657;9.709381 +30675;3;-0.22930908;0.116989136;0.181427 +30677;4;20.593262;-22.190857;-53.097534 +30677;6;-1.2992065;-0.43995082;0.14364465 +30677;7;0.20676775;-0.87160873;0.4444607;0.0;0.96977925;0.24271727;0.024828762;0.0;-0.12951925 +30678;0;-1.590683;4.480179;9.795227 +30678;3;-0.25863647;0.105392456;0.18814087 +30678;12;0.120151766;0.17384;0.68004614;0.70205456 +30679;0;-1.8247681;4.389923;9.876312 +30680;1;-0.7685832;3.9648943;8.940079 +30680;3;-0.28489685;0.09011841;0.19914246 +30682;0;-1.8629761;4.3376617;9.900162 +30682;12;0.119595714;0.17361562;0.68048024;0.7017843 +30682;3;-0.30628967;0.06568909;0.21318054 +30684;0;-1.8199768;4.252136;9.957382 +30684;1;-0.7692308;3.9528525;8.9453535 +30684;3;-0.32766724;0.03819275;0.22662354 +30687;4;18.94226;-22.491455;-52.046204 +30687;6;-1.5264746;-0.39769122;0.18078113 +30687;7;-0.02598055;-0.9210522;0.3885716;0.0;0.9858228;0.040849395;0.1627413;0.0;-0.16576615 +30688;0;-1.7722168;4.1476135;10.028931 +30688;3;-0.34294128;0.009490967;0.24067688 +30689;12;0.11901037;0.17323497;0.6809637;0.7015089 +30689;0;-1.7674255;4.0763702;10.08139 +30689;1;-0.76696295;3.938976;8.951667 +30689;3;-0.35697937;-0.01739502;0.25227356 +30689;2;0.831288;-0.4292736;-0.93677235; +30689;5;999.58356 +30691;0;-1.7005615;3.9955902;10.219696 +30692;12;0.118452296;0.17267932;0.68149614;0.7012232 +30692;3;-0.36553955;-0.042434692;0.2590027 +30694;0;-1.6480103;3.933838;10.3293915 +30694;1;-0.7618158;3.9237385;8.958796 +30694;3;-0.37225342;-0.06442261;0.26205444 +30696;4;18.94226;-22.491455;-52.046204 +30696;6;-1.7505739;-0.35971963;0.15821229 +30696;7;-0.2311442;-0.92091054;0.31384084;0.0;0.9616784;-0.16736607;0.21717124;0.0;-0.14746898 +30697;0;-1.552475;3.8768158;10.396164 +30697;3;-0.37408447;-0.083358765;0.26327515 +30698;12;0.11794289;0.1719662;0.68206674;0.70092946 +30698;1;-0.7545474;3.9079154;8.966324 +30699;0;-1.5381317;3.7770538;10.434326 +30700;3;-0.37042236;-0.099853516;0.26449585 +30701;0;-1.4617004;3.7628021;10.477234 +30701;12;0.11748891;0.17115228;0.6826393;0.7006475 +30705;3;-0.36309814;-0.1126709;0.26205444 +30706;1;-0.74577075;3.892235;8.973875 +30706;0;-1.4187012;3.70578;10.558319 +30706;3;-0.34965515;-0.123672485;0.25961304 +30707;4;21.043396;-20.690918;-51.74713 +30707;6;-1.6969953;-0.33476338;0.13356808 +30707;7;-0.1681481;-0.936977;0.30626833;0.0;0.9777044;-0.11887729;0.17309608;0.0;-0.12577869 +30707;0;-1.3518219;3.6915283;10.625092 +30707;3;-0.3331604;-0.13162231;0.25839233 +30707;12;0.1170995;0.17028545;0.6832022;0.7003752 +30709;0;-1.3040619;3.663025;10.667999 +30709;1;-0.7360342;3.8775222;8.981046 +30709;2;0.6919643;0.08378267;-1.4914532; +30709;3;-0.3148346;-0.13650513;0.25473022 +30710;0;-1.2324066;3.615509;10.720459 +30714;12;0.11678733;0.16941762;0.6837425;0.7001105 +30714;3;-0.28918457;-0.13772583;0.25045776 +30714;0;-1.1846313;3.6107635;10.739548 +30714;3;-0.26290894;-0.13406372;0.24679565 +30714;1;-0.725888;3.864385;8.987532 +30715;4;21.043396;-20.690918;-51.74713 +30715;6;-1.7391173;-0.3225168;0.10986138 +30715;7;-0.20077726;-0.9350368;0.29222366;0.0;0.97410214;-0.1588897;0.16086942;0.0;-0.10398752 +30715;0;-1.1273041;3.5870209;10.691864 +30715;3;-0.23664856;-0.12611389;0.24311829 +30716;12;0.116557464;0.16859442;0.6842514;0.69985026 +30717;0;-1.1177521;3.5680084;10.658463 +30717;1;-0.7161145;3.8534489;8.99301 +30721;3;-0.20732117;-0.11878967;0.23945618 +30721;0;-1.0460968;3.5394897;10.629852 +30721;3;-0.17555237;-0.11022949;0.23579407 +30721;12;0.11640178;0.16786852;0.6847308;0.6995817 +30722;0;-1.0078735;3.5109863;10.634628 +30722;1;-0.7070608;3.8449593;8.997359 +30722;3;-0.14378357;-0.10290527;0.23213196 +30726;4;19.392395;-20.991516;-51.74713 +30726;6;-1.7947422;-0.31755114;0.09449057 +30726;7;-0.24981235;-0.9262801;0.2821328;0.0;0.9641367;-0.21097541;0.16102675;0.0;-0.089632794 +30726;0;-0.9553375;3.5014954;10.615555 +30727;3;-0.11141968;-0.09375;0.22723389 +30728;0;-0.9219055;3.4777374;10.687088 +30728;2;0.30726367;0.29727626;-1.6813049; +30728;12;0.11631761;0.16726166;0.6851794;0.6993017 +30728;1;-0.6987623;3.8391476;9.000488 +30728;3;-0.08392334;-0.08580017;0.22479248 +30728;5;999.58356 +30729;0;-0.864563;3.4967346;10.677551 +30729;12;0.11631273;0.16678424;0.6855943;0.6990099 +30730;3;-0.054611206;-0.07481384;0.22235107 +30731;0;-0.874115;3.4729767;10.615555 +30732;1;-0.6912852;3.835824;9.002482 +30732;3;-0.028945923;-0.06259155;0.21868896 +30734;4;19.392395;-20.991516;-51.74713 +30734;6;-1.7973968;-0.31518644;0.08215749 +30734;7;-0.24869767;-0.9264338;0.28261286;0.0;0.96543366;-0.21359879;0.14937736;0.0;-0.07802246 +30735;0;-0.826355;3.4682465;10.572632 +30735;3;-0.00390625;-0.04914856;0.21562195 +30735;12;0.1163755;0.16643381;0.6859794;0.69870514 +30740;0;-0.7929077;3.4302368;10.510635 +30740;3;0.016860962;-0.039382935;0.21380615 +30740;0;-0.7738037;3.425476;10.453384 +30740;3;0.035186768;-0.030212402;0.20951843 +30740;1;-0.68492824;3.8347516;9.003425 +30740;12;0.11648561;0.16621077;0.68634105;0.69838464 +30742;0;-0.75468445;3.3637238;10.415237 +30742;3;0.05290222;-0.022277832;0.20707703 +30742;1;-0.6795437;3.8354666;9.003529 +30743;4;19.392395;-19.641113;-53.396606 +30743;6;-1.6952367;-0.31162238;0.07233323 +30744;7;-0.14578183;-0.94447714;0.29446676;0.0;0.9869224;-0.11814155;0.10966726;0.0;-0.06878945 +30744;0;-0.7260437;3.3542175;10.3198395 +30744;3;0.06878662;-0.015548706;0.20646667 +30744;12;0.11662973;0.16609178;0.6866828;0.6980529 +30747;0;-0.71647644;3.3732147;10.272156 +30747;1;-0.6748979;3.8376763;9.002936 +30747;2;0.048339665;0.42650247;-1.487134; +30747;3;0.08161926;-0.011886597;0.20402527 +30748;0;-0.71170044;3.3542175;10.243546 +30749;12;0.11680614;0.16605896;0.6870067;0.6977124 +30749;3;0.09138489;-0.008224487;0.20341492 +30751;13;338.254 +30752;0;-0.68304443;3.3542175;10.162476 +30752;3;0.10054016;-0.008834839;0.20341492 +30752;1;-0.670671;3.840997;9.001836 +30753;4;19.392395;-19.641113;-53.396606 +30753;6;-1.6709408;-0.3181307;0.06711146 +30753;7;-0.12062315;-0.94506294;0.30381927;0.0;0.9906528;-0.09496048;0.09792673;0.0;-0.063696094 +30754;0;-0.6782532;3.3304443;10.095703 +30754;3;0.106048584;-0.0076141357;0.20219421 +30754;12;0.11721771;0.16594242;0.68645966;0.6982094 +30756;0;-0.67349243;3.335205;10.028931 +30756;1;-0.6665266;3.8450563;9.000411 +30756;3;0.113983154;-0.00944519;0.20097351 +30758;0;-0.68782043;3.278183;9.938309 +30758;12;0.11744715;0.16599886;0.686763;0.69785905 +30759;3;0.12008667;-0.008224487;0.19975281 +30760;0;-0.6687012;3.2401886;9.919235 +30761;1;-0.6623913;3.849692;8.998734 +30761;3;0.12376404;-0.008834839;0.1985321 +30763;4;19.993591;-21.290588;-52.197266 +30763;6;-1.7915014;-0.3150614;0.06731274 +30763;7;-0.2387591;-0.92771465;0.2869487;0.0;0.9689708;-0.20814197;0.13331382;0.0;-0.06395111 +30763;0;-0.69737244;3.2211914;9.823853 +30763;3;0.1280365;-0.008834839;0.19792175 +30764;12;0.11769878;0.16607703;0.6870584;0.69750714 +30765;0;-0.68304443;3.1831818;9.771393 +30766;1;-0.65835106;3.85464;8.996913 +30766;2;-0.040658057;0.5817876;-1.0123501; +30766;3;0.13108826;-0.008834839;0.19607544 +30767;5;999.58356 +30768;0;-0.68782043;3.1926727;9.742767 +30768;12;0.11796135;0.16616975;0.6873447;0.6971586 +30769;3;0.13537598;-0.008224487;0.19363403 +30770;0;-0.6925812;3.16893;9.70462 +30770;1;-0.6543934;3.8598835;8.994953 +30770;3;0.14147949;-0.0063934326;0.19363403 +30772;4;19.84253;-22.190857;-52.796936 +30772;6;-1.8358868;-0.31487384;0.071245335 +30772;7;-0.28260767;-0.91762155;0.27946997;0.0;0.95684457;-0.2491157;0.14963211;0.0;-0.0676853 +30773;0;-0.7021332;3.145172;9.675995 +30773;3;0.14453125;-0.004562378;0.19363403 +30773;12;0.11823275;0.16627616;0.6876219;0.69681376 +30775;0;-0.6925812;3.135666;9.618759 +30775;1;-0.6506073;3.8655138;8.99281 +30775;3;0.15063477;-0.002105713;0.19241333 +30777;0;-0.7021332;3.111908;9.566299 +30778;12;0.11851396;0.16640426;0.6878941;0.6964666 +30778;3;0.16041565;0.0015563965;0.19119263 +30779;0;-0.74513245;3.102417;9.48999 +30780;1;-0.6471257;3.8716705;8.990412 +30780;3;0.16712952;0.0058288574;0.19180298 +30782;4;19.993591;-22.04132;-50.9964 +30782;6;-1.8585416;-0.31505617;0.07835696 +30782;7;-0.3061785;-0.9116888;0.27400398;0.0;0.94906044;-0.26982242;0.16272697;0.0;-0.07442394 +30783;0;-0.71170044;3.0834198;9.418457 +30783;3;0.1769104;0.01071167;0.19180298 +30784;12;0.118805006;0.16656452;0.68815905;0.6961169 +30784;0;-0.73558044;3.0596466;9.299225 +30785;1;-0.6440277;3.8785467;8.98767 +30785;2;-0.0026829839;0.77022195;-0.58913803; +30785;3;0.18911743;0.013748169;0.19241333 +30787;0;-0.74513245;3.078659;9.237228 +30787;12;0.119109444;0.16676885;0.6884191;0.69575876 +30789;1;-0.6412608;3.8865435;8.984413 +30792;12;0.119444504;0.16702677;0.6886707;0.6953904 +30794;3;0.20439148;0.016815186;0.19180298 +30794;0;-0.73558044;3.078659;9.16568 +30794;3;0.21844482;0.020477295;0.19241333 +30794;4;19.543457;-21.890259;-52.046204 +30794;6;-1.813363;-0.323082;0.08008214 +30794;7;-0.26407978;-0.92050076;0.28799346;0.0;0.96151304;-0.22776759;0.1536699;0.0;-0.07585766 +30794;0;-0.73558044;3.045395;9.13707 +30794;3;0.23188782;0.025360107;0.19363403 +30794;1;-0.6388246;3.8957453;8.980599 +30794;0;-0.7642517;3.045395;9.075058 +30794;3;0.24838257;0.029632568;0.19363403 +30799;0;-0.76901245;3.0501556;8.989227 +30799;12;0.11981317;0.16734679;0.68891436;0.69500864 +30799;3;0.26548767;0.036972046;0.19548035 +30800;0;-0.7642517;3.021637;8.974915 +30800;1;-0.63683665;3.9063373;8.976139 +30801;3;0.28074646;0.047958374;0.1973114 +30802;4;19.84253;-21.890259;-51.597595 +30803;6;-1.8169253;-0.32366493;0.08494927 +30803;7;-0.26894462;-0.919504;0.286673;0.0;0.95979065;-0.23100011;0.15950236;0.0;-0.08044155 +30803;0;-0.7738037;3.0358887;8.931976 +30803;3;0.29907227;0.05834961;0.19975281 +30803;12;0.12021741;0.16773634;0.6891504;0.69461083 +30805;0;-0.802475;3.08815;8.86998 +30806;1;-0.63565654;3.9184017;8.970963 +30806;2;0.05887717;0.881763;-0.08991718; +30806;3;0.31617737;0.068740845;0.20219421 +30807;5;999.58356 +30808;0;-0.7881317;3.102417;8.726913 +30808;12;0.120648526;0.16821904;0.6893837;0.6941877 +30808;3;0.33512878;0.07606506;0.20646667 +30809;1;-0.6352122;3.9321089;8.964995 +30810;0;-0.7976837;3.0596466;8.650604 +30810;3;0.3522339;0.08340454;0.20951843 +30812;4;19.392395;-20.39032;-52.197266 +30812;6;-1.6651827;-0.33863112;0.0919513 +30812;7;-0.12421526;-0.93901193;0.32066664;0.0;0.9884683;-0.0888941;0.12258908;0.0;-0.08660725 +30812;0;-0.826355;3.0691528;8.593384 +30812;3;0.36627197;0.088897705;0.21195984 +30812;12;0.12113471;0.16877517;0.68951184;0.6938407 +30814;1;-0.6352747;3.9472823;8.95832 +30814;0;-0.8120117;3.0596466;8.531357 +30814;3;0.3778839;0.09439087;0.21562195 +30817;0;-0.826355;3.0644073;8.488449 +30818;12;0.12163083;0.16942762;0.689745;0.6933629 +30818;3;0.38949585;0.09744263;0.22113037 +30818;1;-0.63562906;3.9635804;8.951096 +30818;0;-0.845459;3.1214142;8.421677 +30818;3;0.39620972;0.09744263;0.22418213 +30821;4;19.093323;-21.740723;-52.197266 +30821;6;-1.6983377;-0.35331237;0.10005558 +30821;7;-0.16084121;-0.9306111;0.3287751;0.0;0.9825207;-0.119339205;0.142868;0.0;-0.09371878 +30821;0;-0.86935425;3.1546783;8.354904 +30821;3;0.40109253;0.09866333;0.22845459 +30822;12;0.122157164;0.1701417;0.68998164;0.6928599 +30824;1;-0.6359799;3.9806733;8.943482 +30824;2;0.129448;0.9000101;0.42661953; +30824;0;-0.883667;3.178421;8.254761 +30824;3;0.40415955;0.09805298;0.23213196 +30827;0;-0.874115;3.1926727;8.178452 +30827;12;0.12271077;0.17088808;0.6902238;0.692337 +30827;3;0.40597534;0.096832275;0.23457336 +30836;0;-0.855011;3.2164307;8.135513 +30836;3;0.40415955;0.09439087;0.23884583 +30836;1;-0.63614744;3.9981487;8.935672 +30836;4;18.792725;-23.091125;-51.74713 +30836;6;-1.7157841;-0.37462312;0.10471174 +30836;7;-0.18153404;-0.920881;0.3449981;0.0;0.9785621;-0.13446;0.15600277;0.0;-0.09727154 +30836;0;-0.883667;3.202179;8.130753 +30836;3;0.40353394;0.09194946;0.24250793 +30836;0;-0.89323425;3.2401886;8.078278 +30836;3;0.39620972;0.09072876;0.24617004 +30836;12;0.123280875;0.17164353;0.6904735;0.69179964 +30836;1;-0.63600755;4.0157185;8.9278 +30836;12;0.12386513;0.17239694;0.69073457;0.69124717 +30836;0;-0.87890625;3.2971954;8.044907 +30837;3;0.38887024;0.09011841;0.25105286 +30838;1;-0.63560116;4.0328097;8.920122 +30839;17;1;38dead6d7725;11859;2321;-69; +30840;17;1;38dead6d60ff;7172;852;-69; +30840;17;1;1c1bb5efa29a;5653;1574;-73; +30841;17;1;1c1bb5ecd182;-1483;1200;-43; +30841;0;-0.91711426;3.2829437;7.997223 +30841;3;0.38215637;0.08828735;0.25289917 +30841;4;18.34259;-21.290588;-50.247192 +30841;6;-1.5766516;-0.3872445;0.11418029 +30841;7;-0.04884163;-0.9259373;0.37450582;0.0;0.99321955;-0.0054217055;0.11612718;0.0;-0.10549603 +30841;0;-0.89323425;3.3161926;7.973358 +30841;12;0.12443527;0.17312329;0.69100934;0.6906884 +30841;3;0.37361145;0.08706665;0.25839233 +30843;0;-0.87890625;3.3304443;7.987671 +30843;1;-0.634904;4.049325;8.912686 +30844;2;0.18496364;0.8111725;0.8322344; +30844;3;0.3619995;0.087677;0.26449585 +30844;5;999.58234 +30845;0;-0.87890625;3.3399658;7.939972 +30845;12;0.12499116;0.17381862;0.6913002;0.69012207 +30846;3;0.35099792;0.08950806;0.27000427 +30848;0;-0.883667;3.3542175;7.9304504 +30848;1;-0.63399667;4.064983;8.905621 +30848;3;0.33695984;0.09194946;0.27671814 +30849;4;18.94226;-22.491455;-50.39673 +30849;6;-1.6094468;-0.39792776;0.110969335 +30849;7;-0.0812845;-0.92117745;0.38055858;0.0;0.99144864;-0.035621658;0.12554055;0.0;-0.10208902 +30850;0;-0.864563;3.3969727;7.978134 +30850;3;0.31985474;0.092559814;0.28466797 +30850;12;0.12551673;0.17447741;0.6916176;0.6895421 +30856;0;-0.859787;3.4444885;7.944748 +30856;3;0.30152893;0.09439087;0.29016113 +30856;1;-0.63292444;4.079534;8.89904 +30856;0;-0.86935425;3.4872284;7.978134 +30856;12;0.12599939;0.1750946;0.6919695;0.6889444 +30856;3;0.28259277;0.096221924;0.29748535 +30857;0;-0.859787;3.525238;8.006744 +30857;1;-0.63169956;4.092641;8.893107 +30857;3;0.26060486;0.096221924;0.30543518 +30859;4;18.34259;-22.04132;-50.9964 +30859;6;-1.4983895;-0.41263437;0.106972925 +30859;7;0.029225279;-0.91366726;0.40541098;0.0;0.9947761;0.06627159;0.077643596;0.0;-0.09780764 +30859;0;-0.859787;3.5585022;8.006744 +30859;3;0.23921204;0.09561157;0.3115387 +30859;12;0.126425;0.175654;0.69235814;0.6883332 +30861;0;-0.897995;3.6107635;7.98291 +30861;1;-0.6302118;4.104069;8.887945 +30861;2;0.17837971;0.6617017;0.9019251; +30861;3;0.21295166;0.09378052;0.31703186 +30863;0;-0.859787;3.6012573;7.9685974 +30864;12;0.12678826;0.17614421;0.69278735;0.68770903 +30864;3;0.18667603;0.09011841;0.323761 +30867;0;-0.883667;3.6487732;7.987671 +30867;1;-0.62829477;4.1134415;8.883746 +30867;3;0.15919495;0.08706665;0.32681274 +30868;4;18.94226;-21.141052;-49.197388 +30868;6;-1.4354783;-0.42620078;0.11018083 +30868;7;0.08904473;-0.90221924;0.42198524;0.0;0.9909827;0.1228372;0.05351918;0.0;-0.10012151 +30868;0;-0.87890625;3.6487732;8.011505 +30869;3;0.12986755;0.08218384;0.33169556 +30869;12;0.1270857;0.17653914;0.69323933;0.6870972 +30870;0;-0.90756226;3.6772919;8.030594 +30870;1;-0.62590486;4.120493;8.880647 +30871;3;0.098724365;0.07606506;0.33657837 +30874;0;-0.90756226;3.7580414;8.068741 +30874;12;0.12730452;0.1768332;0.69374174;0.6864736 +30874;3;0.06510925;0.0705719;0.3408661 +30876;0;-0.91711426;3.7390442;8.097366 +30876;1;-0.62285566;4.124969;8.878783 +30876;3;0.03152466;0.064453125;0.3445282 +30881;2;0.21703804;0.43880224;0.805727; +30881;12;0.12744433;0.1770021;0.6942823;0.6858574 +30881;1;-0.61916447;4.1266456;8.8782625 +30882;4;18.94226;-21.890259;-51.597595 +30882;6;-1.3903848;-0.43017015;0.1127802 +30882;7;0.13212359;-0.89414334;0.42784455;0.0;0.9859414;0.16308698;0.03636139;0.0;-0.10228817 +30882;0;-0.89323425;3.8007965;8.130753 +30883;12;0.12749371;0.1770422;0.6948578;0.6852549 +30883;3;-0.0014648438;0.05895996;0.3469696 +30883;0;-0.93621826;3.8103027;8.164139 +30883;3;-0.036880493;0.052856445;0.35002136 +30883;5;999.58234 +30883;0;-1.0126648;3.8197937;8.192749 +30884;3;-0.06864929;0.04673767;0.35368347 +30885;0;-1.0508728;3.7580414;8.226135 +30885;1;-0.6150178;4.1253915;8.879133 +30885;3;-0.09980774;0.041244507;0.35307312 +30887;0;-1.0508728;3.7485352;8.288132 +30888;3;-0.1346283;0.032699585;0.35246277 +30888;4;19.392395;-22.04132;-51.446533 +30888;6;-1.4321185;-0.42176002;0.12611951 +30888;7;0.086137734;-0.9036107;0.4196044;0.0;0.98965126;0.12612027;0.06843899;0.0;-0.114762835 +30888;12;0.12744573;0.17694692;0.69546777;0.6846693 +30890;0;-1.0365448;3.7390442;8.345367 +30890;1;-0.6102884;4.1212544;8.881381 +30890;3;-0.1712799;0.021087646;0.35368347 +30892;0;-1.0365448;3.7485352;8.426437 +30893;12;0.12732135;0.17671;0.6960687;0.68414277 +30893;3;-0.20243835;0.011932373;0.35490417 +30894;0;-0.9983368;3.7342834;8.488449 +30895;1;-0.6046514;4.1141057;8.885079 +30895;3;-0.23480225;0.0021514893;0.35429382 +30897;4;19.242859;-23.840332;-50.846863 +30897;6;-1.6260237;-0.41191837;0.11707339 +30897;7;-0.10151552;-0.9149573;0.3905735;0.0;0.9890591;-0.050582062;0.13857676;0.0;-0.107035816 +30897;0;-1.0126648;3.6772919;8.559982 +30897;3;-0.26657104;-0.0076141357;0.35246277 +30898;12;0.12710577;0.17632532;0.6967305;0.68360823 +30899;0;-0.9792175;3.639267;8.6792145 +30900;1;-0.59818774;4.104051;8.890165 +30900;2;0.36387026;0.39447355;0.47418976; +30900;3;-0.29589844;-0.01739502;0.3506317 +30902;0;-0.9553375;3.5822601;8.774612 +30902;12;0.12681188;0.17579246;0.6974133;0.6831036 +30902;3;-0.32461548;-0.02532959;0.3457489 +30904;0;-0.93621826;3.5205078;8.84137 +30904;1;-0.5909221;4.0911436;8.896599 +30905;3;-0.34965515;-0.035095215;0.3420868 +30907;4;18.34259;-23.991394;-51.74713 +30907;6;-1.7750667;-0.37702915;0.1054975 +30907;7;-0.23968694;-0.910432;0.3371405;0.0;0.9659009;-0.18860492;0.17737967;0.0;-0.09790577 +30907;0;-0.93621826;3.4682465;8.931976 +30908;3;-0.37530518;-0.04548645;0.33657837 +30908;12;0.12644137;0.17511727;0.6981123;0.68263155 +30909;1;-0.58311;4.0759697;8.904076 +30909;0;-0.90756226;3.449234;8.994003 +30910;3;-0.39486694;-0.05831909;0.33169556 +30911;0;-0.91233826;3.425476;9.08461 +30912;12;0.12601468;0.17432944;0.6988048;0.6822035 +30912;3;-0.41073608;-0.06991577;0.32559204 +30914;1;-0.5743768;4.0586805;8.912537 +30914;0;-0.90278625;3.3494568;9.199066 +30914;3;-0.42417908;-0.08457947;0.31825256 +30916;4;18.043518;-23.091125;-52.197266 +30916;6;-1.8301053;-0.34764987;0.09782565 +30916;7;-0.28734925;-0.9087434;0.3026809;0.0;0.95341396;-0.24107301;0.18134369;0.0;-0.09182669 +30916;0;-0.87890625;3.2639465;9.299225 +30917;3;-0.43699646;-0.099853516;0.30848694 +30917;12;0.12554495;0.17341784;0.6994991;0.68181074 +30918;0;-0.874115;3.2164307;9.404144 +30919;1;-0.5647761;4.0399995;8.921633 +30919;3;-0.44862366;-0.115737915;0.29870605 +30919;2;0.28922284;0.65626526;-0.1601057; +30919;5;999.58234 +30921;0;-0.8120117;3.16893;9.470917 +30921;12;0.12506832;0.17241414;0.7001679;0.6814662 +30922;3;-0.45594788;-0.13162231;0.28833008 +30923;0;-0.76901245;3.102417;9.532913 +30924;1;-0.5541249;4.0201497;8.931263 +30924;3;-0.4620514;-0.14750671;0.28038025 +30926;4;19.093323;-23.690796;-51.446533 +30926;6;-1.9674144;-0.3136791;0.080494896 +30926;7;-0.40793508;-0.8773653;0.25262433;0.0;0.9098016;-0.36745152;0.19297738;0.0;-0.076484464 +30926;0;-0.7594757;3.0834198;9.604462 +30926;3;-0.46388245;-0.16400146;0.27244568 +30927;12;0.12459884;0.17131953;0.70080435;0.681174 +30928;0;-0.7403717;3.0311584;9.661682 +30929;1;-0.5424043;3.9996488;8.941181 +30929;3;-0.46022034;-0.18049622;0.26390076 +30930;0;-0.70692444;3.012146;9.747543 +30931;12;0.124156214;0.17015381;0.70140773;0.68092597 +30931;3;-0.45288086;-0.19270325;0.25349426 +30933;0;-0.65437317;2.9646301;9.823853 +30933;1;-0.52963483;3.979232;8.951051 +30933;3;-0.4437256;-0.20614624;0.24372864 +30935;4;16.842651;-22.491455;-50.846863 +30935;6;-2.0268247;-0.2924762;0.0665124 +30935;7;-0.4566167;-0.8596813;0.22901806;0.0;0.8873844;-0.42168382;0.18636447;0.0;-0.063640855 +30936;0;-0.6639252;2.9836273;9.871536 +30936;3;-0.43029785;-0.21653748;0.23394775 +30936;12;0.12376816;0.1689479;0.70197034;0.6807172 +30938;1;-0.51616853;3.9595127;8.960577 +30938;0;-0.64004517;2.931366;9.962158 +30938;2;0.1438011;0.9538467;-0.76526546; +30938;3;-0.41256714;-0.22691345;0.22357178 +30940;0;-0.5922699;2.855362;9.966934 +30940;12;0.123442896;0.16773456;0.7024851;0.6805452 +30941;3;-0.39363098;-0.23669434;0.21502686 +30942;0;-0.54927063;2.8933716;10.019394 +30942;1;-0.5021164;3.9410722;8.969501 +30943;3;-0.3716278;-0.24401855;0.20648193 +30945;4;18.94226;-23.840332;-51.597595 +30945;6;-2.0492997;-0.28072938;0.054765925 +30945;7;-0.4732233;-0.8529354;0.22036575;0.0;0.8793711;-0.4424263;0.17597038;0.0;-0.05259574 +30948;0;-0.47283936;2.8838654;10.062302 +30948;3;-0.3471985;-0.25012207;0.19976807 +30948;12;0.12320323;0.16654621;0.7029484;0.68040204 +30948;1;-0.4875995;3.9244502;8.977586 +30948;0;-0.45851135;2.888626;10.090927 +30949;3;-0.3221588;-0.25378418;0.18998718 +30951;0;-0.40596008;2.8838654;10.114777 +30951;12;0.12305685;0.16540825;0.7033628;0.6802779 +30951;3;-0.2897644;-0.25624084;0.18022156 +30953;1;-0.47300717;3.9100425;8.98465 +30954;0;-0.37728882;2.8601227;10.167236 +30954;3;-0.26228333;-0.2544098;0.17166138 +30956;4;16.992188;-22.640991;-51.74713 +30956;6;-2.0397637;-0.2740417;0.037091274 +30956;7;-0.46060646;-0.8587492;0.22448054;0.0;0.88688636;-0.43510023;0.15530792;0.0;-0.03569903 +30957;12;0.123005964;0.16434911;0.7037242;0.68017006 +30957;0;-0.3295288;2.888626;10.181549 +30957;3;-0.23112488;-0.25074768;0.1637268 +30958;1;-0.4587993;3.898176;8.990541 +30958;2;-0.075339735;1.0451643;-1.1219606; +30958;0;-0.34864807;2.931366;10.1577 +30958;3;-0.19630432;-0.24401855;0.15516663 +30958;5;999.58234 +30960;0;-0.3056488;2.978897;10.172012 +30960;12;0.123045176;0.1634026;0.70403314;0.68007123 +30960;3;-0.16209412;-0.23423767;0.14845276 +30963;1;-0.4454127;3.8892775;8.995068 +30964;0;-0.25787354;3.0073853;10.13385 +30965;3;-0.12362671;-0.22203064;0.14050293 +30966;12;0.12317392;0.1625978;0.7042912;0.67997354 +30966;4;18.34259;-22.340393;-52.6474 +30966;6;-1.9265718;-0.2883992;0.02544126 +30966;7;-0.3549868;-0.8986633;0.2576597;0.0;0.9345531;-0.33393207;0.12288112;0.0;-0.024387915 +30968;1;-0.43326;3.8836489;8.998093 +30968;0;-0.21487427;3.0691528;10.076614 +30969;3;-0.08818054;-0.2079773;0.13317871 +30969;12;0.12338308;0.16196497;0.7045042;0.679866 +30970;0;-0.18621826;3.1071625;9.995529 +30970;3;-0.050308228;-0.19270325;0.12583923 +30970;0;-0.16711426;3.1546783;9.938309 +30970;3;-0.014877319;-0.1768341;0.119140625 +30972;1;-0.42264494;3.881286;8.999617 +30972;0;-0.157547;3.178421;9.852463 +30972;3;0.02053833;-0.1585083;0.1136322 +30974;4;17.892456;-22.491455;-52.046204 +30974;6;-1.8743008;-0.31202382;0.015989257 +30974;7;-0.3035121;-0.9082161;0.2881387;0.0;0.9527061;-0.28443536;0.10699368;0.0;-0.015216555 +30974;0;-0.157547;3.2496948;9.776154 +30974;3;0.054138184;-0.13772583;0.10751343 +30974;12;0.12366106;0.16151509;0.70467293;0.67974764 +30976;0;-0.10978699;3.3209534;9.680771 +30976;2;-0.27803883;0.784076;-0.9717417; +30977;1;-0.4137537;3.882118;8.99967 +30977;3;0.08407593;-0.11451721;0.10385132 +30980;0;-0.095443726;3.358963;9.628311 +30980;12;0.12399843;0.1612512;0.7048057;0.67961127 +30980;3;0.11216736;-0.08946228;0.0977478 +30981;0;-0.07635498;3.3732147;9.4423065 +30981;1;-0.40703347;3.8857036;8.998429 +30982;3;0.13539124;-0.06625366;0.09284973 +30984;4;17.593384;-21.440125;-53.996277 +30984;6;-1.685597;-0.34310398;0.0080862995 +30984;7;-0.11724727;-0.9355163;0.33326018;0.0;0.9930735;-0.10787216;0.04656723;0.0;-0.007614906 +30984;0;-0.06201172;3.4682465;9.313538 +30984;3;0.15493774;-0.04182434;0.08918762 +30985;12;0.124396406;0.16114822;0.7047588;0.67961156 +30986;0;-0.06201172;3.5062408;9.16568 +30986;1;-0.4025361;3.8915548;8.996103 +30986;3;0.17082214;-0.021057129;0.087371826 +30989;0;-0.09068298;3.5774994;9.036911 +30989;12;0.12475848;0.16124412;0.70484173;0.6794364 +30989;3;0.18363953;-0.002105713;0.082473755 +30991;1;-0.4000323;3.8990347;8.992975 +30991;0;-0.100234985;3.639267;8.884293 +30991;3;0.19158936;0.014373779;0.078811646 +30993;4;18.043518;-22.640991;-52.197266 +30993;6;-1.633215;-0.38875753;0.011281791 +30993;7;-0.06664197;-0.92357856;0.377573;0.0;0.99772227;-0.05772351;0.034901813;0.0;-0.01043973 +30994;0;-0.07635498;3.6915283;8.745987 +30994;3;0.19464111;0.024749756;0.07575989 +30994;12;0.12510824;0.16147664;0.7049128;0.6792432 +30995;0;-0.12411499;3.772293;8.588608 +30995;2;-0.37264776;0.39511776;-0.12995052; +30996;1;-0.39902133;3.9074657;8.989361 +30996;3;0.19342041;0.032089233;0.07026672 +30997;5;999.58234 +30998;0;-0.171875;3.7770538;8.464584 +30998;12;0.12543523;0.16180253;0.7049717;0.6790441 +30998;3;0.19158936;0.035751343;0.06842041 +31001;0;-0.18621826;3.843567;8.350128 +31001;1;-0.39889297;3.9160736;8.98562 +31001;3;0.18424988;0.03453064;0.062927246 +31005;4;17.292786;-23.240662;-52.046204 +31005;6;-1.5211723;-0.4312922;0.02229755 +31005;7;0.04028217;-0.90730804;0.41853258;0.0;0.9989831;0.04506125;0.0015368592;0.0;-0.020254003 +31005;0;-0.17666626;3.9100647;8.278595 +31005;3;0.17570496;0.032089233;0.059265137 +31005;12;0.12574074;0.16216391;0.7050198;0.6788514 +31005;0;-0.19577026;3.9480896;8.164139 +31005;1;-0.39890438;3.9243648;8.982001 +31006;3;0.16470337;0.02659607;0.055603027 +31008;0;-0.22442627;4.028839;8.08783 +31008;12;0.1260309;0.16251647;0.705057;0.6786747 +31008;3;0.15127563;0.019866943;0.054382324 +31010;1;-0.398656;3.9319408;8.978698 +31010;0;-0.22442627;4.0811005;8.016281 +31010;3;0.13661194;0.01071167;0.04826355 +31012;4;16.693115;-21.290588;-51.74713 +31012;6;-1.2717586;-0.4707439;0.027988996 +31012;7;0.28235593;-0.85167867;0.44149578;0.0;0.9589854;0.2625574;-0.1068203;0.0;-0.024941409 +31012;0;-0.22921753;4.1571198;8.001968 +31013;12;0.12630728;0.16282694;0.7050878;0.67851686 +31013;3;0.12010193;0.0021514893;0.045822144 +31015;1;-0.39786607;3.9383788;8.975911 +31015;0;-0.26264954;4.1618805;7.987671 +31015;2;-0.24875805;-0.015212059;0.78877354; +31015;3;0.10240173;-0.0076141357;0.042160034 +31017;0;-0.26742554;4.180893;7.9208984 +31017;12;0.12656206;0.16306795;0.7051109;0.6783875 +31017;3;0.08529663;-0.018615723;0.039108276 +31019;0;-0.30085754;4.2188873;7.901825 +31019;1;-0.3964174;3.943414;8.973764 +31019;3;0.06941223;-0.030212402;0.03605652 +31022;4;17.74292;-22.340393;-51.446533 +31022;6;-1.2749914;-0.4901077;0.038056057 +31022;7;0.2741672;-0.8439628;0.46104148;0.0;0.96109605;0.25719398;-0.10072602;0.0;-0.033568077 +31022;0;-0.3199768;4.214142;7.849365 +31023;12;0.12679276;0.16322684;0.7051283;0.67828804 +31023;3;0.049865723;-0.039993286;0.033599854 +31024;1;-0.39421403;3.9470665;8.972256 +31025;0;-0.34864807;4.275894;7.815979 +31025;3;0.027862549;-0.050369263;0.03237915 +31029;12;0.1270031;0.16330193;0.7051428;0.67821556 +31029;1;-0.39129394;3.9490926;8.971492 +31035;2;-0.111691296;-0.29776597;1.1072178; +31035;1;-0.3874795;3.9496045;8.971432 +31035;12;0.12718402;0.16328081;0.70515954;0.6781694 +31035;0;-0.39640808;4.2711487;7.7921295 +31035;3;0.011978149;-0.060760498;0.029327393 +31036;0;-0.38208008;4.342407;7.815979 +31036;3;-0.006942749;-0.06991577;0.029937744 +31036;4;17.442322;-22.04132;-52.6474 +31036;6;-1.1494861;-0.5066112;0.048845597 +31036;7;0.3868491;-0.79793143;0.4622262;0.0;0.92115414;0.35758898;-0.15363939;0.0;-0.042693306 +31036;12;0.12734231;0.16316685;0.7051809;0.67814493 +31036;0;-0.37728882;4.3519135;7.854141 +31037;17;1;38dead6d7725;11826;2086;-74; +31038;17;1;38dead6d60ff;7258;1195;-72; +31038;17;1;1c1bb5efa29a;5733;2076;-68; +31039;17;1;1c1bb5ecd182;-2356;1052;-46; +31039;3;-0.025878906;-0.08091736;0.027496338 +31039;0;-0.29130554;4.3851776;7.8255157 +31039;3;-0.044204712;-0.08824158;0.02810669 +31039;5;999.58234 +31039;0;-0.39163208;4.404175;7.8684235 +31039;3;-0.06253052;-0.09312439;0.025665283 +31039;1;-0.38322198;3.9485378;8.972084 +31039;0;-0.5110626;4.413666;7.906601 +31039;3;-0.08085632;-0.09802246;0.023834229 +31041;4;18.792725;-22.04132;-52.197266 +31041;6;-1.1610173;-0.50824964;0.06454767 +31041;7;0.36878553;-0.8012715;0.47112748;0.0;0.9278049;0.34804708;-0.13431779;0.0;-0.056349546 +31041;0;-0.5540619;4.404175;7.98291 +31041;3;-0.097961426;-0.10229492;0.023834229 +31041;12;0.12745528;0.16297255;0.70520127;0.67814916 +31043;0;-0.5445099;4.432678;7.9685974 +31043;1;-0.37875998;3.9458697;8.973448 +31043;3;-0.113845825;-0.10534668;0.025665283 +31045;0;-0.5445099;4.437439;7.98291 +31046;12;0.12752287;0.16270529;0.7052336;0.6781671 +31047;3;-0.12850952;-0.1096344;0.02810669 +31048;1;-0.37389904;3.9418635;8.975412 +31048;0;-0.5158386;4.4611816;8.025818 +31049;3;-0.14073181;-0.111450195;0.029327393 +31050;4;18.34259;-22.640991;-51.74713 +31050;6;-1.2002718;-0.50645155;0.06418412 +31050;7;0.3323573;-0.81512755;0.47445315;0.0;0.94148433;0.31664985;-0.11549958;0.0;-0.056088638 +31051;0;-0.5158386;4.4754486;8.078278 +31051;3;-0.15415955;-0.11512756;0.02810669 +31053;12;0.12755373;0.16236983;0.7052812;0.67819214 +31053;0;-0.49671936;4.4849396;8.173676 +31053;1;-0.36868128;3.9366546;8.977914 +31053;2;0.081487864;-0.47216535;0.9635029; +31054;3;-0.16760254;-0.120010376;0.026275635 +31055;0;-0.47763062;4.44693;8.197525 +31055;12;0.12755068;0.16197258;0.70534146;0.678225 +31056;3;-0.18041992;-0.119400024;0.022003174 +31062;1;-0.36327612;3.9302216;8.980951 +31062;12;0.12752558;0.16150737;0.70534074;0.67834145 +31063;0;-0.48718262;4.4089203;8.245209 +31063;1;-0.35792065;3.922592;8.984502 +31066;3;-0.19386292;-0.120010376;0.017120361 +31066;4;17.442322;-21.740723;-53.396606 +31066;6;-1.1486421;-0.49031603;0.059018135 +31066;7;0.38367584;-0.8047358;0.4529826;0.0;0.92200077;0.36145422;-0.13880062;0.0;-0.052034643 +31066;0;-0.44895935;4.404175;8.283371 +31066;3;-0.20547485;-0.12307739;0.012832642 +31066;0;-0.45373535;4.389923;8.311981 +31066;3;-0.21585083;-0.124298096;0.009170532 +31066;0;-0.46328735;4.4089203;8.38353 +31066;12;0.12744169;0.16100799;0.7053971;0.67841727 +31066;3;-0.22257996;-0.12489319;0.0061187744 +31067;0;-0.49671936;4.4184265;8.44075 +31067;1;-0.35261065;3.914065;8.98843 +31068;3;-0.22990417;-0.124298096;0.0048980713 +31070;4;17.593384;-24.14093;-52.796936 +31070;6;-1.3338019;-0.481532;0.058779985 +31070;7;0.2079296;-0.86151296;0.463207;0.0;0.9767571;0.2080842;-0.051444545;0.0;-0.052065905 +31070;0;-0.46806335;4.356659;8.531357 +31070;3;-0.23478699;-0.12245178;0.0036773682 +31070;12;0.12732396;0.16047053;0.7054484;0.6785134 +31072;0;-0.49671936;4.356659;8.579071 +31072;3;-0.24090576;-0.11695862;0.002456665 +31073;1;-0.347417;3.9048245;8.99265 +31073;2;0.06801048;-0.46538258;0.60611534; +31073;5;999.58234 +31074;0;-0.48718262;4.313904;8.65538 +31074;12;0.12717636;0.1599094;0.70550025;0.6786196 +31075;3;-0.24517822;-0.111450195;1.5258789E-5 +31076;0;-0.44895935;4.280655;8.741211 +31077;1;-0.3426521;3.8949761;8.997103 +31077;3;-0.24945068;-0.10597229;-0.0024261475 +31079;4;16.54358;-21.141052;-52.3468 +31079;6;-1.2662654;-0.45486137;0.05131614 +31079;7;0.27795267;-0.8569881;0.43395126;0.0;0.959489;0.26935798;-0.082626656;0.0;-0.046078186 +31079;0;-0.42507935;4.256897;8.750748 +31079;3;-0.2525177;-0.09863281;-0.0036468506 +31080;12;0.12700519;0.15932798;0.7055011;0.6787876 +31081;0;-0.42507935;4.2473907;8.793686 +31081;1;-0.33842063;3.8846958;9.001706 +31082;3;-0.2561798;-0.09190369;-0.0073242188 +31084;0;-0.40596008;4.2378845;8.850922 +31085;12;0.12678505;0.15876071;0.7055562;0.6789043 +31085;3;-0.25862122;-0.083969116;-0.009765625 +31087;0;-0.43940735;4.199875;8.836609 +31087;1;-0.33490777;3.874061;9.00642 +31088;3;-0.26106262;-0.08030701;-0.014038086 +31089;4;16.992188;-22.640991;-53.697205 +31089;6;-1.3703;-0.44319925;0.049684864 +31089;7;0.17803887;-0.8852876;0.42961374;0.0;0.9830001;0.17991412;-0.03662936;0.0;-0.044866063 +31089;0;-0.41073608;4.1951294;8.86998 +31089;3;-0.25984192;-0.0790863;-0.017089844 +31089;12;0.12652543;0.15820608;0.70560926;0.67902714 +31091;0;0.49690247;3.8055573;8.779373 +31091;1;-0.33123705;3.863059;9.01128 +31091;2;-0.071609974;-0.3014114;0.21227169; +31092;3;-0.26411438;-0.09190369;-0.0146484375 +31093;0;-0.6782532;4.233139;9.304001 +31094;12;0.12624943;0.15763527;0.70565975;0.67915875 +31094;3;-0.27572632;-0.1255188;0.0030670166 +31099;1;-0.32716882;3.8517532;9.016267 +31099;0;-0.7929077;4.370926;9.299225 +31099;3;-0.27388;-0.099243164;-0.005493164 +31099;4;17.892456;-23.240662;-53.097534 +31099;6;-1.4190549;-0.43799368;0.08506027 +31099;7;0.11499478;-0.89519846;0.43057632;0.0;0.99038213;0.13689099;0.020102892;0.0;-0.07693809 +31099;0;-0.6113739;4.370926;9.275375 +31099;3;-0.2714386;-0.08030701;-0.020751953 +31099;12;0.12599304;0.15703592;0.7057125;0.67929035 +31101;1;-0.32379866;3.8403292;9.02126 +31101;0;-0.46806335;4.2188873;9.304001 +31101;3;-0.26594543;-0.07298279;-0.029312134 +31105;12;0.12569739;0.15644754;0.70576346;0.679428 +31105;0;-0.5349426;4.0336;9.184769 +31105;3;-0.25801086;-0.06869507;-0.029907227 +31106;1;-0.32162905;3.8291512;9.026088 +31106;0;-0.63049316;4.028839;9.013062 +31106;3;-0.25006104;-0.063812256;-0.026870728 +31109;4;17.442322;-20.991516;-52.946472 +31109;6;-1.3668805;-0.41944778;0.0698395 +31109;7;0.17418128;-0.89439106;0.41197738;0.0;0.9826488;0.18495117;-0.013933681;0.0;-0.06373355 +31109;0;-0.62094116;4.11911;8.970154 +31109;3;-0.24090576;-0.06564331;-0.026245117 +31109;12;0.12537739;0.15592256;0.70578694;0.6795834 +31111;1;-0.3197262;3.8188162;9.030533 +31111;2;0.24355689;-0.34032798;-0.17034149; +31113;12;0.12507412;0.15542962;0.7058118;0.67972636 +31114;0;-0.63049316;4.1143646;9.146606 +31114;3;-0.23234558;-0.07420349;-0.028686523 +31114;5;999.58234 +31114;0;-0.5636139;4.109619;9.361221 +31115;3;-0.22502136;-0.08091736;-0.032348633 +31115;1;-0.31720752;3.8090112;9.034762 +31116;0;-0.5301666;4.11911;9.556763 +31116;3;-0.2195282;-0.08518982;-0.042129517 +31118;4;16.992188;-22.640991;-53.396606 +31118;6;-1.5243922;-0.4063964;0.05541874 +31118;7;0.024443911;-0.91756254;0.39683944;0.0;0.9984057;0.042609274;0.037021857;0.0;-0.050878905 +31118;12;0.12481745;0.15493563;0.70582134;0.67987645 +31119;0;-0.5062866;4.1143646;9.613998 +31120;1;-0.31460464;3.799546;9.038838 +31120;3;-0.21647644;-0.08457947;-0.053131104 +31120;0;-0.5062866;4.1523743;9.580612 +31120;3;-0.21218872;-0.08457947;-0.065338135 +31123;0;-0.47763062;4.1381226;9.575851 +31123;12;0.12458546;0.15445064;0.7057968;0.6800548 +31123;3;-0.20181274;-0.087646484;-0.07817078 +31125;0;-0.48239136;4.1713715;9.504303 +31125;1;-0.31237245;3.7906423;9.042653 +31125;3;-0.18959045;-0.09068298;-0.08856201 +31129;12;0.124368496;0.15399636;0.7057277;0.6802692 +31129;4;17.593384;-20.240784;-52.796936 +31129;6;-1.3727933;-0.4131058;0.05071153 +31129;7;0.17650679;-0.8979834;0.40307721;0.0;0.98320395;0.18016407;-0.02917017;0.0;-0.046425693 +31129;0;-0.5158386;4.166626;9.466141 +31129;3;-0.17553711;-0.0925293;-0.09649658 +31130;0;-0.5445099;4.11911;9.470917 +31130;1;-0.31034786;3.782795;9.046008 +31130;2;0.14840981;-0.3268299;-0.48357105; +31130;3;-0.16209412;-0.0949707;-0.106277466 +31132;0;-0.5779419;4.085861;9.513855 +31132;12;0.12418745;0.1535808;0.7056138;0.6805143 +31133;3;-0.14743042;-0.09680176;-0.113601685 +31134;0;-0.62094116;4.0763702;9.518616 +31135;3;-0.13278198;-0.099853516;-0.117874146 +31135;1;-0.3085402;3.7760415;9.04889 +31137;4;16.242981;-21.440125;-52.796936 +31137;6;-1.4613402;-0.40385443;0.065142095 +31137;7;0.08357855;-0.91405034;0.39689645;0.0;0.99470174;0.10044984;0.021870885;0.0;-0.059859265 +31137;0;-0.63526917;4.085861;9.518616 +31138;3;-0.121780396;-0.10046387;-0.12214661 +31138;12;0.12404902;0.1532118;0.70545673;0.6807855 +31139;0;-0.6495819;4.109619;9.518616 +31139;1;-0.3067831;3.7704883;9.051266 +31140;3;-0.1071167;-0.10168457;-0.12704468 +31141;0;-0.6257019;4.0763702;9.4804535 +31142;3;-0.09307861;-0.10168457;-0.12948608 +31142;12;0.12395885;0.15288745;0.70527405;0.681064 +31144;0;-0.63526917;4.123871;9.48999 +31144;3;-0.07841492;-0.10107422;-0.13253784 +31144;1;-0.30509397;3.7661269;9.053138 +31147;4;17.442322;-19.340515;-51.74713 +31147;6;-1.3413193;-0.40911478;0.06684125 +31147;7;0.20108737;-0.89342225;0.4016972;0.0;0.9776547;0.20869608;-0.025243632;0.0;-0.06127941 +31148;0;-0.64004517;4.1381226;9.4852295 +31148;3;-0.061920166;-0.099853516;-0.13375854 +31149;12;0.12391452;0.15261112;0.705067;0.6813484 +31149;1;-0.30355704;3.7630985;9.054449 +31149;0;-0.64004517;4.123871;9.470917 +31149;3;-0.04664612;-0.10107422;-0.1343689 +31149;2;0.26832113;-0.3131652;-0.45810127; +31150;5;999.58405 +31154;0;-0.59706116;4.1381226;9.4852295 +31154;12;0.12391626;0.15238838;0.7048413;0.6816314 +31154;3;-0.029541016;-0.099243164;-0.1343689 +31154;0;-0.6113739;4.11911;9.43277 +31154;1;-0.30200988;3.7614698;9.055178 +31154;3;-0.011230469;-0.09802246;-0.1368103 +31156;4;16.842651;-20.840454;-53.546143 +31156;6;-1.3728857;-0.41095456;0.0647233 +31156;7;0.17087588;-0.8988448;0.40358344;0.0;0.983507;0.18025044;-0.014967062;0.0;-0.059293017 +31157;0;-0.5779419;4.142868;9.413681 +31157;3;0.0064849854;-0.09680176;-0.13865662 +31157;12;0.12397628;0.15221696;0.7045802;0.68192863 +31158;0;-0.5445099;4.1571198;9.418457 +31158;1;-0.30058974;3.7614334;9.05524 +31159;3;0.023590088;-0.095581055;-0.14353943 +31161;0;-0.5301666;4.176132;9.332611 +31161;12;0.12408876;0.15211537;0.70432293;0.68219656 +31161;3;0.04069519;-0.09436035;-0.14598083 +31163;0;-0.5158386;4.1951294;9.337372 +31163;1;-0.299358;3.7629635;9.054645 +31163;3;0.057800293;-0.09312439;-0.15086365 +31166;4;16.392517;-19.940186;-54.14734 +31166;6;-1.2594867;-0.42168882;0.055188417 +31166;7;0.28434724;-0.8685429;0.40593082;0.0;0.95739937;0.27947295;-0.07267158;0.0;-0.0503283 +31166;0;-0.5015106;4.180893;9.313538 +31166;3;0.074905396;-0.09190369;-0.15513611 +31167;12;0.12425388;0.15207878;0.7040422;0.6824645 +31168;0;-0.47763062;4.190384;9.294464 +31169;2;0.19061154;-0.37107968;-0.33769703; +31169;1;-0.29834235;3.7659783;9.053426 +31169;3;0.08834839;-0.08946228;-0.15757751 +31170;0;-0.44895935;4.166626;9.251541 +31170;12;0.12447014;0.15210496;0.70373636;0.6827346 +31170;3;0.098739624;-0.08518982;-0.16308594 +31173;1;-0.29765004;3.770183;9.051698 +31173;0;-0.46328735;4.166626;9.170456 +31173;3;0.11338806;-0.083358765;-0.16796875 +31175;4;16.693115;-22.340393;-52.946472 +31175;6;-1.4390736;-0.42598838;0.05047664 +31175;7;0.11050635;-0.9027421;0.4157465;0.0;0.9928129;0.11960423;-0.0041861013;0.0;-0.045946065 +31179;0;-0.44418335;4.2046356;9.13707 +31179;3;0.12072754;-0.083969116;-0.16918945 +31179;12;0.12472202;0.15218984;0.7034093;0.68300664 +31179;0;-0.42507935;4.214142;9.094147 +31179;3;0.12988281;-0.083969116;-0.17286682 +31179;1;-0.29724175;3.7755165;9.049487 +31179;0;-0.41552734;4.209381;9.056 +31180;12;0.12500866;0.15232462;0.703059;0.6832848 +31180;3;0.13720703;-0.08457947;-0.17468262 +31182;0;-0.40596008;4.2283936;9.036911 +31182;1;-0.2968817;3.781564;9.046974 +31182;3;0.14454651;-0.087646484;-0.17774963 +31184;0;-0.38208008;4.2854004;8.989227 +31185;3;0.14881897;-0.09190369;-0.18080139 +31185;4;17.292786;-21.890259;-53.097534 +31185;6;-1.3504542;-0.44450536;0.042478647 +31185;7;0.20054705;-0.88099563;0.42851785;0.0;0.9789336;0.19732428;-0.052460857;0.0;-0.038339186 +31185;12;0.12532365;0.15248883;0.7026956;0.68356425 +31187;0;-0.36297607;4.233139;8.936752 +31187;1;-0.2963369;3.788292;9.044176 +31188;2;0.0669868;-0.40112448;-0.0519619; +31188;3;0.15065002;-0.0949707;-0.1820221 +31188;5;999.58405 +31189;0;-0.3534088;4.252136;8.908142 +31189;12;0.12567185;0.15266815;0.70231426;0.68385214 +31190;3;0.15005493;-0.09863281;-0.18263245 +31192;1;-0.2955221;3.7951412;9.041331 +31192;0;-0.3295288;4.2854004;8.855682 +31192;3;0.15127563;-0.10475159;-0.18507385 +31194;4;16.242981;-20.840454;-52.796936 +31194;6;-1.2671843;-0.45042607;0.037193842 +31194;7;0.28331408;-0.8590863;0.4262674;0.0;0.9584427;0.26915035;-0.094581366;0.0;-0.033476472 +31194;0;-0.29130554;4.299652;8.846146 +31194;3;0.14881897;-0.10900879;-0.1869049 +31195;12;0.12604102;0.1528399;0.7019152;0.68415546 +31197;0;-0.3104248;4.280655;8.822296 +31197;1;-0.29427794;3.8020928;9.038451 +31197;3;0.14820862;-0.11451721;-0.1856842 +31199;0;-0.2722168;4.299652;8.803207 +31199;12;0.12642778;0.15299954;0.7015157;0.68445814 +31199;3;0.1433258;-0.119400024;-0.1869049 +31201;1;-0.292576;3.8088706;9.035652 +31202;0;-0.26264954;4.347168;8.779373 +31202;3;0.14027405;-0.12245178;-0.18875122 +31204;4;17.292786;-21.440125;-53.546143 +31204;6;-1.2764093;-0.45958787;0.02990774 +31204;7;0.27732968;-0.8576795;0.43298277;0.0;0.96040094;0.26004565;-0.10003143;0.0;-0.026800381 +31204;0;-0.20054626;4.3614197;8.807983 +31204;3;0.13354492;-0.1285553;-0.1869049 +31205;12;0.12682761;0.15313485;0.70111644;0.68476295 +31207;1;-0.29043925;3.8152692;9.033021 +31208;0;-0.18621826;4.3329163;8.822296 +31208;2;-0.069857806;-0.46967912;0.19092846; +31208;3;0.12927246;-0.13284302;-0.18751526 +31209;12;0.12722711;0.15323868;0.7007156;0.6850759 +31210;0;-0.20054626;4.3519135;8.807983 +31210;3;0.122543335;-0.13467407;-0.1856842 +31211;0;-0.20533752;4.3281555;8.812759 +31211;1;-0.28794658;3.821179;9.030602 +31211;3;0.115219116;-0.13650513;-0.18507385 +31213;4;16.392517;-21.740723;-52.6474 +31213;6;-1.3221184;-0.45641407;0.02329581 +31213;7;0.23610553;-0.8700261;0.43279177;0.0;0.9715025;0.22092935;-0.08586762;0.0;-0.020909332 +31214;12;0.1276232;0.15330994;0.70031667;0.68539405 +31215;0;-0.17666626;4.370926;8.807983 +31215;3;0.1103363;-0.13711548;-0.1832428 +31216;0;-0.17666626;4.356659;8.831833 +31216;1;-0.28525072;3.8265398;9.028419 +31216;3;0.10240173;-0.13528442;-0.18263245 +31218;0;-0.20533752;4.3614197;8.836609 +31218;12;0.1280029;0.15335327;0.69992673;0.6857118 +31219;3;0.09689331;-0.13345337;-0.17958069 +31221;0;-0.171875;4.356659;8.798447 +31221;1;-0.2826303;3.8313272;9.02647 +31221;3;0.08956909;-0.13162231;-0.18019104 +31223;4;17.442322;-20.991516;-54.14734 +31223;6;-1.2546879;-0.45969406;0.019532215 +31223;7;0.30257484;-0.8517843;0.4276822;0.0;0.95296484;0.2785982;-0.11933543;0.0;-0.017503427 +31224;0;-0.18621826;4.375656;8.865219 +31224;3;0.08467102;-0.1267395;-0.18019104 +31224;12;0.12835857;0.15337731;0.6995471;0.6860272 +31226;0;-0.16233826;4.375656;8.855682 +31226;1;-0.280205;3.835565;9.024746 +31226;2;-0.15002063;-0.50338435;0.18696117; +31226;3;0.07795715;-0.12489319;-0.18019104 +31228;5;999.58405 +31229;0;-0.22442627;4.3614197;8.855682 +31229;12;0.12868387;0.15338868;0.69917494;0.6863431 +31229;3;0.07307434;-0.119400024;-0.17897034 +31230;0;-0.22442627;4.342407;8.86998 +31230;1;-0.27814913;3.839268;9.023234 +31230;3;0.066970825;-0.11634827;-0.17652893 +31232;4;17.593384;-21.440125;-52.3468 +31232;6;-1.3330276;-0.45513627;0.025296383 +31232;7;0.22465347;-0.8729311;0.43303823;0.0;0.9741739;0.21155757;-0.078922264;0.0;-0.022718817 +31233;0;-0.23399353;4.375656;8.879532 +31233;3;0.0602417;-0.11329651;-0.17530823 +31234;12;0.1289761;0.15339224;0.6988079;0.68666124 +31235;1;-0.2763875;3.8424833;9.02192 +31235;0;-0.2722168;4.380417;8.860458 +31235;3;0.054748535;-0.111450195;-0.17346191 +31238;12;0.12923467;0.15339085;0.6984544;0.6869725 +31240;1;-0.27487192;3.8451684;9.020823 +31241;0;-0.3199768;4.370926;8.884293 +31241;3;0.04925537;-0.10900879;-0.17164612 +31241;0;-0.3390808;4.3614197;8.908142 +31241;3;0.046188354;-0.1096344;-0.1697998 +31243;4;18.792725;-20.39032;-52.197266 +31243;6;-1.2857603;-0.45500663;0.038045775 +31243;7;0.26494715;-0.8620147;0.4321268;0.0;0.96365744;0.25258306;-0.08698368;0.0;-0.034166686 +31243;0;-0.35820007;4.347168;8.908142 +31245;17;1;38dead6d7725;12680;2812;-75; +31246;17;1;38dead6d60ff;9453;1914;-70; +31247;17;1;1c1bb5efa29a;5968;1455;-68; +31247;17;1;1c1bb5ecd182;-1903;981;-49; +31247;3;0.041305542;-0.1084137;-0.16796875 +31247;12;0.1294633;0.1533771;0.6981117;0.6872808 +31247;0;-0.39163208;4.356659;8.941528 +31247;1;-0.27340674;3.847467;9.019887 +31248;3;0.035812378;-0.1126709;-0.1661377 +31248;2;-0.033237696;-0.49546075;0.121398926; +31250;0;-0.37728882;4.342407;8.960602 +31250;3;0.03337097;-0.11512756;-0.16552734 +31250;12;0.12967472;0.15335074;0.6977782;0.68758535 +31252;1;-0.2717023;3.8493514;9.0191345 +31252;0;-0.41073608;4.3614197;8.965378 +31252;3;0.026641846;-0.11878967;-0.16369629 +31253;4;16.693115;-21.290588;-52.197266 +31253;6;-1.2993975;-0.4523558;0.045781575 +31253;7;0.24852714;-0.86649835;0.4329145;0.0;0.96774995;0.24111588;-0.072960414;0.0;-0.041162476 +31253;0;-0.43940735;4.3281555;8.994003 +31253;3;0.022979736;-0.12123108;-0.16369629 +31253;12;0.12987809;0.15330054;0.6974485;0.6878926 +31254;0;-0.43463135;4.375656;9.003525 +31254;1;-0.26975575;3.8507946;9.018577 +31254;3;0.017486572;-0.12307739;-0.16247559 +31259;12;0.13007401;0.15322424;0.6971264;0.68819904 +31259;0;-0.46328735;4.3376617;9.051224 +31259;3;0.015655518;-0.124298096;-0.16247559 +31259;1;-0.2676822;3.8518372;9.018193 +31259;0;-0.5110626;4.3376617;9.065521 +31259;3;0.011383057;-0.1255188;-0.16123962 +31263;4;16.54358;-21.890259;-52.796936 +31263;6;-1.3268355;-0.44566572;0.056314714 +31263;7;0.21762145;-0.87560505;0.43122694;0.0;0.97471106;0.21795459;-0.04933803;0.0;-0.050787263 +31263;0;-0.55882263;4.3186646;9.075058 +31263;3;0.009536743;-0.1279602;-0.16064453 +31263;12;0.1302578;0.15312864;0.69680554;0.6885104 +31265;0;-0.5349426;4.3043976;9.089371 +31265;1;-0.26554722;3.8525732;9.017941 +31265;2;0.14598045;-0.46793437;-0.017015457; +31265;3;0.0064849854;-0.13040161;-0.16064453 +31267;5;999.58405 +31268;0;-0.5445099;4.3043976;9.13707 +31269;12;0.13043387;0.15301643;0.6964907;0.6888206 +31270;3;0.0022125244;-0.13406372;-0.16123962 +31270;0;-0.5683899;4.2949066;9.222916 +31270;3;0.0016021729;-0.13406372;-0.16247559 +31271;1;-0.26318538;3.8529809;9.017838 +31272;4;16.842651;-21.141052;-52.046204 +31272;6;-1.3425899;-0.43508986;0.061550163 +31272;7;0.20054814;-0.88332134;0.4237025;0.0;0.9780946;0.20515344;-0.03525737;0.0;-0.05578043 +31272;0;-0.5922699;4.3043976;9.237228 +31272;3;-8.392334E-4;-0.13345337;-0.16001892 +31272;12;0.13060535;0.15288343;0.69617337;0.6891383 +31274;1;-0.26081872;3.8531637;9.017828 +31274;0;-0.60661316;4.275894;9.289688 +31274;3;-0.0032806396;-0.13284302;-0.16001892 +31276;0;-0.62094116;4.2854004;9.265839 +31277;12;0.13076873;0.15274164;0.69585925;0.6894559 +31277;3;-0.004501343;-0.13223267;-0.15942383 +31278;1;-0.25851274;3.8531435;9.017902 +31279;0;-0.6257019;4.252136;9.256302 +31279;3;-0.004501343;-0.12918091;-0.15942383 +31281;4;16.54358;-19.79065;-52.046204 +31281;6;-1.2645103;-0.42976075;0.06749472 +31281;7;0.27404028;-0.8667575;0.4166933;0.0;0.9597619;0.27410105;-0.061038423;0.0;-0.061310545 +31281;0;-0.64004517;4.266403;9.308762 +31281;12;0.13092157;0.15259421;0.6955495;0.68977207 +31282;3;-0.005722046;-0.12918091;-0.15879822 +31284;1;-0.25640494;3.8530474;9.018003 +31284;2;0.3029954;-0.41318297;-0.24659252; +31284;0;-0.70692444;4.280655;9.327835 +31284;3;-0.0075683594;-0.1279602;-0.15757751 +31286;0;-0.6687012;4.2473907;9.327835 +31286;12;0.13106385;0.1524518;0.69524163;0.6900869 +31287;3;-0.0038909912;-0.12611389;-0.15513611 +31288;1;-0.25432318;3.8528945;9.018127 +31288;0;-0.65437317;4.266403;9.38031 +31289;3;-0.0032806396;-0.12489319;-0.15513611 +31291;4;17.442322;-20.991516;-52.197266 +31291;6;-1.3631691;-0.4259454;0.06964746 +31291;7;0.17750266;-0.89109033;0.41767317;0.0;0.9820777;0.18771988;-0.016869739;0.0;-0.06337309 +31291;0;-0.67349243;4.2378845;9.4423065 +31291;3;-0.0020599365;-0.12185669;-0.1502533 +31292;12;0.13120247;0.15230702;0.694936;0.6904003 +31293;0;-0.72125244;4.233139;9.43277 +31293;3;-2.2888184E-4;-0.11695862;-0.1490326 +31293;1;-0.25237548;3.852814;9.018217 +31296;0;-0.7499237;4.275894;9.466141 +31297;12;0.13133669;0.15217541;0.69463944;0.69070214 +31297;3;3.8146973E-4;-0.11329651;-0.14659119 +31298;1;-0.25075597;3.852867;9.01824 +31298;0;-0.7403717;4.233139;9.46138 +31298;3;0.004043579;-0.10719299;-0.14413452 +31300;4;16.54358;-21.141052;-53.996277 +31300;6;-1.3199159;-0.41956332;0.07809284 +31300;7;0.21671546;-0.8846764;0.41277364;0.0;0.9736315;0.22672482;-0.025250904;0.0;-0.071247146 +31300;0;-0.7785797;4.2188873;9.4423065 +31304;12;0.13146105;0.15206039;0.69435245;0.69099236 +31304;3;0.0064849854;-0.10229492;-0.14109802 +31304;1;-0.24956092;3.8531463;9.018153 +31304;2;0.42339078;-0.3787129;-0.41656876; +31304;0;-0.816803;4.2711487;9.456619 +31305;3;0.010757446;-0.09680176;-0.138031 +31305;5;999.58405 +31305;12;0.13157727;0.15197265;0.6940746;0.69126856 +31306;0;-0.802475;4.233139;9.46138 +31306;3;0.015045166;-0.09312439;-0.13621521 +31307;0;-0.864563;4.2188873;9.456619 +31308;1;-0.24873516;3.8537362;9.017924 +31308;3;0.018707275;-0.087646484;-0.13192749 +31309;4;17.292786;-20.541382;-53.097534 +31309;6;-1.3077348;-0.41808513;0.09117066 +31309;7;0.22326459;-0.88242954;0.41409054;0.0;0.97120035;0.23764038;-0.017227523;0.0;-0.08320258 +31310;0;-0.87890625;4.252136;9.494766 +31310;3;0.02420044;-0.08213806;-0.13070679 +31310;12;0.1316956;0.15190728;0.69377166;0.69156444 +31312;0;-0.91711426;4.266403;9.4756775 +31312;1;-0.24831825;3.854724;9.017514 +31312;3;0.027862549;-0.0766449;-0.12887573 +31314;0;-0.9648895;4.2711487;9.451843 +31314;3;0.03215027;-0.07298279;-0.12399292 +31314;12;0.13180435;0.15188201;0.69351137;0.6918103 +31316;0;-0.9792175;4.280655;9.451843 +31316;1;-0.24834661;3.856119;9.016916 +31317;3;0.03703308;-0.06930542;-0.12214661 +31319;4;15.942383;-20.240784;-54.296875 +31319;6;-1.1655331;-0.42325297;0.10323241 +31319;7;0.3532649;-0.83790404;0.4160777;0.0;0.9307933;0.3594702;-0.06636998;0.0;-0.09395586 +31319;0;-1.0174255;4.3091583;9.451843 +31319;3;0.04008484;-0.067474365;-0.1197052 +31320;12;0.13191096;0.15188985;0.69325835;0.6920418 +31323;0;-1.0030975;4.290146;9.470917 +31323;1;-0.24859819;3.8579078;9.016145 +31323;3;0.042526245;-0.06686401;-0.11911011 +31323;2;0.62919503;-0.39182544;-0.45640755; +31325;12;0.1320218;0.15192215;0.69301295;0.6922593 +31325;0;-1.0556488;4.313904;9.4470825 +31326;3;0.046188354;-0.06686401;-0.11665344 +31330;0;-1.0986481;4.3519135;9.4423065 +31331;3;0.049865723;-0.067474365;-0.114212036 +31331;1;-0.24894696;3.8599913;9.015243 +31332;4;16.693115;-22.04132;-53.697205 +31332;6;-1.2925056;-0.42932692;0.11583293 +31332;7;0.22661385;-0.8742641;0.42931154;0.0;0.9682991;0.24978133;-0.0024577454;0.0;-0.10508528 +31332;12;0.1321404;0.15197134;0.6927683;0.6924708 +31332;0;-1.1129761;4.3614197;9.423233 +31332;1;-0.24917516;3.8624218;9.0141945 +31333;3;0.051696777;-0.06991577;-0.11116028 +31333;0;-1.1225281;4.404175;9.40892 +31333;3;0.054138184;-0.07298279;-0.10871887 +31336;0;-1.1511993;4.4231873;9.423233 +31336;12;0.13227548;0.15203065;0.6925298;0.69267046 +31336;3;0.057800293;-0.076034546;-0.105667114 +31336;0;-1.1416473;4.4611816;9.418457 +31336;3;0.059020996;-0.08030701;-0.102005005 +31336;1;-0.24907693;3.8651552;9.013026 +31338;4;15.04364;-20.991516;-53.697205 +31338;6;-1.0864798;-0.4395426;0.12062536 +31338;7;0.41690445;-0.80087155;0.42987838;0.0;0.9024037;0.42134628;-0.09019264;0.0;-0.10889495 +31338;0;-1.1416473;4.52771;9.399368 +31338;3;0.0602417;-0.08641052;-0.09954834 +31339;12;0.13243519;0.1520906;0.69229454;0.692862 +31340;0;-1.1511993;4.546707;9.389847 +31340;1;-0.2484862;3.868151;9.011757 +31340;2;0.8250891;-0.5411277;-0.41499138; +31341;3;0.059631348;-0.09312439;-0.09527588 +31342;5;999.5879 +31343;0;-1.0747681;4.6654816;9.370773 +31343;12;0.13262314;0.15214355;0.69206643;0.6930423 +31343;3;0.062683105;-0.09863281;-0.09222412 +31345;0;-1.0269775;4.6987305;9.370773 +31345;1;-0.24710028;3.8713856;9.0104065 +31346;3;0.063308716;-0.103515625;-0.089782715 +31347;4;17.442322;-19.940186;-52.946472 +31347;6;-1.0602632;-0.4623985;0.109158054 +31347;7;0.44333285;-0.78086025;0.44012854;0.0;0.8910383;0.43732768;-0.12163442;0.0;-0.09750093 +31348;0;-1.0078735;4.784256;9.418457 +31348;3;0.06512451;-0.107788086;-0.08795166 +31349;12;0.1328915;0.1521377;0.6916414;0.6934163 +31350;0;-0.9696655;4.850769;9.399368 +31350;1;-0.24511646;3.8748775;9.00896 +31350;3;0.06636047;-0.11022949;-0.08488464 +31352;0;-0.9457855;4.8887787;9.40892 +31353;12;0.13314548;0.15216006;0.69142365;0.6935798 +31353;3;0.06819153;-0.1084137;-0.08366394 +31355;0;-0.91233826;4.9362793;9.43277 +31355;1;-0.24281222;3.878595;9.007422 +31356;3;0.07002258;-0.10534668;-0.08244324 +31358;4;16.242981;-20.541382;-52.3468 +31358;6;-1.0371654;-0.48021254;0.09642016 +31358;7;0.46800956;-0.7635878;0.44486043;0.0;0.879589;0.45113137;-0.15100843;0.0;-0.08538228 +31358;0;-0.850235;4.9885406;9.4756775 +31358;3;0.06941223;-0.10046387;-0.08000183 +31358;12;0.13341826;0.15217888;0.69121146;0.6937347 +31360;1;-0.24058838;3.8824997;9.005799 +31360;2;0.6610546;-0.96572256;-0.4254446; +31360;0;-0.7976837;5.074051;9.518616 +31360;3;0.06880188;-0.09375;-0.077560425 +31362;0;-0.7642517;5.097824;9.532913 +31362;12;0.13369335;0.15221006;0.69100577;0.69387984 +31364;3;0.06758118;-0.08518982;-0.07511902 +31364;0;-0.7260437;5.164322;9.523392 +31364;3;0.06512451;-0.07725525;-0.073287964 +31364;1;-0.23875278;3.886424;9.004156 +31367;4;18.043518;-20.39032;-51.74713 +31367;6;-1.09422;-0.49568164;0.07609074 +31368;7;0.42528498;-0.7816265;0.45628136;0.0;0.9025859;0.40352795;-0.15001288;0.0;-0.066868246 +31368;0;-0.7403717;5.2070923;9.537689 +31368;3;0.0602417;-0.06686401;-0.07206726 +31368;12;0.13395312;0.15225919;0.69080347;0.69402033 +31369;0;-0.6782532;5.221344;9.618759 +31369;1;-0.23755236;3.890167;9.002571 +31369;3;0.05657959;-0.05831909;-0.07206726 +31371;0;-0.5349426;5.221344;9.633072 +31372;12;0.13417901;0.15232243;0.69062537;0.69414014 +31372;3;0.04925537;-0.048538208;-0.07206726 +31374;0;-0.64004517;5.254593;9.671219 +31374;1;-0.23699029;3.893471;9.001157 +31374;3;0.04008484;-0.040603638;-0.07206726 +31376;4;18.043518;-20.39032;-51.74713 +31376;6;-1.1094618;-0.49678615;0.066084035 +31376;7;0.41598916;-0.7872151;0.4552422;0.0;0.9075147;0.39133403;-0.15256098;0.0;-0.058053445 +31376;0;-0.60661316;5.302109;9.70462 +31377;3;0.027267456;-0.03387451;-0.073287964 +31377;12;0.1343582;0.1524015;0.69045746;0.6942551 +31378;0;-0.5922699;5.2593536;9.785706 +31379;1;-0.23714685;3.8959324;9.000088 +31379;2;0.37775436;-1.3097289;-0.63161755; +31379;3;0.013214111;-0.0289917;-0.07450867 +31381;5;999.5879 +31381;0;-0.55882263;5.240341;9.814301 +31382;12;0.1344771;0.15247022;0.69030195;0.6943717 +31382;3;-0.0038909912;-0.024719238;-0.073898315 +31383;0;-0.57315063;5.2260895;9.804764 +31384;3;-0.020980835;-0.020446777;-0.073287964 +31384;1;-0.23773669;3.8970594;8.999584 +31386;4;18.193054;-20.840454;-53.546143 +31386;6;-1.1236541;-0.48900208;0.058389895 +31386;7;0.4069358;-0.7960107;0.44807386;0.0;0.91200286;0.3817152;-0.1501477;0.0;-0.05151744 +31386;0;-0.5445099;5.1833344;9.895386 +31387;3;-0.037490845;-0.01676941;-0.07450867 +31387;12;0.1345333;0.15250053;0.6901344;0.69452065 +31389;0;-0.5158386;5.1358337;9.957382 +31389;1;-0.23862736;3.8965926;8.999763 +31389;3;-0.05519104;-0.015548706;-0.07572937 +31391;0;-0.48718262;5.0788116;9.986008 +31392;12;0.13451077;0.15248448;0.6900082;0.6946539 +31392;3;-0.07475281;-0.015548706;-0.07450867 +31393;0;-0.43463135;4.9933014;10.043243 +31394;1;-0.23958616;3.8944204;9.000678 +31394;3;-0.097351074;-0.017990112;-0.07511902 +31396;4;18.193054;-20.840454;-53.546143 +31396;6;-1.2379433;-0.46101633;0.043249007 +31396;7;0.30825728;-0.8464449;0.43417573;0.0;0.9505146;0.29262936;-0.10435504;0.0;-0.03872177 +31396;0;-0.36775208;4.9457855;10.13385 +31396;3;-0.11628723;-0.020446777;-0.07511902 +31397;12;0.13442014;0.1524033;0.68989635;0.6948004 +31399;0;-0.3438568;4.9267883;10.219696 +31399;1;-0.24025245;3.8902705;9.002455 +31399;2;0.1931482;-1.1923287;-0.98443604; +31399;3;-0.1376648;-0.022277832;-0.07511902 +31401;12;0.13426268;0.15223849;0.68980026;0.6949624 +31403;1;-0.24074581;3.8842483;9.005041 +31404;0;-0.3438568;4.86026;10.296005 +31404;3;-0.15293884;-0.023498535;-0.07695007 +31404;0;-0.3199768;4.7985077;10.367554 +31404;3;-0.17004395;-0.022888184;-0.07878113 +31405;4;16.392517;-20.991516;-53.396606 +31405;6;-1.3331689;-0.43329793;0.030853495 +31405;7;0.22269708;-0.8820821;0.41513515;0.0;0.97448564;0.21364343;-0.06880666;0.0;-0.027997758 +31406;0;-0.3104248;4.7082367;10.462921 +31406;3;-0.185318;-0.025939941;-0.07878113 +31408;12;0.13404305;0.15198985;0.6896974;0.6951612 +31408;0;-0.29130554;4.57045;10.520157 +31410;3;-0.19874573;-0.026550293;-0.08061218 +31410;1;-0.2411791;3.8766136;9.008319 +31410;0;-0.29130554;4.5086975;10.586929 +31412;12;0.1337592;0.15168026;0.6896231;0.6953572 +31412;3;-0.20791626;-0.027770996;-0.07878113 +31413;0;-0.27697754;4.4516907;10.648941 +31413;1;-0.24148563;3.8676667;9.012156 +31413;3;-0.2183075;-0.028381348;-0.08000183 +31415;4;16.392517;-20.991516;-53.396606 +31415;6;-1.4791797;-0.39584097;0.026004003 +31415;7;0.08147405;-0.9188031;0.38621622;0.0;0.99638665;0.08441397;-0.009372588;0.0;-0.023990477 +31417;0;-0.29130554;4.380417;10.682312 +31417;12;0.13343106;0.15131755;0.6895568;0.69556504 +31417;3;-0.22746277;-0.028381348;-0.081222534 +31417;0;-0.30085754;4.3329163;10.744324 +31418;2;0.01682219;-0.7101362;-1.527194; +31418;3;-0.23234558;-0.0289917;-0.08244324 +31418;1;-0.24176483;3.8577218;9.016409 +31420;5;999.5879 +31421;12;0.13306713;0.15091527;0.68949646;0.6957819 +31421;0;-0.25309753;4.266403;10.744324 +31421;3;-0.2354126;-0.03265381;-0.085510254 +31422;0;-0.26742554;4.166626;10.811081 +31423;1;-0.24195385;3.8471413;9.020924 +31423;3;-0.23724365;-0.03755188;-0.08734131 +31425;4;17.442322;-20.690918;-52.197266 +31425;6;-1.5950669;-0.3677574;0.0247312 +31425;7;-0.03314865;-0.93286115;0.35870773;0.0;0.999184;-0.02264548;0.033443704;0.0;-0.023075221 +31425;0;-0.23399353;4.085861;10.854004 +31426;3;-0.23846436;-0.04121399;-0.089782715 +31426;12;0.13268203;0.15048261;0.6894316;0.69601333 +31430;0;-0.21966553;4.024109;10.930313 +31430;1;-0.2418122;3.8361871;9.025592 +31430;3;-0.2390747;-0.046707153;-0.09222412 +31432;0;-0.21009827;3.9955902;10.973251 +31435;12;0.13229778;0.15002412;0.68936247;0.6962539 +31437;3;-0.2366333;-0.047317505;-0.09527588 +31438;0;-0.22921753;3.9053192;11.068634 +31438;3;-0.23478699;-0.047927856;-0.09466553 +31438;4;17.442322;-20.690918;-52.197266 +31438;6;-1.6943887;-0.33912432;0.020705787 +31438;7;-0.13008653;-0.93585294;0.32750076;0.0;0.9913104;-0.11625684;0.06154741;0.0;-0.019525122 +31438;0;-0.27697754;3.8578186;11.068634 +31438;3;-0.22685242;-0.04914856;-0.09466553 +31438;1;-0.24142088;3.8250844;9.0303135 +31439;12;0.13191676;0.14955;0.6892828;0.69650704 +31440;1;-0.24102706;3.8141384;9.034952 +31440;2;-0.04274133;-0.18594933;-1.9139099; +31440;0;-0.25309753;3.7770538;11.097244 +31440;3;-0.22013855;-0.047927856;-0.09466553 +31440;0;-0.26742554;3.7247925;11.082947 +31440;12;0.1315445;0.14908078;0.68919915;0.6967608 +31440;3;-0.2060852;-0.046707153;-0.09588623 +31442;0;-0.3199768;3.639267;11.068634 +31442;3;-0.18959045;-0.047927856;-0.09527588 +31442;1;-0.24072666;3.8038316;9.039305 +31444;4;16.093445;-19.940186;-53.396606 +31444;6;-1.7164474;-0.317533;0.028900377 +31444;7;-0.15400253;-0.9399495;0.30459493;0.0;0.9876891;-0.13788098;0.07388656;0.0;-0.027451787 +31447;1;-0.2404327;3.7948935;9.043069 +31448;12;0.13121416;0.14862235;0.68900794;0.69711 +31451;12;0.13091737;0.14823572;0.6889051;0.69734967 +31457;1;-0.24024324;3.7879906;9.045967 +31457;12;0.13069545;0.14792903;0.6887861;0.697574 +31457;0;-0.32476807;3.6012573;11.073395 +31458;3;-0.1694336;-0.047927856;-0.09527588 +31458;0;-0.32476807;3.5727692;11.068634 +31458;3;-0.14561462;-0.046707153;-0.09588623 +31458;0;-0.3295288;3.5585022;11.0877075 +31458;3;-0.117507935;-0.044265747;-0.09527588 +31458;0;-0.3152008;3.5205078;11.059082 +31458;3;-0.089416504;-0.03755188;-0.09832764 +31458;4;15.342712;-19.340515;-53.697205 +31458;6;-1.7161882;-0.30807576;0.02849382 +31458;7;-0.15336913;-0.9428648;0.29577687;0.0;0.9877959;-0.13805905;0.07210292;0.0;-0.027148621 +31458;0;-0.27697754;3.4539795;11.016174 +31458;3;-0.058258057;-0.031433105;-0.09832764 +31458;0;-0.26264954;3.449234;11.011398 +31458;2;0.017617255;0.23030376;-2.016901; +31458;3;-0.02709961;-0.022277832;-0.09893799 +31458;1;-0.24051733;3.78352;9.047831 +31459;5;999.5879 +31460;12;0.13055028;0.14773452;0.6886457;0.69778097 +31460;0;-0.28652954;3.4207153;10.997086 +31460;3;0.0077209473;-0.011276245;-0.09954834 +31461;0;-0.2817688;3.4064636;10.939865 +31461;3;0.042526245;0.0027770996;-0.10322571 +31461;1;-0.24159834;3.7818027;9.04852 +31463;4;16.842651;-18.89038;-54.296875 +31463;6;-1.6852982;-0.30177075;0.025750456 +31464;7;-0.12181631;-0.94855934;0.29222563;0.0;0.992248;-0.10908896;0.059524693;0.0;-0.024584118 +31464;0;-0.3199768;3.3827057;10.834946 +31464;3;0.0773468;0.014984131;-0.105667114 +31465;12;0.1310137;0.14720821;0.6859473;0.70045805 +31466;0;-0.28652954;3.3732147;10.725235 +31466;3;0.11216736;0.025970459;-0.11116028 +31466;1;-0.24390507;3.7831223;9.047907 +31470;0;-0.32476807;3.3447113;10.639404 +31470;12;0.13101842;0.14731121;0.6857617;0.7006172 +31470;3;0.14698792;0.035751343;-0.11543274 +31471;17;1;38dead6d7725;9380;3592;-79; +31472;17;1;38dead6d60ff;9778;1108;-67; +31472;17;1;1c1bb5efa29a;1268;3957;-75; +31474;17;1;1c1bb5ecd182;-73;976;-47; +31474;0;-0.3152008;3.335205;10.520157 +31474;3;0.18058777;0.04307556;-0.1184845 +31474;4;15.792847;-19.940186;-52.946472 +31474;6;-1.7708073;-0.3068773;0.029952645 +31474;7;-0.2074574;-0.93427736;0.28997815;0.0;0.9778274;-0.189398;0.08934213;0.0;-0.028549036 +31474;0;-0.36775208;3.3304443;10.391388 +31475;3;0.21296692;0.048583984;-0.12521362 +31475;12;0.13110083;0.14757152;0.6855429;0.70076114 +31475;1;-0.24734849;3.7874687;9.045994 +31475;1;-0.2516731;3.7948122;9.042796 +31475;0;-0.3438568;3.3019562;10.296005 +31476;2;0.019802243;0.4468205;-1.6324196; +31476;3;0.24351501;0.052856445;-0.12765503 +31478;0;-0.41073608;3.2971954;10.13385 +31478;3;0.27404785;0.05407715;-0.13070679 +31478;12;0.13126966;0.14797586;0.68528825;0.7008934 +31479;0;-0.39640808;3.3399658;10.043243 +31480;1;-0.2565032;3.8048542;9.03844 +31480;3;0.3027649;0.05407715;-0.13375854 +31482;4;16.392517;-19.641113;-53.396606 +31482;6;-1.683105;-0.32082003;0.039449647 +31482;7;-0.124344215;-0.9429986;0.3086943;0.0;0.99153304;-0.10635448;0.074505016;0.0;-0.037427105 +31482;0;-0.39163208;3.3019562;9.900162 +31483;3;0.32841492;0.051635742;-0.13925171 +31483;12;0.1315573;0.148474;0.68486965;0.70114326 +31484;0;-0.40119934;3.3114624;9.742767 +31484;1;-0.26144275;3.8174071;9.033004 +31485;3;0.35101318;0.048583984;-0.14231873 +31490;0;-0.39163208;3.3209534;9.647385 +31490;12;0.13191348;0.14909482;0.6845498;0.7012569 +31490;3;0.372406;0.04736328;-0.14598083 +31490;1;-0.2663075;3.8320293;9.026669 +31490;0;-0.37728882;3.3209534;9.48999 +31490;3;0.3907318;0.044296265;-0.1502533 +31492;4;16.242981;-19.190979;-54.296875 +31492;6;-1.5704303;-0.3363777;0.039735578 +31492;7;-0.0127463285;-0.9439564;0.32982394;0.0;0.9992153;3.455151E-4;0.039604396;0.0;-0.037498783 +31492;0;-0.36775208;3.335205;9.370773 +31492;3;0.4072113;0.041244507;-0.15454102 +31492;12;0.13235709;0.14978832;0.6841981;0.70136875 +31494;1;-0.2710917;3.8483224;9.019591 +31494;0;-0.36775208;3.3114624;9.265839 +31494;2;0.073040366;0.546355;-0.687685; +31494;3;0.4212799;0.041244507;-0.15757751 +31496;0;-0.3056488;3.325714;9.160919 +31497;12;0.13287252;0.15053728;0.68381673;0.70148283 +31497;3;0.43470764;0.04185486;-0.15942383 +31497;5;999.58954 +31499;1;-0.27584562;3.8658924;9.01193 +31499;0;-0.2817688;3.3019562;9.08461 +31499;3;0.44570923;0.04673767;-0.16369629 +31501;4;16.392517;-17.69104;-52.946472 +31501;6;-1.4616197;-0.3484671;0.03100612 +31501;7;0.09838493;-0.93430126;0.3426392;0.0;0.9947218;0.10241106;-0.0063706953;0.0;-0.029137896 +31501;0;-0.25309753;3.2734528;8.984451 +31501;3;0.4560852;0.05041504;-0.1673584 +31502;12;0.13412951;0.15072411;0.68019587;0.7047164 +31503;0;-0.21966553;3.2971954;8.84137 +31504;1;-0.2809653;3.8844569;9.003786 +31504;3;0.46525574;0.05834961;-0.17042542 +31506;0;-0.18144226;3.3114624;8.726913 +31507;12;0.13473268;0.15156734;0.6797739;0.7048276 +31507;3;0.4756317;0.06323242;-0.17408752 +31509;0;-0.157547;3.3067017;8.607666 +31509;1;-0.28665215;3.903951;8.995172 +31509;3;0.48358154;0.06752014;-0.17835999 +31510;4;17.292786;-20.541382;-52.3468 +31511;6;-1.5889213;-0.3667191;0.018301059 +31511;7;-0.024681496;-0.93335545;0.358104;0.0;0.99954945;-0.016918955;0.024794405;0.0;-0.017083246 +31511;0;-0.08590698;3.2877045;8.497986 +31511;3;0.49090576;0.06813049;-0.1832428 +31512;12;0.1353531;0.15246387;0.6793369;0.7049367 +31513;0;-0.06201172;3.2496948;8.421677 +31513;1;-0.29267055;3.924156;8.986181 +31513;2;-0.14333096;0.64624095;0.18679714; +31514;3;0.49641418;0.06752014;-0.18629456 +31515;0;-0.033355713;3.202179;8.30722 +31516;12;0.13598992;0.15339728;0.6788817;0.7050501 +31516;3;0.50312805;0.064453125;-0.18812561 +31518;0;-0.042907715;3.2734528;8.230911 +31518;1;-0.29868498;3.9448931;8.976899 +31518;3;0.5061798;0.060791016;-0.18934631 +31520;4;16.392517;-19.940186;-52.197266 +31520;6;-1.5217121;-0.3785194;0.0052129496 +31520;7;0.047139794;-0.9280937;0.3693508;0.0;0.9988765;0.045591407;-0.012924669;0.0;-0.004843917 +31520;0;-0.01423645;3.2829437;8.178452 +31521;3;0.5098419;0.056518555;-0.19300842 +31521;12;0.13667741;0.15433271;0.6783036;0.7052694 +31523;0;0.03831482;3.2971954;8.068741 +31523;1;-0.3043894;3.9660678;8.967372 +31523;3;0.511673;0.049194336;-0.19668579 +31525;0;0.09085083;3.2401886;8.03537 +31525;3;0.51474;0.043685913;-0.19729614 +31526;12;0.13737252;0.15528691;0.6778184;0.70539147 +31528;0;0.09085083;3.2639465;7.973358 +31528;1;-0.30956653;3.9874148;8.957723 +31528;3;0.51535034;0.040023804;-0.2003479 +31530;4;16.093445;-19.641113;-51.446533 +31530;6;-1.496519;-0.38852352;-0.011393806 +31530;7;0.07850844;-0.92291754;0.37690783;0.0;0.9968577;0.06867818;-0.039472356;0.0;0.010544391 +31530;0;0.114746094;3.2829437;7.849365 +31530;3;0.51474;0.036972046;-0.2003479 +31531;12;0.13809818;0.1562303;0.67731637;0.7055236 +31532;0;0.1529541;3.3114624;7.8398285 +31532;3;0.511673;0.035751343;-0.2027893 +31532;1;-0.3144067;4.008927;8.9479475 +31533;2;-0.40902784;0.75635767;0.87835026; +31534;0;0.24848938;3.3637238;7.782593 +31535;12;0.13884814;0.15716286;0.6768047;0.70566034 +31535;3;0.5086212;0.032699585;-0.20401001 +31535;5;999.58954 +31539;1;-0.31892893;4.030299;8.938181 +31539;0;0.27716064;3.3779755;7.8016815 +31539;3;0.5037384;0.03453064;-0.20767212 +31540;4;16.54358;-19.491577;-53.546143 +31540;6;-1.4026549;-0.4083808;-0.035510823 +31540;7;0.18114519;-0.90482223;0.38533503;0.0;0.9829165;0.15358827;-0.10141957;0.0;0.032583743 +31540;0;0.2962799;3.3399658;7.6633606 +31540;3;0.49273682;0.037582397;-0.21318054 +31540;12;0.1402156;0.15753746;0.67353404;0.7084303 +31542;0;0.27236938;3.325714;7.6586 +31542;1;-0.32363683;4.0511203;8.928594 +31542;3;0.4829712;0.041244507;-0.21562195 +31544;0;0.26283264;3.3161926;7.6633606 +31544;12;0.14094427;0.15843506;0.6730089;0.70858455 +31544;3;0.47380066;0.047958374;-0.21318054 +31547;0;0.30104065;3.325714;7.6586 +31548;1;-0.32884127;4.071143;8.9192915 +31548;3;0.46096802;0.0546875;-0.21011353 +31549;4;17.593384;-21.141052;-53.546143 +31549;6;-1.4882375;-0.40939373;-0.039287306 +31549;7;0.097982556;-0.9142377;0.3931523;0.0;0.99453557;0.075650305;-0.07194355;0.0;0.03603142 +31550;0;0.27236938;3.3922272;7.606125 +31550;3;0.4499817;0.06262207;-0.20829773 +31550;12;0.14163078;0.15932238;0.67248315;0.7087479 +31552;0;0.32492065;3.4539795;7.606125 +31552;1;-0.3344885;4.0901866;8.910365 +31552;2;-0.66311944;0.7449131;1.2207727; +31552;3;0.4389801;0.072402954;-0.20829773 +31554;0;0.3201599;3.4729767;7.5727386 +31554;12;0.14226095;0.16019194;0.6719815;0.70890146 +31554;3;0.42494202;0.08155823;-0.20829773 +31556;0;0.34403992;3.4777374;7.5727386 +31556;1;-0.3408516;4.1082697;8.9018 +31556;3;0.41149902;0.087677;-0.21073914 +31559;4;18.492126;-21.141052;-53.546143 +31559;6;-1.4404829;-0.430124;-0.045400158 +31559;7;0.14857517;-0.9012075;0.4071245;0.0;0.9880403;0.11810875;-0.099128805;0.0;0.041250665 +31559;0;0.4013672;3.4634857;7.563202 +31559;3;0.39683533;0.09194946;-0.20889282 +31559;12;0.14284204;0.1610358;0.6714206;0.70912486 +31561;0;0.35359192;3.4777374;7.5775146 +31561;1;-0.3477234;4.1251154;8.893741 +31562;3;0.38339233;0.09744263;-0.20462036 +31564;0;0.37271118;3.4872284;7.639511 +31564;12;0.14333564;0.16187146;0.6709476;0.7092827 +31564;3;0.372406;0.10661316;-0.20217896 +31567;0;0.4109192;3.5585022;7.6586 +31567;1;-0.354975;4.1408305;8.8861475 +31567;3;0.35957336;0.11454773;-0.20095825 +31569;4;18.193054;-20.541382;-53.546143 +31569;6;-1.407757;-0.43441376;-0.053603213 +31569;7;0.18433544;-0.8950872;0.40600404;0.0;0.98166096;0.14724138;-0.12108508;0.0;0.048601102 +31569;0;0.4156952;3.6202698;7.691971 +31569;3;0.34429932;0.12615967;-0.2027893 +31569;12;0.14377302;0.16268349;0.67049927;0.70943236 +31572;1;-0.36295438;4.155504;8.878973 +31572;0;0.4013672;3.6012573;7.6586 +31572;2;-0.7892091;0.65191364;1.2523413; +31572;3;0.33085632;0.13165283;-0.20584106 +31576;12;0.1441361;0.16348371;0.67006946;0.7095808 +31577;0;0.4013672;3.5870209;7.7205963 +31577;1;-0.37167302;4.1688275;8.872364 +31577;3;0.31559753;0.13775635;-0.20951843 +31577;5;999.58954 +31577;0;0.4013672;3.5822601;7.782593 +31577;3;0.29727173;0.14141846;-0.21562195 +31579;4;16.693115;-19.940186;-50.546265 +31579;6;-1.4363708;-0.43087494;-0.051526774 +31579;7;0.15516052;-0.9004036;0.406446;0.0;0.98678017;0.12177157;-0.106941044;0.0;0.046796545 +31579;0;0.4347992;3.6012573;7.734909 +31579;12;0.14458649;0.16411845;0.66894543;0.7104027 +31579;3;0.27650452;0.14448547;-0.22233582 +31581;1;-0.38087976;4.180594;8.866435 +31581;0;0.47779846;3.639267;7.787369 +31582;3;0.2563324;0.14692688;-0.22843933 +31584;12;0.14480613;0.1648477;0.6685211;0.7105886 +31584;0;0.70710754;3.682022;7.773056 +31584;3;0.23800659;0.14692688;-0.23394775 +31586;0;0.602005;3.6440125;7.8398285 +31586;1;-0.39019057;4.190653;8.86128 +31586;3;0.21479797;0.14875793;-0.24127197 +31588;4;16.242981;-20.541382;-51.597595 +31588;6;-1.4486971;-0.43397704;-0.07663764 +31589;7;0.15339218;-0.900546;0.40680203;0.0;0.9857209;0.1105057;-0.12705547;0.0;0.06946534 +31589;0;0.37747192;3.6582794;7.8684235 +31589;3;0.19281006;0.15426636;-0.2504425 +31589;12;0.1449392;0.16552658;0.66809195;0.7108072 +31590;0;0.25805664;3.6725311;7.9638214 +31590;1;-0.400515;4.198745;8.856988 +31590;3;0.16714478;0.15364075;-0.25776672 +31591;2;-0.9091548;0.5814686;1.0380745; +31594;12;0.1449729;0.16615658;0.6676542;0.7110645 +31594;0;0.3201599;3.6915283;8.054443 +31594;3;0.1433258;0.15060425;-0.2632599 +31598;0;0.37271118;3.6725311;8.073517 +31598;3;0.12132263;0.15242004;-0.2644806 +31598;1;-0.4111154;4.2046595;8.853697 +31598;4;19.242859;-20.240784;-51.597595 +31598;6;-1.4542848;-0.42650875;-0.046131913 +31599;7;0.1350729;-0.90424323;0.40509215;0.0;0.9899458;0.105834134;-0.093843;0.0;0.041984316 +31602;0;0.4013672;3.663025;8.130753 +31602;3;0.098739624;0.15608215;-0.26203918 +31603;1;-0.42181963;4.208565;8.8513365 +31603;0;0.33926392;3.682022;8.187988 +31603;3;0.07551575;0.15548706;-0.25898743 +31603;0;0.31536865;3.6582794;8.283371 +31603;3;0.050476074;0.15364075;-0.25715637 +31603;12;0.14498904;0.1666463;0.66691566;0.7116395 +31603;12;0.14484784;0.16712846;0.6664876;0.7119562 +31605;0;0.38226318;3.6725311;8.416901 +31605;3;0.02848816;0.15182495;-0.25654602 +31605;1;-0.43246272;4.210356;8.849971 +31607;4;16.992188;-19.940186;-51.446533 +31608;6;-1.4702431;-0.41104898;-0.04538496 +31608;7;0.118317224;-0.91207176;0.3925891;0.0;0.99210453;0.092022106;-0.08520941;0.0;0.04159021 +31608;0;0.38703918;3.6345215;8.507523 +31608;3;0.0034332275;0.15304565;-0.25715637 +31608;12;0.14462489;0.16752575;0.66608876;0.7122813 +31610;1;-0.44293904;4.209986;8.849628 +31610;2;-0.85755634;0.56866074;0.5651808; +31611;0;0.37271118;3.5870209;8.536133 +31611;3;-0.019165039;0.15914917;-0.25654602 +31612;0;0.39179993;3.6345215;8.607666 +31612;3;-0.038085938;0.16586304;-0.25532532 +31612;12;0.14432137;0.16783947;0.66571075;0.7126223 +31613;5;999.58954 +31615;1;-0.45382464;4.2076716;8.850178 +31615;0;0.35359192;3.615509;8.6792145 +31615;3;-0.053375244;0.17196655;-0.25532532 +31617;4;18.193054;-19.79065;-53.546143 +31617;6;-1.4727063;-0.39441532;-0.04071757 +31617;7;0.113418624;-0.9187834;0.37811783;0.0;0.9928362;0.09041368;-0.07811195;0.0;0.03758094 +31617;0;0.36791992;3.591751;8.78891 +31617;3;-0.07046509;0.17991638;-0.25654602 +31620;12;0.14458881;0.1675309;0.66252476;0.71560365 +31620;0;0.3106079;3.5442505;8.874756 +31620;1;-0.46539864;4.203755;8.8514385 +31620;3;-0.08451843;0.18907166;-0.25471497 +31621;0;0.28671265;3.4824982;8.927231 +31621;12;0.14409836;0.16775748;0.6621845;0.7159643 +31622;3;-0.097961426;0.19946289;-0.2516632 +31624;1;-0.47771534;4.1984234;8.8533125 +31624;0;0.22460938;3.449234;9.017838 +31624;3;-0.110183716;0.20985413;-0.2467804 +31626;4;17.74292;-21.740723;-50.546265 +31626;6;-1.6973789;-0.3652177;-0.024902083 +31626;7;-0.11738385;-0.92657286;0.3573287;0.0;0.9928143;-0.11791843;0.020374378;0.0;0.02325729 +31626;0;0.1720581;3.4207153;9.075058 +31626;3;-0.12484741;0.2177887;-0.24188232 +31627;12;0.14352258;0.16796449;0.661869;0.7163231 +31629;2;-0.8225856;0.6908188;-0.046767235; +31629;1;-0.49082774;4.191863;8.855703 +31629;0;0.10517883;3.4112244;9.156143 +31629;3;-0.1425476;0.22267151;-0.23516846 +31634;1;-0.50420296;4.183727;8.858799 +31634;0;0.023986816;3.368454;9.251541 +31635;3;-0.16027832;0.22084045;-0.22721863 +31635;0;-0.052444458;3.3209534;9.327835 +31635;3;-0.18104553;0.21717834;-0.21989441 +31635;4;16.992188;-21.290588;-52.197266 +31635;6;-1.7205026;-0.34202823;0.0056223017 +31635;7;-0.15100998;-0.9315392;0.3308033;0.0;0.9885181;-0.14050855;0.055582523;0.0;-0.00529661 +31635;12;0.14286438;0.16816151;0.661585;0.7166707 +31636;17;0;38dead6d7725;0;0;0; +31637;17;1;38dead6d60ff;11394;1273;-72; +31637;17;1;1c1bb5efa29a;8083;274;-73; +31638;17;1;1c1bb5ecd182;-2750;1567;-45; +31638;0;-0.11456299;3.259201;9.46138 +31638;3;-0.2012024;0.21229553;-0.21318054 +31638;12;0.14214204;0.16830084;0.6612781;0.71706474 +31638;1;-0.5171341;4.173724;8.862771 +31638;0;-0.16711426;3.2164307;9.537689 +31638;3;-0.22563171;0.2043457;-0.20462036 +31640;12;0.14134115;0.16837099;0.66107047;0.7173979 +31641;0;-0.28652954;3.1594238;9.656921 +31645;3;-0.24945068;0.19335938;-0.19546509 +31645;0;-0.2722168;3.1546783;9.752304 +31645;1;-0.5292197;4.1616154;8.86775 +31645;3;-0.27388;0.18174744;-0.18812561 +31645;4;18.043518;-19.641113;-51.446533 +31645;6;-1.7326778;-0.31274274;0.027905827 +31645;7;-0.1695851;-0.93905324;0.2990316;0.0;0.98515785;-0.15335733;0.07710686;0.0;-0.026548762 +31646;0;-0.32476807;3.08815;9.804764 +31646;12;0.14048487;0.1683323;0.6609043;0.71772826 +31646;3;-0.2995453;0.16708374;-0.18263245 +31648;0;-0.3438568;3.08815;9.885849 +31648;1;-0.54002184;4.147326;8.873791 +31648;2;-0.4037879;0.9607048;-0.7241125; +31648;3;-0.3239746;0.15060425;-0.17652893 +31649;0;-0.39640808;3.0168915;10.005081 +31650;12;0.13958159;0.16816668;0.6607744;0.7180628 +31650;3;-0.34658813;0.12982178;-0.17224121 +31651;5;999.5954 +31652;0;-0.45851135;2.9741364;10.172012 +31652;1;-0.5492436;4.130814;8.880924 +31652;3;-0.3679657;0.11027527;-0.1697998 +31654;4;17.442322;-19.940186;-51.446533 +31654;6;-1.8609315;-0.2841821;0.045045286 +31654;7;-0.29788905;-0.9197728;0.2554995;0.0;0.9536213;-0.27460736;0.1232761;0.0;-0.04322396 +31655;0;-0.46328735;2.921875;10.272156 +31655;12;0.13875555;0.167766;0.6601959;0.71884835 +31655;3;-0.3887329;0.09439087;-0.16369629 +31657;0;-0.49195862;2.8933716;10.343704 +31657;1;-0.55673754;4.1123257;8.889034 +31657;3;-0.40827942;0.080337524;-0.15698242 +31659;0;-0.5301666;2.8411102;10.381866 +31659;12;0.1377996;0.16731907;0.66011006;0.7192151 +31660;3;-0.42477417;0.059570312;-0.14964294 +31661;0;-0.5827179;2.8173523;10.400925 +31662;1;-0.5626656;4.092139;8.897973 +31662;3;-0.4388275;0.037582397;-0.14169312 +31664;4;18.043518;-20.39032;-52.6474 +31664;6;-1.9321874;-0.2641322;0.055967078 +31664;7;-0.36668268;-0.9029654;0.22404729;0.0;0.9287777;-0.34131363;0.14448869;0.0;-0.053997908 +31664;0;-0.59706116;2.798355;10.453384 +31665;3;-0.44493103;0.014984131;-0.1331482 +31665;12;0.13682938;0.16675213;0.66005075;0.7195864 +31666;0;-0.6257019;2.7508392;10.501083 +31666;1;-0.56646717;4.0708337;8.907499 +31667;2;-0.104272485;1.2182741;-1.4236126; +31667;3;-0.44676208;-0.0076141357;-0.12704468 +31669;0;-0.6639252;2.6890717;10.572632 +31669;12;0.13588499;0.16606267;0.6600138;0.7199586 +31669;3;-0.44309998;-0.0289917;-0.1197052 +31671;0;-0.64482117;2.665329;10.601242 +31671;1;-0.56812483;4.049303;8.917202 +31671;3;-0.4333191;-0.047317505;-0.11054993 +31673;4;17.593384;-20.541382;-52.796936 +31673;6;-2.015233;-0.24587528;0.060750213 +31673;7;-0.44249842;-0.87569934;0.19325043;0.0;0.8948337;-0.41701844;0.15927371;0.0;-0.05888689 +31674;0;-0.63049316;2.6463165;10.663239 +31674;3;-0.42111206;-0.063201904;-0.101379395 +31675;12;0.13502134;0.16527379;0.65993494;0.72037476 +31676;0;-0.6639252;2.6605682;10.648941 +31676;1;-0.5678398;4.028539;8.92662 +31677;3;-0.4009552;-0.076034546;-0.09283447 +31678;0;-0.68304443;2.6463165;10.625092 +31679;12;0.1342407;0.16445558;0.659918;0.7207233 +31679;3;-0.37712097;-0.087646484;-0.081832886 +31681;0;-0.68782043;2.6273193;10.620316 +31681;1;-0.5660979;4.009455;8.935318 +31681;3;-0.34780884;-0.09436035;-0.070236206 +31683;4;16.992188;-18.740845;-50.546265 +31683;6;-1.9741461;-0.24202965;0.06467427 +31683;7;-0.40592784;-0.8929438;0.19461222;0.0;0.91174865;-0.38106152;0.15331838;0.0;-0.06274548 +31684;0;-0.65437317;2.608307;10.59169 +31684;3;-0.3154297;-0.09741211;-0.05984497 +31684;12;0.13357492;0.16364557;0.65990895;0.72103965 +31686;0;-0.67349243;2.6558228;10.572632 +31686;1;-0.56327856;3.992812;8.9429455 +31686;2;0.043592274;1.3715305;-1.6855488; +31686;3;-0.27999878;-0.096191406;-0.04701233 +31688;0;-0.6495819;2.6510773;10.558319 +31688;12;0.13303931;0.16289298;0.6599101;0.72130793 +31689;3;-0.2390747;-0.091308594;-0.036026 +31689;5;999.5954 +31690;0;-0.6495819;2.6890717;10.496323 +31691;1;-0.56010085;3.9794765;8.949087 +31691;3;-0.19630432;-0.083358765;-0.026245117 +31692;4;18.043518;-17.69104;-52.197266 +31693;6;-1.8323202;-0.25033855;0.061807793 +31693;7;-0.27284095;-0.9358856;0.222881;0.0;0.96019614;-0.25049347;0.12359767;0.0;-0.059843037 +31693;0;-0.65914917;2.6938324;10.439087 +31693;3;-0.15171814;-0.07235718;-0.014038086 +31694;12;0.13324957;0.16176534;0.6572374;0.72395825 +31695;0;-0.6257019;2.774582;10.343704 +31696;1;-0.55719465;3.9699812;8.9534855 +31696;3;-0.1071167;-0.05831909;-0.0030517578 +31698;0;-0.6113739;2.8078613;10.238785 +31698;3;-0.05886841;-0.043045044;0.007949829 +31700;12;0.13298766;0.1612925;0.65725785;0.7240934 +31701;1;-0.55499464;3.9646432;8.955986 +31701;0;-0.60661316;2.8838654;10.114777 +31701;3;-0.013656616;-0.02532959;0.017730713 +31703;4;17.74292;-20.39032;-51.74713 +31703;6;-1.9115298;-0.2772717;0.05990122 +31703;7;-0.34902415;-0.90651137;0.23752715;0.0;0.935343;-0.32141483;0.14773521;0.0;-0.057578895 +31703;0;-0.6113739;2.9266357;10.048004 +31704;3;0.031539917;-0.0063934326;0.026275635 +31704;12;0.13285747;0.16101038;0.6572894;0.7241514 +31705;1;-0.5539161;3.9635048;8.956557 +31706;0;-0.5874939;3.0073853;9.9144745 +31706;2;0.015516877;1.1914978;-1.3306017; +31706;3;0.071243286;0.013153076;0.035446167 +31708;0;-0.5636139;3.0834198;9.747543 +31709;12;0.13285014;0.16093539;0.6573291;0.72413343 +31709;3;0.1078949;0.033920288;0.043380737 +31710;1;-0.55417;3.9661438;8.955373 +31710;0;-0.5683899;3.1404114;9.599686 +31710;3;0.1396637;0.053466797;0.049484253 +31713;4;17.74292;-19.641113;-52.946472 +31713;6;-1.7029014;-0.3156467;0.059140176 +31713;7;-0.14967921;-0.9423131;0.29940298;0.0;0.98713696;-0.12521355;0.09940958;0.0;-0.05618564 +31713;0;-0.5445099;3.244934;9.43277 +31713;3;0.16714478;0.0705719;0.057434082 +31714;12;0.1329597;0.16104344;0.6572868;0.72412765 +31715;0;-0.5683899;3.3114624;9.284912 +31716;1;-0.555808;3.9718666;8.952735 +31716;3;0.190979;0.08584595;0.061706543 +31718;12;0.13311455;0.16134223;0.6573462;0.72397876 +31719;0;-0.54927063;3.3494568;9.13707 +31719;3;0.21052551;0.09866333;0.06842041 +31721;0;-0.5827179;3.4064636;9.003525 +31721;3;0.22212219;0.10966492;0.074539185 +31721;1;-0.55854636;3.9798825;8.949004 +31723;4;16.842651;-19.79065;-53.097534 +31723;6;-1.5270762;-0.36101127;0.06463094 +31724;7;0.020823613;-0.9346462;0.35496902;0.0;0.9979557;0.040888857;0.04911857;0.0;-0.060422752 +31724;0;-0.57315063;3.4777374;8.898605 +31724;3;0.22946167;0.117614746;0.0806427 +31725;2;-0.04960656;0.6957345;-0.3055334; +31725;12;0.1333167;0.16177447;0.657415;0.72378266 +31725;1;-0.5619895;3.9892998;8.944593 +31726;0;-0.5922699;3.606018;8.745987 +31726;3;0.23312378;0.124938965;0.08796692 +31728;12;0.13354586;0.16229308;0.65749973;0.7235472 +31730;1;-0.5658089;3.999419;8.939833 +31739;12;0.13378957;0.16285254;0.6575813;0.7233023 +31739;1;-0.5696782;4.0096617;8.934998 +31739;12;0.13402177;0.1634262;0.6577193;0.7230044 +31739;0;-0.59706116;3.6345215;8.583832 +31739;3;0.23556519;0.13104248;0.0977478 +31739;5;999.5954 +31739;0;-0.63049316;3.7200317;8.478897 +31739;3;0.23312378;0.13531494;0.10385132 +31739;4;17.442322;-19.641113;-51.446533 +31739;6;-1.3470839;-0.41243738;0.07422367 +31739;7;0.19225612;-0.8933167;0.4062301;0.0;0.97899044;0.20324802;-0.016375054;0.0;-0.067937344 +31739;0;-0.62094116;3.8055573;8.350128 +31739;3;0.2257843;0.13653564;0.111190796 +31740;0;-0.5922699;3.8388062;8.226135 +31740;3;0.21723938;0.13349915;0.11668396 +31740;0;-0.6018219;3.8863068;8.159363 +31740;1;-0.5731695;4.0194435;8.930379 +31740;3;0.2074585;0.13165283;0.12095642 +31741;0;-0.5874939;3.9860992;8.021057 +31741;3;0.19281006;0.12554932;0.12461853 +31741;4;18.792725;-19.641113;-52.6474 +31741;6;-1.1690804;-0.46014285;0.0731134 +31741;7;0.36009714;-0.8246606;0.43619365;0.0;0.930616;0.3503302;-0.105936125;0.0;-0.06545045 +31742;0;-0.59706116;4.028839;7.978134 +31742;3;0.17753601;0.11943054;0.12646484 +31742;12;0.13424514;0.16397393;0.65788025;0.7226925 +31744;1;-0.57611597;4.0283055;8.926195 +31744;0;-0.6161499;4.0763702;7.887512 +31744;3;0.16043091;0.11027527;0.12583923 +31745;2;-0.025591612;0.18959427;0.6966982; +31749;12;0.13444783;0.16446654;0.6580586;0.72238046 +31750;1;-0.57832694;4.0359664;8.92259 +31750;0;-0.5636139;4.142868;7.844589 +31750;3;0.14271545;0.10417175;0.12768555 +31750;0;-0.55882263;4.1571198;7.773056 +31750;3;0.123168945;0.09561157;0.12768555 +31752;4;18.193054;-19.491577;-52.796936 +31752;6;-1.0518749;-0.4900363;0.07176879 +31752;7;0.46536058;-0.76616293;0.44320858;0.0;0.8828571;0.4375791;-0.17055175;0.0;-0.06326839 +31752;0;-0.5636139;4.190384;7.7253723 +31752;3;0.10362244;0.08828735;0.12646484 +31752;12;0.13479814;0.16474596;0.6575016;0.72275853 +31753;0;-0.5445099;4.2473907;7.7158203 +31753;1;-0.57985157;4.0420876;8.919721 +31754;3;0.082855225;0.08155823;0.12402344 +31756;0;-0.5253906;4.266403;7.687195 +31757;3;0.06452942;0.07423401;0.122177124 +31757;12;0.13493885;0.1650793;0.65769964;0.72247595 +31759;0;-0.55882263;4.3186646;7.6681366 +31759;3;0.043136597;0.068740845;0.11790466 +31759;1;-0.5808351;4.046635;8.917594 +31760;4;18.492126;-20.541382;-52.3468 +31760;6;-1.054113;-0.51178646;0.07274733 +31761;7;0.4617435;-0.75805914;0.4605859;0.0;0.884747;0.4307035;-0.17809375;0.0;-0.06337036 +31761;12;0.135036;0.16533354;0.65790224;0.72221524 +31761;0;-0.5349426;4.3376617;7.6156616 +31761;3;0.024810791;0.06323242;0.11546326 +31763;0;-0.5062866;4.3519135;7.5727386 +31763;3;0.004043579;0.057739258;0.11180115 +31764;1;-0.5813966;4.0495634;8.916227 +31764;2;-0.09144777;-0.17058992;1.1978493; +31766;0;-0.5301666;4.3329163;7.558426 +31766;3;-0.013061523;0.052246094;0.10813904 +31766;12;0.13508412;0.16550648;0.658104;0.7219828 +31766;5;999.5954 +31770;0;-0.54927063;4.3614197;7.548889 +31770;1;-0.5816496;4.0508575;8.915624 +31770;3;-0.030151367;0.045516968;0.103256226 +31770;4;17.593384;-19.491577;-49.197388 +31770;6;-1.0377086;-0.52276045;0.07263378 +31770;7;0.47565034;-0.7462182;0.4657416;0.0;0.8773843;0.44032264;-0.19055922;0.0;-0.0628778 +31770;0;-0.5015106;4.404175;7.558426 +31770;3;-0.046035767;0.040634155;0.09957886 +31770;12;0.13508365;0.16560319;0.6582993;0.7217825 +31773;0;-0.5158386;4.404175;7.548889 +31773;3;-0.06375122;0.03453064;0.0953064 +31773;1;-0.5815093;4.0507646;8.915675 +31774;0;-0.5253906;4.4231873;7.558426 +31775;3;-0.08024597;0.029632568;0.09284973 +31775;12;0.13504082;0.16563132;0.65849507;0.7216055 +31776;0;-0.5349426;4.4279175;7.567978 +31777;1;-0.58107394;4.049223;8.916405 +31777;3;-0.09613037;0.025360107;0.08859253 +31779;4;18.193054;-19.79065;-52.796936 +31779;6;-0.9599226;-0.5282956;0.070567645 +31779;7;0.5430425;-0.7074707;0.45231616;0.0;0.8374941;0.49538526;-0.23064467;0.0;-0.060896404 +31779;0;-0.54927063;4.4279175;7.5727386 +31779;3;-0.11199951;0.021087646;0.08369446 +31780;12;0.13495316;0.16559066;0.6586877;0.72145545 +31781;0;-0.5062866;4.432678;7.5775146 +31781;1;-0.58041143;4.046289;8.917778 +31781;2;-0.10812962;-0.32654572;1.3394585; +31782;3;-0.12788391;0.016204834;0.079422 +31784;0;-0.5110626;4.432678;7.6156616 +31784;12;0.13482217;0.16548456;0.6588769;0.72133154 +31784;3;-0.14376831;0.012527466;0.07392883 +31786;0;-0.49195862;4.4089203;7.7015076 +31786;1;-0.5795103;4.041909;8.919824 +31787;3;-0.15905762;0.0058288574;0.07086182 +31789;4;17.292786;-19.190979;-50.846863 +31789;6;-0.9971892;-0.51905715;0.06379155 +31789;7;0.5149998;-0.72931707;0.45041305;0.0;0.85540134;0.47118944;-0.21510264;0.0;-0.055351835 +31789;0;-0.48239136;4.3994293;7.7396545 +31789;3;-0.17248535;0.0033721924;0.066589355 +31790;12;0.13470101;0.16526395;0.6588126;0.7214635 +31791;0;-0.5062866;4.3994293;7.8207397 +31791;3;-0.185318;-2.89917E-4;0.062927246 +31793;0;-0.48718262;4.380417;7.8350525 +31794;12;0.13447897;0.16502553;0.6589916;0.721396 +31794;1;-0.57832927;4.036125;8.922519 +31794;3;-0.19874573;-8.8500977E-4;0.05987549 +31795;0;-0.5110626;4.3614197;7.9113617 +31796;1;-0.57707316;4.0291076;8.925771 +31796;3;-0.20730591;-2.89917E-4;0.057434082 +31798;4;17.593384;-19.190979;-52.3468 +31798;6;-1.0097873;-0.50294983;0.06450894 +31798;7;0.5046245;-0.74186486;0.44157743;0.0;0.8614893;0.46615523;-0.20133369;0.0;-0.056481242 +31798;0;-0.47763062;4.3519135;7.992447 +31798;3;-0.21769714;0.0033721924;0.05682373 +31799;12;0.1342127;0.1647345;0.65916735;0.7213515 +31800;0;-0.48239136;4.3329163;8.040131 +31801;1;-0.57595587;4.021085;8.92946 +31801;2;-0.13644606;-0.33540058;1.0815496; +31801;3;-0.22441101;0.00642395;0.053771973 +31803;0;-0.46806335;4.2949066;8.102127 +31803;12;0.13390236;0.16441068;0.65934545;0.7213203 +31804;3;-0.22929382;0.011306763;0.05316162 +31804;5;999.5954 +31805;0;-0.46806335;4.275894;8.202286 +31805;1;-0.57520115;4.0122924;8.933463 +31806;3;-0.23173523;0.015594482;0.051940918 +31808;4;19.242859;-19.79065;-51.597595 +31808;6;-1.1784497;-0.47988012;0.05700317 +31808;7;0.35743272;-0.81964725;0.44768324;0.0;0.93257064;0.33917052;-0.123594224;0.0;-0.0505373 +31808;0;-0.46806335;4.2711487;8.273819 +31808;3;-0.2366333;0.022918701;0.050720215 +31809;12;0.13355197;0.16406988;0.6595143;0.72130847 +31810;0;-0.4298401;4.2616425;8.33107 +31810;1;-0.5748977;4.0030746;8.937617 +31810;3;-0.2390747;0.030258179;0.051940918 +31812;0;-0.43940735;4.2046356;8.354904 +31813;12;0.1331666;0.16373284;0.6596985;0.7212879 +31813;3;-0.2366333;0.03453064;0.05253601 +31815;0;-0.44418335;4.185623;8.445526 +31815;1;-0.5751269;3.993569;8.941854 +31815;3;-0.23602295;0.041244507;0.054382324 +31817;4;17.593384;-20.541382;-53.097534 +31817;6;-1.2133921;-0.45957407;0.05254551 +31817;7;0.32753626;-0.8396063;0.4333373;0.0;0.9436653;0.3135444;-0.1057623;0.0;-0.0470718 +31817;0;-0.40596008;4.142868;8.526611 +31818;3;-0.2341919;0.047958374;0.05682373 +31818;12;0.13274905;0.16340603;0.65989083;0.72126305 +31819;0;-0.41552734;4.142868;8.564758 +31820;1;-0.57576555;3.9840546;8.946055 +31820;2;-0.18772191;-0.21259737;0.5807209; +31820;3;-0.23051453;0.05407715;0.058654785 +31822;0;-0.39640808;4.123871;8.6458435 +31822;12;0.13231567;0.16309899;0.6600924;0.72122765 +31822;3;-0.23051453;0.061401367;0.062316895 +31824;0;-0.37728882;4.142868;8.703064 +31824;1;-0.5768356;3.974677;8.950157 +31825;3;-0.22502136;0.06813049;0.0647583 +31828;4;17.74292;-19.041443;-52.946472 +31828;6;-1.208339;-0.44391936;0.043324135 +31828;7;0.33684772;-0.844401;0.41655803;0.0;0.9407464;0.32020614;-0.11164329;0.0;-0.03911272 +31828;0;-0.39640808;4.11911;8.731674 +31828;3;-0.22013855;0.07484436;0.06782532 +31829;12;0.13234895;0.1624341;0.65819854;0.72310007 +31829;0;-0.38208008;4.1143646;8.779373 +31830;3;-0.2183075;0.07911682;0.07148743 +31830;1;-0.57838583;3.9656005;8.9540825 +31832;0;-0.37728882;4.085861;8.865219 +31832;12;0.13189423;0.16218466;0.6584233;0.72303456 +31832;3;-0.21218872;0.08584595;0.074539185 +31834;0;-0.38208008;4.090622;8.884293 +31834;1;-0.58027744;3.9567115;8.957891 +31834;3;-0.20730591;0.09133911;0.07759094 +31837;4;16.54358;-19.190979;-51.14746 +31837;6;-1.2845677;-0.4311452;0.042979762 +31837;7;0.2648499;-0.87152636;0.41266978;0.0;0.96349925;0.25649905;-0.076664165;0.0;-0.039034564 +31837;0;-0.41073608;4.123871;8.903381 +31837;3;-0.20547485;0.09805298;0.08125305 +31837;12;0.13143317;0.1619621;0.65866154;0.72295135 +31839;0;-0.41552734;4.085861;8.989227 +31839;1;-0.58260155;3.9482675;8.961466 +31839;2;-0.24500775;-0.1371448;0.13374901; +31839;3;-0.2024231;0.09805298;0.08615112 +31842;0;-0.41073608;4.095352;9.013062 +31842;12;0.13097072;0.16177212;0.6589099;0.72285146 +31842;3;-0.19937134;0.10050964;0.090408325 +31842;5;999.5862 +31844;0;-0.38208008;4.11911;9.041687 +31844;1;-0.5849293;3.9400535;8.964929 +31844;3;-0.19815063;0.09988403;0.09408569 +31846;4;18.34259;-17.990112;-52.6474 +31847;6;-1.2285161;-0.42713878;0.042232484 +31847;7;0.31886086;-0.8573583;0.40405998;0.0;0.9470222;0.30548066;-0.09914854;0.0;-0.03842667 +31848;0;-0.39163208;4.057358;9.079834 +31848;3;-0.19692993;0.09561157;0.0953064 +31848;12;0.13103203;0.16118048;0.6568722;0.7248244 +31849;0;-0.4202881;4.0668488;9.13707 +31849;1;-0.5870821;3.9319177;8.968359 +31849;3;-0.19752502;0.09378052;0.10018921 +31851;0;-0.38208008;4.0621033;9.170456 +31851;12;0.13058273;0.16100223;0.65714526;0.72469753 +31851;3;-0.20059204;0.09194946;0.10203552 +31853;0;-0.38685608;4.024109;9.222916 +31853;3;-0.2024231;0.087677;0.10385132 +31854;1;-0.5888743;3.9236777;8.97185 +31856;4;18.34259;-17.990112;-51.74713 +31856;6;-1.3005221;-0.4110945;0.041920524 +31856;7;0.25062206;-0.88340634;0.395957;0.0;0.9673226;0.24475074;-0.06621431;0.0;-0.03841662 +31856;0;-0.40596008;4.024109;9.251541 +31856;3;-0.20669556;0.083999634;0.106292725 +31857;12;0.1301383;0.16080783;0.65742904;0.72456336 +31858;0;-0.4202881;3.9908295;9.327835 +31858;1;-0.59032875;3.9151356;8.975485 +31858;2;-0.24529433;-0.11443949;-0.1949749; +31858;3;-0.20913696;0.07911682;0.106918335 +31861;0;-0.4202881;3.9908295;9.351685 +31861;12;0.12969308;0.1605893;0.6577196;0.72442794 +31862;3;-0.21218872;0.07606506;0.10935974 +31863;0;-0.41552734;3.952835;9.351685 +31864;3;-0.21340942;0.06996155;0.111190796 +31864;1;-0.5913792;3.9062784;8.979274 +31865;4;16.842651;-18.141174;-52.796936 +31866;6;-1.2951149;-0.39955634;0.044404212 +31866;7;0.2553185;-0.88644785;0.38603464;0.0;0.9659919;0.25076234;-0.06307165;0.0;-0.040893216 +31866;0;-0.4202881;3.9433289;9.375534 +31867;3;-0.21708679;0.06568909;0.114852905 +31867;12;0.12977271;0.1599273;0.65566826;0.7264169 +31869;0;-0.41552734;3.9148254;9.423233 +31869;3;-0.22013855;0.060180664;0.11729431 +31869;1;-0.5919217;3.8971756;8.983193 +31872;0;-0.39640808;3.9148254;9.4423065 +31872;3;-0.2183075;0.052856445;0.119140625 +31872;12;0.12933585;0.1596549;0.65597194;0.72628057 +31875;0;-0.37728882;3.8910675;9.494766 +31875;3;-0.2183075;0.048583984;0.122802734 +31875;1;-0.59184337;3.887865;8.987231 +31876;4;17.892456;-18.440247;-53.097534 +31876;6;-1.3639314;-0.3886594;0.03971561 +31876;7;0.19050525;-0.90568763;0.37873155;0.0;0.98099816;0.190074;-0.038913142;0.0;-0.036743872 +31876;0;-0.36297607;3.9053192;9.504303 +31876;3;-0.21769714;0.045516968;0.12461853 +31886;12;0.1289118;0.15935194;0.656283;0.7261414 +31886;1;-0.5911886;3.8785849;8.991283 +31887;17;1;38dead6d7725;17103;1187;-85; +31888;17;1;38dead6d60ff;10094;3756;-70; +31888;17;1;1c1bb5efa29a;4379;2871;-73; +31889;17;1;1c1bb5ecd182;-2443;1591;-43; +31889;2;-0.25788385;-0.01626563;-0.45711708; +31889;0;-0.30085754;3.8530579;9.523392 +31889;3;-0.21401978;0.039413452;0.1270752 +31889;1;-0.5899622;3.8695796;8.995243 +31889;12;0.12850697;0.15902705;0.6566012;0.7259968 +31889;12;0.12814315;0.15868619;0.65687656;0.7258865 +31889;1;-0.5884112;3.8612173;8.998938 +31890;0;-0.29130554;3.843567;9.585388 +31890;3;-0.20669556;0.03453064;0.12890625 +31890;5;999.5862 +31890;0;-0.27697754;3.843567;9.599686 +31890;3;-0.20059204;0.032699585;0.12890625 +31890;4;17.292786;-18.89038;-52.046204 +31890;6;-1.4461418;-0.3806944;0.028844768 +31890;7;0.11364713;-0.92120314;0.37211463;0.0;0.99316037;0.115430616;-0.01756122;0.0;-0.026775967 +31890;0;-0.2722168;3.862564;9.628311 +31890;3;-0.19081116;0.029632568;0.13012695 +31890;12;0.1278075;0.1583628;0.6571919;0.72573096 +31892;1;-0.58654857;3.8537757;9.002249 +31892;0;-0.21487427;3.8530579;9.633072 +31893;3;-0.18104553;0.027816772;0.13256836 +31893;0;-0.19099426;3.8578186;9.642624 +31893;3;-0.16760254;0.02659607;0.13684082 +31893;0;-0.21487427;3.8340607;9.661682 +31893;3;-0.15293884;0.024749756;0.13806152 +31895;4;18.043518;-18.740845;-52.197266 +31895;6;-1.4544842;-0.37768728;0.022236174 +31895;7;0.10787731;-0.9232395;0.3687698;0.0;0.99394935;0.10787079;-0.020701263;0.0;-0.020667266 +31895;0;-0.17666626;3.8483124;9.652161 +31895;3;-0.13827515;0.024749756;0.14050293 +31896;12;0.12751682;0.15806378;0.65750676;0.725562 +31897;1;-0.5844655;3.8476005;9.005025 +31897;0;-0.171875;3.8530579;9.633072 +31897;3;-0.1230011;0.024749756;0.1441803 +31897;2;-0.41438526;0.024753094;-0.6397371; +31903;12;0.1272842;0.15780428;0.6578179;0.72537726 +31903;0;-0.15278625;3.8530579;9.623535 +31903;3;-0.10345459;0.02659607;0.14906311 +31904;1;-0.58223784;3.8428335;9.007205 +31904;0;-0.12411499;3.8578186;9.618759 +31904;3;-0.08695984;0.028411865;0.15150452 +31904;4;18.492126;-18.89038;-52.3468 +31904;6;-1.4568492;-0.38140172;0.012902714 +31904;7;0.10891986;-0.92212486;0.37124425;0.0;0.9939783;0.105530605;-0.029499682;0.0;-0.011975241 +31904;0;-0.100234985;3.9053192;9.637848 +31905;3;-0.06985474;0.029037476;0.15638733 +31905;12;0.12711494;0.15759057;0.65811557;0.7251834 +31907;1;-0.57996315;3.839675;9.008698 +31908;0;-0.08590698;3.9148254;9.637848 +31908;3;-0.050308228;0.032699585;0.16004944 +31909;0;-0.057235718;3.952835;9.623535 +31909;12;0.12700558;0.15743946;0.65842783;0.72495186 +31909;3;-0.03137207;0.035751343;0.16433716 +31911;0;-0.01423645;3.9718475;9.599686 +31911;1;-0.5777041;3.838233;9.009459 +31911;3;-0.013656616;0.04185486;0.16799927 +31913;4;17.442322;-18.740845;-51.446533 +31913;6;-1.4356389;-0.39230096;0.0014830111 +31913;7;0.13418435;-0.91560477;0.37902835;0.0;0.9909554;0.12450987;-0.050046068;0.0;-0.0013703489 +31913;0;0.023986816;3.9908295;9.556763 +31913;3;0.002822876;0.047958374;0.17105103 +31914;12;0.12696187;0.15735446;0.658742;0.7246925 +31915;0;0.023986816;4.024109;9.494766 +31916;1;-0.575697;3.8384304;9.009502 +31916;2;-0.57223874;-0.0683136;-0.60503197; +31916;3;0.018096924;0.052856445;0.17410278 +31918;0;0.028747559;4.0383606;9.46138 +31918;12;0.12697037;0.15734464;0.6590582;0.72440565 +31918;3;0.03337097;0.059570312;0.17778015 +31919;5;999.5862 +31922;1;-0.57405174;3.8400767;9.008906 +31922;0;0.03352356;4.0716095;9.4375305 +31922;3;0.046813965;0.06384277;0.18083191 +31923;4;16.54358;-18.440247;-52.046204 +31923;6;-1.3552855;-0.40729982;-0.003552139 +31923;7;0.21521968;-0.89695346;0.38620576;0.0;0.9765601;0.1963525;-0.08818074;0.0;0.003261545 +31923;0;0.028747559;4.090622;9.404144 +31923;3;0.05596924;0.06813049;0.18327332 +31928;12;0.12709475;0.15734583;0.6590422;0.72439814 +31929;1;-0.5726968;3.8429506;9.007767 +31929;12;0.12718272;0.15746446;0.65936404;0.72406393 +31929;0;0.062194824;4.1523743;9.351685 +31929;3;0.066970825;0.072402954;0.18510437 +31930;0;0.071746826;4.1713715;9.337372 +31930;1;-0.571593;3.8467956;9.006195 +31931;3;0.074905396;0.07606506;0.18632507 +31931;0;0.071746826;4.2188873;9.251541 +31931;3;0.078567505;0.08155823;0.18876648 +31932;0;0.052627563;4.2473907;9.199066 +31932;4;17.292786;-17.541504;-52.3468 +31933;6;-1.2433562;-0.43255103;-0.005720905 +31933;7;0.32388565;-0.8596616;0.3950698;0.0;0.9460821;0.2919988;-0.14023411;0.0;0.005193978 +31933;12;0.12729806;0.15763235;0.65968627;0.7237135 +31933;3;0.082229614;0.08584595;0.19120789 +31935;0;0.04786682;4.275894;9.151382 +31935;1;-0.5708448;3.8511887;9.004365 +31935;2;-0.6792859;-0.28036904;-0.33531284; +31935;3;0.08345032;0.087677;0.19242859 +31937;0;0.009643555;4.3043976;9.070297 +31938;12;0.12741971;0.15783606;0.66001403;0.72334886 +31938;3;0.082229614;0.08828735;0.1960907 +31939;0;0.071746826;4.3519135;9.022598 +31940;1;-0.5702103;3.8558319;9.002418 +31940;3;0.0791626;0.087677;0.19915771 +31942;4;18.043518;-18.29071;-52.197266 +31942;6;-1.2497433;-0.44940346;-0.0079517355 +31942;7;0.3188339;-0.85468364;0.40970835;0.0;0.9477835;0.28423226;-0.1446318;0.0;0.007162103 +31942;0;0.028747559;4.342407;9.013062 +31942;3;0.077941895;0.085235596;0.19854736 +31943;12;0.12760368;0.15800662;0.6600872;0.72321236 +31945;0;0.04786682;4.3851776;8.955841 +31945;1;-0.5694244;3.8603697;9.000523 +31945;3;0.07183838;0.08277893;0.19976807 +31947;0;0.052627563;4.4231873;8.922455 +31947;12;0.12773015;0.15821624;0.66043043;0.7228308 +31949;3;0.06695557;0.07972717;0.20159912 +31950;0;0.066970825;4.437439;8.931976 +31950;1;-0.56834835;3.8646162;8.998768 +31950;3;0.06022644;0.07606506;0.20281982 +31952;4;16.54358;-19.491577;-52.046204 +31952;6;-1.2490698;-0.46107614;-0.0074977325 +31952;7;0.31936073;-0.84962314;0.4197014;0.0;0.94760954;0.28318506;-0.14779243;0.0;0.0067147138 +31952;0;0.08129883;4.465927;8.865219 +31953;12;0.12785333;0.15840337;0.6607782;0.7224501 +31953;3;0.05290222;0.07118225;0.20220947 +31954;0;0.09562683;4.4897003;8.827072 +31954;1;-0.56686753;3.8684082;8.997232 +31954;2;-0.6839217;-0.506068;0.031137466; +31954;3;0.04373169;0.06568909;0.20098877 +31956;0;0.09562683;4.5181885;8.827072 +31956;12;0.12797157;0.15855898;0.66113114;0.72207206 +31957;3;0.03640747;0.060180664;0.20037842 +31957;5;999.5862 +31958;0;0.08607483;4.537201;8.812759 +31959;1;-0.56495583;3.8715482;8.996002 +31959;3;0.029693604;0.0546875;0.20037842 +31961;4;16.54358;-19.491577;-51.597595 +31961;6;-1.2213161;-0.4754332;-0.009766758 +31961;7;0.34659332;-0.83534944;0.42668986;0.0;0.9379753;0.3044344;-0.16589767;0.0;0.008683434 +31961;0;0.10041809;4.57045;8.803207 +31961;3;0.020523071;0.047958374;0.19854736 +31962;12;0.12808181;0.15867138;0.6614741;0.7217136 +31963;0;0.09562683;4.5894623;8.798447 +31964;1;-0.5625574;3.8741028;8.995052 +31964;3;0.011367798;0.04246521;0.19915771 +31966;0;0.114746094;4.5894623;8.827072 +31966;12;0.12818377;0.1587428;0.66182595;0.72135717 +31966;3;0.0028076172;0.035751343;0.19854736 +31968;0;0.09085083;4.5989685;8.860458 +31968;1;-0.5596391;3.8758662;8.994474 +31969;3;-0.005142212;0.03147888;0.19732666 +31971;4;17.593384;-19.190979;-52.796936 +31971;6;-1.1926483;-0.47874504;-0.010253154 +31971;7;0.37357008;-0.8248666;0.4243117;0.0;0.92755723;0.3276922;-0.17959742;0.0;0.00910027 +31971;0;0.09562683;4.5894623;8.846146 +31971;3;-0.014297485;0.02659607;0.1960907 +31971;12;0.1282723;0.15876454;0.66217965;0.721012 +31973;0;0.07652283;4.5799713;8.865219 +31973;1;-0.5563525;3.8768766;8.994243 +31973;2;-0.7125622;-0.6708834;0.14981842; +31973;3;-0.024673462;0.021697998;0.1960907 +31975;0;0.057418823;4.603714;8.874756 +31976;12;0.1283452;0.15874359;0.6625325;0.72067934 +31976;3;-0.03199768;0.017425537;0.19732666 +31978;0;0.019195557;4.6084595;8.903381 +31978;1;-0.552709;3.8770795;8.99438 +31978;3;-0.038101196;0.013153076;0.19732666 +31980;4;16.842651;-18.440247;-52.046204 +31980;6;-1.152779;-0.47763342;-0.0021559817 +31980;7;0.40685418;-0.8116172;0.41922224;0.0;0.91349113;0.36051765;-0.18857622;0.0;0.001914694 +31981;0;0.023986816;4.5799713;8.941528 +31981;3;-0.045440674;0.0058288574;0.19915771 +31981;12;0.1286524;0.15847538;0.66174966;0.72140247 +31983;0;0.0048675537;4.57045;8.994003 +31983;1;-0.5486589;3.8766298;8.9948225 +31983;3;-0.05215454;0.0027770996;0.19854736 +31985;0;0.014419556;4.603714;9.046463 +31985;12;0.12869503;0.15836878;0.66211146;0.72108626 +31986;3;-0.05644226;-2.89917E-4;0.20037842 +31988;0;-0.009475708;4.5657043;9.103683 +31988;1;-0.544253;3.8755903;8.995538 +31989;3;-0.061325073;-0.0015106201;0.20098877 +31990;4;16.842651;-19.79065;-50.846863 +31990;6;-1.275237;-0.46486485;0.0010408649 +31990;7;0.29082853;-0.85512286;0.4291663;0.0;0.9567748;0.26036558;-0.12958339;0.0;-9.304104E-4 +31990;0;7.6293945E-5;4.594223;9.146606 +31990;3;-0.06437683;-0.002105713;0.20159912 +31991;12;0.12872629;0.15822601;0.6624776;0.72077566 +31992;1;-0.5397144;3.8741305;8.99644 +31993;0;-0.033355713;4.546707;9.14183 +31993;2;-0.61242205;-0.6875186;-0.03630829; +31993;3;-0.06742859;-0.0027313232;0.20343018 +31995;12;0.12874396;0.15806319;0.66284907;0.7204667 +31997;0;-0.057235718;4.537201;9.208603 +31997;3;-0.06742859;-2.89917E-4;0.20343018 +31998;5;999.5812 +31998;0;-0.07156372;4.4991913;9.246765 +31998;1;-0.53521967;3.8723726;8.997465 +31998;3;-0.06681824;-2.89917E-4;0.20465088 +32000;4;16.842651;-18.440247;-50.846863 +32000;6;-1.2360755;-0.4528336;0.0077391705 +32001;7;0.32529753;-0.8493066;0.41576403;0.0;0.9455861;0.29539567;-0.13641225;0.0;-0.0069590774 +32001;0;-0.07156372;4.494446;9.251541 +32001;3;-0.06498718;0.0021514893;0.20526123 +32001;12;0.12877123;0.1578736;0.66312855;0.72024614 +32003;0;-0.038131714;4.4611816;9.308762 +32003;1;-0.5307965;3.8706107;8.998486 +32003;3;-0.06437683;0.0045928955;0.20648193 +32007;0;-0.038131714;4.470688;9.318314 +32007;12;0.12877457;0.15770386;0.6635091;0.71993226 +32007;3;-0.057662964;0.00642395;0.20770264 +32007;0;-0.042907715;4.4849396;9.318314 +32008;1;-0.5265194;3.8690426;8.999411 +32008;3;-0.052764893;0.01071167;0.20709229 +32011;4;16.093445;-19.041443;-51.446533 +32011;6;-1.2547169;-0.4485749;0.004604633 +32011;7;0.30894127;-0.85642844;0.41362488;0.0;0.951072;0.2800897;-0.13042885;0.0;-0.0041490635 +32011;0;-0.057235718;4.494446;9.342148 +32011;3;-0.046051025;0.014984131;0.20587158 +32011;12;0.12877995;0.15755045;0.66389227;0.71961147 +32012;0;-0.08111572;4.44693;9.365997 +32012;1;-0.52261454;3.8679438;9.000111 +32012;2;-0.5295086;-0.596612;-0.30820847; +32013;3;-0.03933716;0.017425537;0.20526123 +32015;0;-0.052444458;4.4421844;9.323074 +32015;12;0.12879048;0.15742712;0.66427237;0.7192858 +32015;3;-0.02772522;0.021697998;0.20526123 +32018;0;-0.06201172;4.437439;9.332611 +32018;3;-0.017959595;0.023529053;0.20465088 +32018;1;-0.51901203;3.8675032;9.000509 +32020;12;0.12911148;0.15710641;0.6633164;0.7201799 +32020;4;16.842651;-18.141174;-51.597595 +32021;6;-1.2316813;-0.44382864;0.0066445293 +32021;7;0.32995456;-0.8516814;0.4071471;0.0;0.9439777;0.30042326;-0.13657187;0.0;-0.006000725 +32021;0;-0.08590698;4.456436;9.304001 +32021;3;-0.008804321;0.023529053;0.20220947 +32021;1;-0.51565427;3.8679566;9.000506 +32021;0;-0.08111572;4.4421844;9.261063 +32021;3;0.0034179688;0.024139404;0.20098877 +32024;12;0.1291666;0.15706149;0.66368085;0.7198441 +32025;0;-0.057235718;4.437439;9.275375 +32025;3;0.015640259;0.023529053;0.19976807 +32027;0;-0.11456299;4.4421844;9.275375 +32030;1;-0.5123731;3.869379;9.000083 +32030;3;0.027252197;0.023529053;0.1954956 +32030;0;-0.10978699;4.437439;9.270599 +32030;3;0.037017822;0.024749756;0.19487 +32031;4;16.693115;-18.29071;-50.247192 +32031;6;-1.2539382;-0.44640073;0.011841937 +32031;7;0.3067029;-0.85710406;0.41389114;0.0;0.9517454;0.2810496;-0.12325538;0.0;-0.0106812585 +32031;12;0.12925762;0.15705614;0.6640309;0.719506 +32032;1;-0.50923187;3.871752;8.999241 +32032;0;-0.10499573;4.432678;9.275375 +32032;3;0.04862976;0.02230835;0.19303894 +32033;2;-0.49079812;-0.5485029;-0.30332088; +32033;0;-0.06678772;4.4089203;9.304001 +32034;12;0.12938473;0.15708666;0.66436386;0.7191691 +32034;3;0.06022644;0.020477295;0.19120789 +32035;5;999.5812 +32036;1;-0.5059856;3.8750494;8.998005 +32036;0;-0.10499573;4.4231873;9.313538 +32036;3;0.070617676;0.019256592;0.18937683 +32038;4;15.492249;-18.89038;-51.597595 +32038;6;-1.2385932;-0.44335863;0.011272975 +32038;7;0.32153443;-0.8539282;0.40917256;0.0;0.94684315;0.29459527;-0.12923506;0.0;-0.010182844 +32039;0;-0.100234985;4.4516907;9.308762 +32039;3;0.078552246;0.019256592;0.18754578 +32039;12;0.12961675;0.15709926;0.6643997;0.71909136 +32041;1;-0.5027252;3.8792472;8.996378 +32041;0;-0.08590698;4.456436;9.299225 +32041;3;0.086502075;0.019256592;0.18510437 +32043;0;-0.10978699;4.4611816;9.337372 +32043;12;0.12982318;0.15719286;0.66470504;0.71875143 +32044;3;0.09199524;0.020477295;0.18144226 +32046;0;-0.100234985;4.456436;9.332611 +32046;1;-0.4996199;3.8840194;8.994492 +32046;3;0.09750366;0.019256592;0.17900085 +32050;12;0.13004899;0.15731214;0.6649939;0.7184172 +32050;4;16.392517;-19.041443;-50.9964 +32050;6;-1.2728726;-0.4454737;0.010739881 +32051;7;0.28909543;-0.86265385;0.41503277;0.0;0.9572513;0.2648889;-0.11620654;0.0;-0.009691554 +32051;0;-0.143219;4.4421844;9.318314 +32051;3;0.10054016;0.017425537;0.17654419 +32051;2;-0.45694518;-0.5325265;-0.3407793; +32051;1;-0.49661076;3.8891346;8.992447 +32051;0;-0.13366699;4.432678;9.351685 +32051;3;0.10360718;0.017425537;0.17349243 +32053;12;0.13028884;0.15744388;0.66526747;0.71809155 +32054;0;-0.11456299;4.44693;9.389847 +32054;3;0.10726929;0.018035889;0.17227173 +32055;1;-0.49358353;3.894544;8.990273 +32055;0;-0.08590698;4.4231873;9.356461 +32055;3;0.10848999;0.015594482;0.16921997 +32059;4;16.392517;-19.041443;-50.9964 +32059;6;-1.287075;-0.44158772;0.0091813095 +32059;7;0.2761514;-0.86792976;0.4128419;0.0;0.96107835;0.25307763;-0.110816084;0.0;-0.008300469 +32059;0;-0.11933899;4.437439;9.346909 +32059;3;0.10910034;0.013748169;0.16799927 +32059;12;0.13055049;0.15758008;0.66549516;0.7178031 +32063;12;0.13081394;0.1577234;0.6657499;0.7174874 +32063;1;-0.49050146;3.9000702;8.988047 +32063;0;-0.052444458;4.456436;9.351685 +32063;3;0.11154175;0.012527466;0.1637268 +32063;0;-0.07156372;4.4849396;9.361221 +32063;3;0.113983154;0.013153076;0.16004944 +32071;1;-0.48745257;3.9057431;8.985749 +32071;12;0.13108136;0.15787056;0.66599107;0.71718234 +32071;1;-0.484725;3.9115357;8.983376 +32071;0;-0.08111572;4.4421844;9.394608 +32071;2;-0.4620703;-0.5179932;-0.40618134; +32071;3;0.11642456;0.014373779;0.15516663 +32071;4;15.342712;-18.29071;-51.74713 +32071;6;-1.2088505;-0.44167337;0.008634071 +32071;7;0.35063;-0.84546465;0.40280038;0.0;0.9364815;0.3201149;-0.14327857;0.0;-0.0078054275 +32071;0;-0.08111572;4.4421844;9.404144 +32071;3;0.11764526;0.017425537;0.15089417 +32071;0;-0.10978699;4.456436;9.413681 +32071;3;0.12071228;0.02230835;0.14845276 +32072;0;-0.08590698;4.4421844;9.4470825 +32072;12;0.13134648;0.15803272;0.66621614;0.716889 +32072;3;0.1255951;0.02659607;0.1441803 +32075;5;999.5812 +32075;0;-0.095443726;4.470688;9.404144 +32075;3;0.13108826;0.030853271;0.1441803 +32075;1;-0.48248404;3.917564;8.980869 +32082;4;15.342712;-18.29071;-51.74713 +32082;6;-1.1998448;-0.443751;0.010148765 +32082;7;0.35842294;-0.84171814;0.40378666;0.0;0.93351436;0.3273931;-0.14616688;0.0;-0.009165675 +32082;0;-0.100234985;4.4754486;9.413681 +32083;3;0.13659668;0.03819275;0.14112854 +32083;1;-0.48078397;3.924079;8.978115 +32083;12;0.13211027;0.15781322;0.66416496;0.718698 +32083;12;0.13237312;0.15804219;0.6643712;0.71840864 +32083;0;-0.143219;4.494446;9.370773 +32083;3;0.14453125;0.04185486;0.13990784 +32083;0;-0.13366699;4.5514526;9.356461 +32083;3;0.15248108;0.048583984;0.13868713 +32084;1;-0.47961262;3.931279;8.975028 +32084;0;-0.12411499;4.5419617;9.394608 +32084;3;0.15919495;0.053466797;0.13746643 +32086;17;1;38dead6d7725;18629;2573;-80; +32087;17;1;38dead6d60ff;10511;2375;-74; +32087;17;1;1c1bb5efa29a;1894;4074;-76; +32088;17;1;1c1bb5ecd182;-2187;917;-47; +32088;4;17.74292;-19.940186;-51.74713 +32088;6;-1.3035882;-0.45029795;0.013210532 +32088;7;0.25847125;-0.8683668;0.42323947;0.0;0.9659457;0.23771961;-0.10216765;0.0;-0.011893327 +32088;0;-0.13366699;4.57045;9.38031 +32088;3;0.16712952;0.060180664;0.13623047 +32088;12;0.13264376;0.1583141;0.6645693;0.71811557 +32088;0;-0.10978699;4.6322327;9.361221 +32093;1;-0.47897118;3.9391503;8.971611 +32093;2;-0.4308257;-0.5648718;-0.43136597; +32093;3;0.174469;0.06752014;0.13439941 +32093;0;-0.143219;4.646469;9.327835 +32093;12;0.13292421;0.15863371;0.66476053;0.7178162 +32094;3;0.18362427;0.07484436;0.13378906 +32094;0;-0.095443726;4.684494;9.346909 +32094;1;-0.47898975;3.947769;8.967821 +32094;3;0.18972778;0.08277893;0.1307373 +32095;4;17.74292;-19.940186;-51.74713 +32095;6;-1.2648097;-0.46457118;0.010210906 +32095;7;0.29685608;-0.8524871;0.4302817;0.0;0.9548787;0.26930743;-0.12522128;0.0;-0.009128532 +32095;0;-0.11933899;4.703491;9.356461 +32096;3;0.19645691;0.09194946;0.1307373 +32096;12;0.13321203;0.1590036;0.664938;0.71751654 +32097;0;-0.095443726;4.7747498;9.318314 +32098;1;-0.47974315;3.9570448;8.96369 +32098;3;0.20011902;0.10232544;0.13256836 +32100;0;-0.12890625;4.817505;9.304001 +32100;12;0.13349976;0.15943058;0.6651156;0.7172036 +32100;3;0.20439148;0.11393738;0.13439941 +32102;0;-0.171875;4.8365173;9.299225 +32102;1;-0.48138228;3.9668155;8.959283 +32103;3;0.20500183;0.12615967;0.13500977 +32105;4;16.54358;-17.541504;-50.09613 +32105;6;-1.1133728;-0.4795273;0.01848062 +32105;7;0.43391338;-0.7960017;0.42201954;0.0;0.90080535;0.39182705;-0.18713951;0.0;-0.016395314 +32105;0;-0.171875;4.893524;9.304001 +32105;3;0.20378113;0.13897705;0.13746643 +32106;12;0.13377145;0.15991156;0.6652998;0.71687496 +32108;0;-0.19577026;4.9220276;9.308762 +32108;1;-0.4840479;3.9767478;8.954735 +32108;2;-0.4121297;-0.79118586;-0.37744808; +32109;3;0.19950867;0.15119934;0.14050293 +32109;0;-0.21487427;4.9552917;9.327835 +32110;12;0.1340099;0.16044016;0.6654948;0.7165312 +32110;3;0.1940155;0.16342163;0.145401 +32111;5;999.5812 +32112;0;-0.23399353;4.98378;9.365997 +32112;1;-0.48770896;3.986449;8.950222 +32112;3;0.18606567;0.17503357;0.1478424 +32114;4;16.54358;-17.541504;-50.09613 +32114;6;-1.0770903;-0.48887834;0.024978105 +32114;7;0.46341607;-0.77743137;0.42525992;0.0;0.88586646;0.41838092;-0.20049456;0.0;-0.022049882 +32115;0;-0.26742554;5.059799;9.38031 +32115;3;0.17262268;0.18663025;0.15150452 +32115;12;0.13470581;0.160591;0.66347355;0.7182394 +32117;0;-0.3199768;5.0835724;9.385086 +32117;1;-0.49229434;3.9954329;8.945964 +32117;3;0.15736389;0.19824219;0.15333557 +32119;0;-0.36297607;5.1168213;9.423233 +32119;12;0.13483007;0.16116606;0.6637155;0.7178637 +32120;3;0.1427002;0.20861816;0.15823364 +32121;0;-0.4298401;5.1453247;9.43277 +32122;1;-0.49784088;4.003196;8.942185 +32122;3;0.12315369;0.21717834;0.16004944 +32124;4;17.292786;-18.440247;-50.846863 +32124;6;-1.0546929;-0.4989253;0.045537308 +32124;7;0.47403908;-0.763724;0.43819252;0.0;0.879596;0.4333365;-0.19629137;0.0;-0.039972365 +32124;0;-0.5301666;5.154831;9.40892 +32124;3;0.10482788;0.22267151;0.1612854 +32125;12;0.1348667;0.16173744;0.66398484;0.71747905 +32126;0;-0.5683899;5.1833344;9.451843 +32126;1;-0.5041752;4.009453;8.939027 +32127;2;-0.20666146;-1.06076;-0.4689045; +32127;3;0.08406067;0.22450256;0.16494751 +32129;0;-0.63049316;5.1690826;9.499542 +32130;12;0.13481247;0.16228189;0.6642806;0.7170924 +32130;3;0.062057495;0.22572327;0.16677856 +32131;0;-0.7403717;5.164322;9.499542 +32132;1;-0.51078206;4.0139213;8.936646 +32132;3;0.037628174;0.22206116;0.16799927 +32134;4;15.942383;-18.440247;-51.597595 +32134;6;-0.9285514;-0.4966769;0.07778038 +32134;7;0.5675353;-0.7039988;0.42695358;0.0;0.8205102;0.5266186;-0.22234179;0.0;-0.06831332 +32134;0;-0.8072357;5.1453247;9.59491 +32134;3;0.013809204;0.22084045;0.17044067 +32135;12;0.13520102;0.16234516;0.66229016;0.71884394 +32136;0;-0.874115;5.121567;9.656921 +32136;1;-0.51733816;4.0162663;8.935215 +32137;3;-0.014297485;0.21534729;0.17410278 +32139;0;-0.92666626;5.1120605;9.70462 +32139;12;0.1349804;0.16275299;0.6626349;0.71847534 +32139;3;-0.041168213;0.21107483;0.17778015 +32141;1;-0.5235493;4.016257;8.934858 +32141;0;-1.0078735;5.0930634;9.747543 +32142;3;-0.06803894;0.203125;0.17778015 +32143;4;16.093445;-17.390442;-49.79706 +32143;6;-0.92668873;-0.47930375;0.10303156 +32144;7;0.55937386;-0.70952994;0.4285653;0.0;0.82387644;0.5328201;-0.19321007;0.0;-0.091259904 +32144;0;-1.0604248;4.98378;9.80954 +32144;3;-0.09675598;0.19335938;0.18083191 +32144;12;0.13467398;0.16305915;0.6630089;0.71811825 +32146;0;-1.1273041;4.9220276;9.876312 +32146;1;-0.52919805;4.013712;8.935669 +32146;2;0.30023235;-1.061388;-0.74841976; +32146;3;-0.12301636;0.18357849;0.18205261 +32148;0;-1.1798553;4.893524;9.900162 +32149;12;0.13428757;0.16324872;0.66340536;0.7177814 +32149;3;-0.14866638;0.16952515;0.18510437 +32150;5;999.5862 +32150;0;-1.2849579;4.827011;9.986008 +32151;1;-0.533996;4.0087523;8.93761 +32151;3;-0.1712799;0.15486145;0.18632507 +32153;4;14.892578;-19.190979;-51.14746 +32153;6;-0.98684084;-0.4470523;0.12797263 +32153;7;0.5007898;-0.752299;0.42808396;0.0;0.8578845;0.49714667;-0.12992048;0.0;-0.11508144 +32156;0;-1.3327179;4.7700043;10.124298 +32156;3;-0.19204712;0.14082336;0.18876648 +32156;12;0.13427176;0.16296151;0.66190785;0.71923065 +32156;1;-0.5376135;4.001625;8.940586 +32156;0;-1.3757172;4.7224884;10.224472 +32156;3;-0.21037292;0.12615967;0.19181824 +32159;12;0.13377582;0.16289756;0.6623423;0.7189375 +32159;0;-1.4043732;4.627472;10.272156 +32159;3;-0.22564697;0.11149597;0.1954956 +32160;0;-1.4569244;4.53244;10.334152 +32160;1;-0.5399613;3.9927428;8.944415 +32161;3;-0.23786926;0.09744263;0.19732666 +32164;4;16.693115;-19.641113;-49.49646 +32164;6;-1.322726;-0.40971613;0.14005846 +32164;7;0.1892219;-0.8891556;0.4166502;0.0;0.9735498;0.22521193;0.038477167;0.0;-0.12804678 +32164;0;-1.4139404;4.470688;10.362778 +32164;3;-0.24641418;0.08155823;0.20037842 +32164;12;0.13325612;0.16271767;0.662793;0.7186594 +32166;0;-1.4091492;4.432678;10.400925 +32166;1;-0.5409369;3.9826887;8.948837 +32167;2;0.7509366;-0.66295385;-1.2621775; +32167;3;-0.25068665;0.064453125;0.20098877 +32171;1;-0.5403775;3.9720187;8.953612 +32172;0;-1.3900452;4.3329163;10.477234 +32172;12;0.13273905;0.16244039;0.66325355;0.71839285 +32172;3;-0.25434875;0.047958374;0.20404053 +32172;0;-1.3613892;4.290146;10.520157 +32172;3;-0.25131226;0.032089233;0.20404053 +32173;4;15.492249;-18.440247;-51.14746 +32173;6;-1.2763805;-0.38431966;0.1286925 +32173;7;0.24173419;-0.88716435;0.39307007;0.0;0.96302104;0.26901323;0.014918059;0.0;-0.11897581 +32173;0;-1.3279419;4.209381;10.629852 +32173;3;-0.24824524;0.017425537;0.20465088 +32173;12;0.13271949;0.1617072;0.6616619;0.72002774 +32175;1;-0.53835726;3.9613;8.958481 +32175;0;-1.2897186;4.1713715;10.658463 +32175;3;-0.23970032;0.0045928955;0.20709229 +32178;0;-1.2658386;4.1143646;10.696625 +32180;12;0.13228536;0.16128919;0.6621176;0.7197825 +32180;1;-0.5351727;3.9511614;8.963148 +32181;3;-0.22869873;-0.0051727295;0.20465088 +32181;0;-1.2276306;4.109619;10.696625 +32181;3;-0.2164917;-0.016174316;0.20343018 +32183;12;0.13191837;0.16084743;0.66256255;0.7195391 +32185;1;-0.5309911;3.9420846;8.967392 +32185;2;0.6760502;-0.2068975;-1.6725912; +32186;4;15.792847;-18.740845;-50.9964 +32187;6;-1.4498725;-0.36462486;0.11426809 +32187;7;0.07948029;-0.9274353;0.36544034;0.0;0.99112844;0.11269885;0.070451215;0.0;-0.106523655 +32187;0;-1.1702881;4.0383606;10.672775 +32187;3;-0.19694519;-0.028381348;0.20098877 +32187;0;-1.1320801;4.0478516;10.682312 +32187;3;-0.17494202;-0.04121399;0.19976807 +32187;0;-1.0890961;3.938568;10.667999 +32188;12;0.1316306;0.1604045;0.6629871;0.71929955 +32188;3;-0.15112305;-0.054656982;0.1954956 +32189;5;999.5862 +32189;0;-1.0652008;3.8863068;10.677551 +32190;1;-0.5257939;3.9348395;8.97088 +32190;3;-0.12667847;-0.06930542;0.19303894 +32191;4;16.242981;-19.190979;-50.09613 +32191;6;-1.6172463;-0.3474771;0.09943179 +32191;7;-0.07997092;-0.93922067;0.33387008;0.0;0.99241775;-0.043658197;0.11489463;0.0;-0.09333525 +32192;0;-1.0222168;3.8103027;10.7157135 +32192;3;-0.097976685;-0.07847595;0.18937683 +32192;12;0.13145857;0.15998353;0.6633614;0.7190797 +32194;0;-0.93621826;3.7628021;10.739548 +32194;1;-0.5194196;3.9295409;8.973574 +32195;3;-0.069869995;-0.083358765;0.18632507 +32197;0;-0.91233826;3.7580414;10.782486 +32197;3;-0.03994751;-0.08213806;0.18510437 +32197;12;0.13140824;0.15958998;0.66371673;0.7188484 +32198;0;-0.888443;3.7628021;10.758636 +32198;1;-0.51272744;3.9266818;8.97521 +32199;3;-0.011245728;-0.07847595;0.18449402 +32201;4;17.593384;-19.190979;-50.846863 +32201;6;-1.643049;-0.33539197;0.082392566 +32201;7;-0.09896218;-0.94181764;0.32122576;0.0;0.9920519;-0.06816747;0.10576454;0.0;-0.077713765 +32202;0;-0.855011;3.7390442;10.725235 +32202;3;0.021133423;-0.07298279;0.18205261 +32202;12;0.13147017;0.15927504;0.66403586;0.71861225 +32203;0;-0.8072357;3.7247925;10.634628 +32203;1;-0.5063192;3.9263892;8.975701 +32204;3;0.05290222;-0.06503296;0.18083191 +32205;2;0.37809026;0.1458416;-1.7483549; +32206;0;-0.7881317;3.7152863;10.586929 +32207;12;0.13162552;0.15906674;0.66433036;0.7183577 +32207;3;0.086502075;-0.05709839;0.17900085 +32210;1;-0.50052726;3.9288669;8.974942 +32210;0;-0.71647644;3.6677704;10.53923 +32210;3;0.12193298;-0.04914856;0.17654419 +32211;4;17.74292;-19.940186;-49.79706 +32211;6;-1.7195326;-0.33418697;0.06787742 +32211;7;-0.16984837;-0.93424726;0.3135819;0.0;0.9833851;-0.13999027;0.11557052;0.0;-0.064073026 +32211;0;-0.6639252;3.6107635;10.496323 +32211;3;0.15370178;-0.040603638;0.17410278 +32212;12;0.13186878;0.1589823;0.6645994;0.7180828 +32213;0;-0.62094116;3.5965118;10.45816 +32213;1;-0.49539793;3.934191;8.972895 +32213;3;0.18423462;-0.03265381;0.17105103 +32218;0;-0.5683899;3.615509;10.381866 +32218;3;0.21295166;-0.022888184;0.16921997 +32218;12;0.1322041;0.15903242;0.664841;0.7177864 +32218;1;-0.49098077;3.9421391;8.969648 +32218;0;-0.5062866;3.5774994;10.3198395 +32218;3;0.23982239;-0.015548706;0.16555786 +32222;4;16.242981;-19.491577;-50.846863 +32223;6;-1.6826079;-0.33332652;0.049020242 +32223;7;-0.12737703;-0.9390584;0.31928712;0.0;0.99077296;-0.10543738;0.085158035;0.0;-0.04630358 +32223;0;-0.49195862;3.5727692;10.200623 +32223;3;0.26608276;-0.007003784;0.1625061 +32223;12;0.1326181;0.15920788;0.66505635;0.71747154 +32223;1;-0.48731604;3.9524255;8.965321 +32223;0;-0.45373535;3.5632477;10.143387 +32223;3;0.28808594;-0.0027313232;0.16004944 +32223;2;0.051665723;0.3568461;-1.4376402; +32225;0;-0.45373535;3.548996;10.038467 +32225;12;0.13309924;0.15950002;0.6652456;0.7171421 +32225;3;0.30885315;0.0033721924;0.15823364 +32227;5;999.5862 +32228;0;-0.41552734;3.5205078;9.957382 +32229;1;-0.4841989;3.9646623;8.960084 +32229;3;0.32962036;0.0070495605;0.15760803 +32229;4;15.792847;-19.340515;-50.9964 +32229;6;-1.6472436;-0.3395673;0.041706383 +32229;7;-0.09015334;-0.940145;0.32863322;0.0;0.99515164;-0.07201183;0.06698859;0.0;-0.0393135 +32230;0;-0.3534088;3.5062408;9.838165 +32230;3;0.3448944;0.0076446533;0.15516663 +32231;12;0.1336684;0.1598616;0.6652903;0.7169141 +32232;0;-0.36775208;3.4872284;9.75708 +32232;1;-0.48134398;3.9785666;8.954073 +32232;3;0.3571167;0.0076446533;0.15394592 +32234;0;-0.34864807;3.449234;9.685532 +32235;12;0.1342648;0.16031988;0.66544;0.7165614 +32235;3;0.36932373;0.009490967;0.15455627 +32237;0;-0.3295288;3.4112244;9.609222 +32237;1;-0.47855473;3.9935327;8.947557 +32237;3;0.37849426;0.008270264;0.15333557 +32239;4;15.492249;-17.840576;-50.39673 +32239;6;-1.5559052;-0.3409324;0.03427954 +32239;7;0.0034233655;-0.9423388;0.33464283;0.0;0.9994724;0.014033462;0.029293071;0.0;-0.032300197 +32239;0;-0.3343048;3.4017181;9.499542 +32240;3;0.38520813;0.01071167;0.15150452 +32240;12;0.1349026;0.16082063;0.6655762;0.71620274 +32241;0;-0.3056488;3.4207153;9.389847 +32242;1;-0.4758147;4.0093203;8.940641 +32242;3;0.39071655;0.009490967;0.15089417 +32244;0;-0.2817688;3.3969727;9.246765 +32244;2;-0.17463684;0.5622759;-0.7943487; +32244;3;0.39926147;0.01071167;0.15089417 +32245;12;0.13557434;0.16135496;0.6657016;0.7158391 +32247;0;-0.30085754;3.358963;9.146606 +32247;1;-0.47309238;4.025697;8.933424 +32247;3;0.40475464;0.014373779;0.15028381 +32249;4;15.342712;-20.39032;-52.197266 +32249;6;-1.6435434;-0.35177165;0.03288095 +32249;7;-0.08394115;-0.93628085;0.34107494;0.0;0.9959928;-0.0682321;0.05781828;0.0;-0.030861884 +32250;0;-0.26264954;3.3304443;9.08461 +32250;3;0.40841675;0.019256592;0.15272522 +32251;12;0.13630147;0.16188239;0.6656674;0.71561366 +32251;0;-0.25787354;3.3304443;8.970154 +32251;1;-0.4706006;4.042552;8.9259405 +32252;3;0.41270447;0.02659607;0.15394592 +32253;0;-0.3056488;3.3114624;8.908142 +32254;12;0.13700391;0.16246936;0.6657828;0.7152391 +32254;3;0.41941833;0.036361694;0.15577698 +32256;0;-0.2960968;3.3304443;8.803207 +32256;1;-0.4687137;4.05996;8.918136 +32256;3;0.42248535;0.045516968;0.15577698 +32258;4;14.593506;-18.89038;-51.597595 +32258;6;-1.5131007;-0.3614926;0.033622433 +32258;7;0.04576169;-0.93381363;0.35482115;0.0;0.9984575;0.053936735;0.013177786;0.0;-0.031443488 +32259;0;-0.3390808;3.3114624;8.712601 +32259;3;0.42980957;0.05529785;0.15577698 +32259;12;0.13770558;0.1631036;0.6659043;0.7148468 +32261;0;-0.2960968;3.335205;8.621979 +32261;3;0.43469238;0.06201172;0.15760803 +32261;1;-0.4676479;4.0777345;8.910078 +32262;2;-0.23775429;0.7623887;-0.04067135; +32263;0;-0.3056488;3.3019562;8.531357 +32264;12;0.13839266;0.1637834;0.66602784;0.71444345 +32264;3;0.44262695;0.06996155;0.15577698 +32265;5;999.5862 +32266;0;-0.3152008;3.3209534;8.459839 +32266;1;-0.46721184;4.0960712;8.901687 +32266;3;0.44874573;0.07789612;0.15516663 +32268;4;15.193176;-19.491577;-49.647522 +32268;6;-1.5573434;-0.37383613;0.03724126 +32269;7;-1.525014E-4;-0.930849;0.3654039;0.0;0.99939907;0.012523437;0.03231996;0.0;-0.034661118 +32269;0;-0.2960968;3.325714;8.416901 +32269;3;0.4542389;0.08218384;0.15333557 +32270;12;0.1391838;0.1644239;0.6656995;0.7144487 +32271;0;-0.32476807;3.368454;8.364441 +32271;1;-0.4674099;4.1150026;8.8929405 +32271;3;0.45669556;0.0864563;0.15211487 +32273;0;-0.3199768;3.368454;8.288132 +32273;12;0.1398707;0.16520096;0.66581774;0.714025 +32274;3;0.46157837;0.08950806;0.15211487 +32275;0;-0.3390808;3.3827057;8.197525 +32276;3;0.46401978;0.092559814;0.14906311 +32276;1;-0.46800545;4.134322;8.8839445 +32278;4;16.242981;-18.89038;-50.846863 +32278;6;-1.4193287;-0.39106214;0.041340236 +32278;7;0.13518731;-0.91391975;0.38272056;0.0;0.99008304;0.13949765;-0.016610052;0.0;-0.038208358 +32278;0;-0.36775208;3.425476;8.173676 +32279;12;0.14055917;0.16600934;0.66593003;0.7135975 +32279;3;0.46585083;0.093170166;0.1478424 +32280;0;-0.37728882;3.3827057;8.140289 +32281;1;-0.46893138;4.153915;8.874751 +32281;3;0.46585083;0.09378052;0.1478424 +32281;2;-0.20083731;0.818346;0.53841305; +32282;0;-0.4202881;3.4017181;8.083054 +32283;12;0.14124595;0.16683836;0.666034;0.7131713 +32283;3;0.46401978;0.09561157;0.14723206 +32285;0;-0.44895935;3.3827057;8.016281 +32285;1;-0.47003692;4.1734996;8.8654995 +32286;3;0.46340942;0.09561157;0.1478424 +32288;4;15.792847;-19.340515;-50.546265 +32288;6;-1.4088519;-0.39874884;0.055947494 +32288;7;0.13955818;-0.90948963;0.391602;0.0;0.9888721;0.14858806;-0.0073183924;0.0;-0.05153138 +32289;0;-0.45373535;3.4207153;7.9638214 +32289;3;0.45851135;0.09439087;0.1466217 +32290;12;0.14241424;0.16727133;0.6640884;0.71465033 +32290;0;-0.49195862;3.4539795;7.901825 +32291;3;0.45547485;0.09194946;0.1466217 +32291;1;-0.47120857;4.1929913;8.856235 +32292;0;-0.46806335;3.449234;7.854141 +32293;12;0.14309457;0.16810548;0.66418993;0.7142243 +32293;3;0.44935608;0.08828735;0.14479065 +32294;0;-0.48718262;3.4539795;7.815979 +32295;1;-0.47219983;4.2121453;8.847088 +32296;17;1;38dead6d7725;12519;813;-83; +32296;17;1;38dead6d60ff;11433;4091;-75; +32297;17;1;1c1bb5efa29a;4978;1845;-73; +32298;17;1;1c1bb5ecd182;-3720;1392;-41; +32298;3;0.44140625;0.085235596;0.1441803 +32298;4;14.292908;-20.541382;-49.647522 +32298;6;-1.4320546;-0.41539174;0.06225108 +32298;7;0.11316522;-0.90616626;0.40750003;0.0;0.9919444;0.12653595;0.005911667;0.0;-0.05692036 +32298;0;-0.49671936;3.4444885;7.8302765 +32298;12;0.1437667;0.16891873;0.6642895;0.7138047 +32298;3;0.43347168;0.080337524;0.14234924 +32300;0;-0.5110626;3.4729767;7.7921295 +32300;3;0.42308044;0.07728577;0.14112854 +32300;2;-0.062897444;0.8203778;0.9156027; +32301;1;-0.4729553;4.2306366;8.83822 +32302;0;-0.5253906;3.4824982;7.777817 +32303;12;0.14442386;0.16969875;0.664387;0.71339613 +32303;3;0.41209412;0.07423401;0.14294434 +32304;5;999.5862 +32305;0;-0.5397186;3.515747;7.8016815 +32305;1;-0.4734666;4.248308;8.829712 +32305;3;0.39987183;0.06996155;0.14294434 +32307;4;14.892578;-18.440247;-50.39673 +32307;6;-1.2158309;-0.42249227;0.06906974 +32307;7;0.32019496;-0.8552101;0.40754262;0.0;0.9452582;0.31699717;-0.07745874;0.0;-0.06294635 +32307;0;-0.5349426;3.5014954;7.7921295 +32308;3;0.38827515;0.06629944;0.14294434 +32308;12;0.1457399;0.16986436;0.6616523;0.7156272 +32309;0;-0.5540619;3.5394897;7.815979 +32309;1;-0.4736388;4.2649674;8.821668 +32310;3;0.37483215;0.061401367;0.1441803 +32312;12;0.14634772;0.17055175;0.661761;0.71523905 +32313;0;-0.60661316;3.5727692;7.8016815 +32313;3;0.36260986;0.057739258;0.145401 +32314;0;-0.62094116;3.5870209;7.815979 +32315;1;-0.47350433;4.280596;8.814102 +32315;3;0.34916687;0.05529785;0.1466217 +32317;4;16.093445;-19.940186;-48.59619 +32317;6;-1.3645601;-0.42906746;0.07927858 +32317;7;0.1718851;-0.8900837;0.42214534;0.0;0.9824812;0.18621506;-0.007407166;0.0;-0.07201681 +32317;0;-0.6257019;3.6012573;7.7969055 +32317;3;0.33390808;0.05102539;0.14967346 +32317;12;0.14692564;0.1711865;0.66187876;0.7148598 +32321;0;-0.64482117;3.6250305;7.811203 +32321;2;0.047065973;0.7672534;0.9894781; +32323;1;-0.47304592;4.29519;8.807025 +32323;3;0.3204651;0.04736328;0.15089417 +32323;0;-0.63049316;3.6345215;7.8207397 +32324;3;0.3058014;0.043685913;0.15455627 +32324;0;-0.65437317;3.6202698;7.854141 +32324;1;-0.4721732;4.308471;8.800582 +32324;3;0.29174805;0.04185486;0.15638733 +32327;12;0.14747225;0.1717709;0.6620112;0.7144844 +32327;4;14.743042;-20.39032;-48.59619 +32327;6;-1.3675221;-0.43059897;0.083123714 +32327;7;0.16723655;-0.8900062;0.42417082;0.0;0.98302555;0.183449;-0.002657108;0.0;-0.07544888 +32328;0;-0.63049316;3.606018;7.897049 +32328;3;0.2728119;0.040023804;0.15945435 +32328;12;0.14811479;0.17217305;0.6615984;0.714637 +32329;1;-0.47099164;4.320457;8.794767 +32329;0;-0.6782532;3.6297607;7.935196 +32332;3;0.25509644;0.039413452;0.1612854 +32332;0;-0.6782532;3.6487732;7.98291 +32332;3;0.23738098;0.040023804;0.1637268 +32332;12;0.14857745;0.1726351;0.6617677;0.7142726 +32335;1;-0.46968302;4.3308663;8.789716 +32336;0;-0.6687012;3.7105408;8.006744 +32336;3;0.21844482;0.041244507;0.16616821 +32337;4;14.442444;-20.690918;-50.546265 +32337;6;-1.2990233;-0.4326391;0.083323866 +32337;7;0.23389466;-0.8745407;0.42481992;0.0;0.9693214;0.24370646;-0.03198508;0.0;-0.0755591 +32338;0;-0.6495819;3.6582794;8.040131 +32338;3;0.19950867;0.04185486;0.16860962 +32338;12;0.1489803;0.17303239;0.66195816;0.71391606 +32339;0;-0.67349243;3.6725311;8.054443 +32339;1;-0.4683212;4.339651;8.785455 +32339;3;0.17752075;0.044296265;0.17227173 +32339;2;0.12921232;0.71795607;0.8202715; +32341;0;-0.6495819;3.663025;8.040131 +32341;3;0.15736389;0.046142578;0.17593384 +32342;12;0.14931649;0.17337026;0.6621731;0.71356446 +32344;1;-0.46695808;4.3466973;8.782043 +32344;5;999.5862 +32344;0;-0.6639252;3.70578;8.106903 +32344;3;0.13597107;0.049194336;0.18022156 +32346;4;14.593506;-19.79065;-49.197388 +32346;6;-1.3097434;-0.4274919;0.081713915 +32346;7;0.22454321;-0.87917626;0.42027315;0.0;0.97162926;0.23487131;-0.027790181;0.0;-0.07427763 +32346;0;-0.65914917;3.682022;8.135513 +32347;3;0.11276245;0.052246094;0.18388367 +32347;12;0.15010685;0.17319624;0.6602639;0.7152081 +32348;0;-0.65437317;3.6772919;8.164139 +32348;1;-0.4656492;4.3518906;8.77954 +32349;3;0.08894348;0.0546875;0.18998718 +32350;0;-0.68304443;3.6962738;8.178452 +32351;12;0.15028808;0.17340715;0.66054344;0.71486074 +32351;3;0.06573486;0.056518555;0.19487 +32353;0;-0.71647644;3.7105408;8.197525 +32353;1;-0.4643866;4.3551292;8.778002 +32353;3;0.042510986;0.05834961;0.19976807 +32355;4;16.392517;-19.041443;-48.59619 +32355;6;-1.3177495;-0.42362085;0.08718001 +32355;7;0.21475273;-0.88257563;0.41826016;0.0;0.9734378;0.22822517;-0.018224217;0.0;-0.07937323 +32355;0;-0.7021332;3.7437897;8.249985 +32355;3;0.018692017;0.057739258;0.20465088 +32355;12;0.15038443;0.17355044;0.66086125;0.7145119 +32360;1;-0.46302685;4.3564262;8.77743 +32361;2;0.15825272;0.6810465;0.59241104; +32361;12;0.1503999;0.17362091;0.6612159;0.71416336 +32361;0;-0.71647644;3.7390442;8.273819 +32361;3;-0.0057373047;0.05834961;0.20953369 +32362;0;-0.7499237;3.772293;8.316757 +32362;1;-0.4616118;4.355742;8.777843 +32362;3;-0.027114868;0.060180664;0.2144165 +32362;0;-0.8120117;3.753296;8.378754 +32363;3;-0.049713135;0.059570312;0.21931458 +32369;1;-0.46007472;4.353149;8.77921 +32369;12;0.15082105;0.17319924;0.6596148;0.7156559 +32369;4;14.743042;-20.690918;-50.546265 +32369;6;-1.3529451;-0.41941;0.09661148 +32369;7;0.17677161;-0.89174205;0.41659084;0.0;0.980301;0.19739985;0.0065780506;0.0;-0.0881009 +32369;0;-0.8120117;3.7865448;8.455063 +32369;3;-0.07293701;0.05834961;0.22053528 +32369;0;-0.845459;3.7913055;8.507523 +32369;3;-0.09736633;0.055908203;0.22358704 +32372;12;0.15067762;0.17312062;0.6600385;0.7153145 +32372;0;-0.864563;3.7913055;8.564758 +32373;3;-0.1187439;0.05529785;0.2266388 +32373;1;-0.458345;4.348536;8.781587 +32373;0;-0.883667;3.7865448;8.65538 +32373;3;-0.14378357;0.05407715;0.2290802 +32373;4;14.593506;-19.79065;-50.09613 +32373;6;-1.3282659;-0.41049212;0.101742014 +32374;7;0.19957286;-0.8900892;0.40977043;0.0;0.9754474;0.2202084;0.003251344;0.0;-0.09312888 +32374;0;-0.897995;3.8103027;8.769836 +32374;12;0.15045753;0.1729584;0.6604893;0.71498376 +32375;3;-0.16822815;0.052856445;0.2303009 +32376;0;-0.93144226;3.8103027;8.865219 +32376;1;-0.45647052;4.3418403;8.784996 +32376;2;0.33527315;0.5822301;0.20366478; +32377;3;-0.19143677;0.051635742;0.23396301 +32378;0;-0.9553375;3.7628021;8.946289 +32379;12;0.15015505;0.17271267;0.6609673;0.71466506 +32379;3;-0.21525574;0.05041504;0.23396301 +32381;5;999.5862 +32381;0;-0.9553375;3.753296;8.979691 +32381;1;-0.45445833;4.3330345;8.789448 +32381;3;-0.23786926;0.047958374;0.23396301 +32383;4;14.442444;-19.641113;-50.247192 +32383;6;-1.3929269;-0.39390793;0.10599 +32383;7;0.1359778;-0.90884745;0.39434302;0.0;0.9858838;0.16338277;0.036596794;0.0;-0.09768975 +32383;0;-0.98876953;3.7105408;9.070297 +32384;12;0.15034777;0.171889;0.65910596;0.7165397 +32384;3;-0.26168823;0.04736328;0.23336792 +32386;0;-1.0126648;3.6915283;9.11322 +32386;3;-0.28611755;0.04246521;0.23214722 +32386;1;-0.4523754;4.3221526;8.79491 +32388;0;-1.0365448;3.6487732;9.246765 +32389;12;0.1498824;0.17147811;0.65962887;0.71625435 +32389;3;-0.30751038;0.037582397;0.22970581 +32390;0;-0.99354553;3.6677704;9.327835 +32391;3;-0.32888794;0.030258179;0.22724915 +32391;1;-0.45004195;4.3091526;8.801408 +32392;4;14.593506;-20.240784;-50.39673 +32392;6;-1.5750993;-0.37271973;0.10611396 +32392;7;-0.042847317;-0.93133175;0.36164236;0.0;0.99420005;-0.0040075406;0.10747207;0.0;-0.09864286 +32393;0;-0.9983368;3.6107635;9.375534 +32393;3;-0.3502655;0.021697998;0.22419739 +32394;12;0.14934485;0.17097558;0.6601643;0.71599346 +32395;0;-1.0078735;3.6202698;9.456619 +32395;1;-0.4472148;4.29424;8.808837 +32396;2;0.49019456;0.64130354;-0.39857388; +32396;3;-0.37042236;0.014373779;0.21931458 +32397;0;-0.9696655;3.5680084;9.54245 +32398;12;0.14875059;0.17037892;0.66070354;0.71576196 +32398;3;-0.38935852;0.0076446533;0.2156372 +32400;0;-0.99354553;3.548996;9.599686 +32400;1;-0.44387767;4.2773867;8.817202 +32400;3;-0.40646362;9.3078613E-4;0.20892334 +32402;4;14.593506;-19.79065;-48.147583 +32402;6;-1.7291722;-0.35238612;0.10313052 +32402;7;-0.19196315;-0.9268056;0.32277155;0.0;0.97663426;-0.14802332;0.1558035;0.0;-0.096621856 +32402;0;-1.0222168;3.4872284;9.656921 +32402;3;-0.42112732;-0.00944519;0.20404053 +32403;12;0.1483093;0.16950615;0.66036683;0.7163712 +32404;0;-1.0174255;3.4444885;9.723679 +32405;1;-0.44020984;4.259028;8.826268 +32405;3;-0.43333435;-0.01739502;0.19854736 +32407;0;-0.99354553;3.3732147;9.761841 +32408;12;0.14761606;0.16873801;0.66089326;0.7162103 +32408;3;-0.44128418;-0.02532959;0.19364929 +32411;1;-0.43599325;4.2394996;8.835874 +32411;0;-0.9648895;3.3494568;9.833389 +32411;3;-0.44677734;-0.03326416;0.19059753 +32412;4;13.693237;-20.39032;-49.79706 +32412;6;-1.8975884;-0.32683533;0.09781069 +32412;7;-0.3491648;-0.89694166;0.27125558;0.0;0.9324862;-0.30401343;0.19505239;0.0;-0.092485264 +32412;12;0.14690456;0.16790204;0.6614055;0.7160802 +32413;0;-0.92666626;3.368454;9.842926 +32413;3;-0.45166016;-0.038772583;0.18571472 +32414;0;-0.90278625;3.3494568;9.895386 +32414;3;-0.45166016;-0.047927856;0.18083191 +32415;2;0.48804945;0.8165703;-0.9051323; +32415;1;-0.4312494;4.2194242;8.845711 +32416;0;-0.897995;3.325714;9.933533 +32417;12;0.14619298;0.16702206;0.6619034;0.7159716 +32417;3;-0.44862366;-0.05831909;0.17778015 +32419;0;-0.845459;3.3019562;10.005081 +32419;3;-0.44433594;-0.06686401;0.17166138 +32419;1;-0.42591837;4.199205;8.855585 +32419;5;999.5862 +32421;4;14.593506;-20.541382;-50.39673 +32421;6;-1.8933198;-0.31771544;0.084302686 +32421;7;-0.3407837;-0.90097076;0.26854828;0.0;0.93673277;-0.30109754;0.1785273;0.0;-0.07998864 +32422;0;-0.802475;3.2877045;10.024155 +32422;3;-0.43151855;-0.075424194;0.16555786 +32422;12;0.14558855;0.16603579;0.6620204;0.71621585 +32424;0;-0.7929077;3.2544403;10.095703 +32424;1;-0.41995904;4.179404;8.8652315 +32424;3;-0.41990662;-0.08457947;0.16067505 +32426;0;-0.7833557;3.1879272;10.143387 +32427;12;0.14494123;0.1651106;0.6624682;0.71614695 +32427;3;-0.40524292;-0.09008789;0.15701294 +32428;0;-0.74513245;3.2259216;10.08139 +32429;1;-0.41348267;4.160573;8.874389 +32429;3;-0.383255;-0.09436035;0.15028381 +32431;4;14.442444;-21.290588;-49.79706 +32431;6;-1.9961113;-0.30890206;0.07377752 +32431;7;-0.4318978;-0.8677936;0.24576107;0.0;0.89918476;-0.39307812;0.19224045;0.0;-0.07022174 +32431;0;-0.67349243;3.244934;10.038467 +32431;3;-0.3600464;-0.10107422;0.14601135 +32432;12;0.14436375;0.16420093;0.66288286;0.716089 +32434;0;-0.67349243;3.2829437;10.024155 +32434;1;-0.4066854;4.1435537;8.882662 +32434;2;0.3166304;0.9163084;-1.1804094; +32434;3;-0.33132935;-0.111450195;0.14234924 +32436;0;-0.6639252;3.3114624;10.076614 +32436;12;0.14387348;0.16334432;0.6632583;0.716036 +32436;3;-0.29589844;-0.12307739;0.13928223 +32438;0;-0.64004517;3.3399658;10.167236 +32438;1;-0.399183;4.1290274;8.889763 +32439;3;-0.25680542;-0.13040161;0.13804626 +32441;4;14.143372;-19.641113;-50.247192 +32441;6;-1.8178536;-0.3168109;0.062868774 +32441;7;-0.2630473;-0.9213812;0.28611705;0.0;0.9629341;-0.23238124;0.13695626;0.0;-0.059700686 +32441;0;-0.6687012;3.3161926;10.21492 +32441;3;-0.21710205;-0.13040161;0.13682556 +32442;12;0.14387926;0.1622275;0.6619913;0.7174598 +32443;0;-0.60661316;3.368454;10.172012 +32443;1;-0.39118022;4.1177535;8.895348 +32443;3;-0.17617798;-0.124298096;0.13745117 +32445;0;-0.5779419;3.4539795;10.062302 +32446;12;0.1436737;0.16153544;0.66228324;0.71738774 +32446;3;-0.13096619;-0.11756897;0.13926697 +32448;0;-0.5827179;3.449234;9.986008 +32449;1;-0.38351157;4.110216;8.899166 +32449;3;-0.08758545;-0.1126709;0.14048767 +32450;4;13.542175;-20.240784;-50.846863 +32450;6;-1.7880933;-0.33205277;0.05828734 +32450;7;-0.2337683;-0.9231435;0.3052188;0.0;0.9707314;-0.20381436;0.12704435;0.0;-0.055072207 +32450;0;-0.5779419;3.4967346;9.981247 +32451;3;-0.044830322;-0.10597229;0.13926697 +32451;12;0.14360172;0.16099639;0.6625465;0.7172802 +32452;0;-0.5445099;3.5727692;9.947845 +32453;1;-0.37629744;4.1065183;8.90118 +32453;2;0.17866531;0.7323804;-1.195548; +32453;3;-0.005142212;-0.09375;0.13804626 +32456;0;-0.5015106;3.639267;9.885849 +32456;12;0.14367066;0.16062029;0.6627816;0.7171335 +32456;3;0.033966064;-0.076034546;0.13560486 +32458;0;-0.5062866;3.6962738;9.819077 +32458;1;-0.3701241;4.1064405;8.901475 +32458;3;0.06939697;-0.059539795;0.13438416 +32458;5;999.5862 +32460;4;14.292908;-19.79065;-50.39673 +32460;6;-1.6182902;-0.35959333;0.05151591 +32460;7;-0.0655127;-0.9349845;0.34858578;0.0;0.99668694;-0.04443945;0.06811941;0.0;-0.048199628 +32461;0;-0.5062866;3.7628021;9.747543 +32461;3;0.102386475;-0.039382935;0.13438416 +32461;12;0.14396405;0.16031753;0.66246927;0.71743095 +32463;1;-0.36553285;4.1096025;8.900206 +32463;0;-0.5206146;3.8293152;9.661682 +32463;3;0.1292572;-0.018615723;0.1313324 +32465;0;-0.47763062;3.8910675;9.552002 +32465;3;0.15248108;3.3569336E-4;0.1301117 +32465;12;0.14421335;0.16030248;0.66265404;0.7172136 +32467;0;-0.43463135;4.009842;9.356461 +32467;1;-0.36267006;4.115374;8.8976555 +32468;3;0.17202759;0.020477295;0.12828064 +32470;4;14.143372;-19.641113;-50.247192 +32470;6;-1.4064869;-0.4044954;0.046419166 +32470;7;0.14537902;-0.9069195;0.39542624;0.0;0.9884559;0.15037116;-0.018527377;0.0;-0.042657867 +32470;0;-0.44418335;4.0336;9.242004 +32471;3;0.18728638;0.03453064;0.12400818 +32472;12;0.14450578;0.16045526;0.66282326;0.7169641 +32472;0;-0.39640808;4.090622;9.117996 +32472;1;-0.36142096;4.1230335;8.89416 +32472;2;0.059651107;0.29451036;-0.67487526; +32473;3;0.19706726;0.046142578;0.12156677 +32475;0;-0.4298401;4.1381226;9.003525 +32475;3;0.20072937;0.05529785;0.1166687 +32475;12;0.14481395;0.16074142;0.6629808;0.7166922 +32477;0;-0.40119934;4.233139;8.86998 +32477;1;-0.36129597;4.131804;8.890094 +32478;3;0.20317078;0.05834961;0.11178589 +32480;4;13.693237;-20.690918;-49.046326 +32480;6;-1.3415525;-0.44488004;0.045200337 +32480;7;0.20807253;-0.87904733;0.42893088;0.0;0.9772626;0.20512208;-0.05369044;0.0;-0.040786747 +32480;0;-0.40596008;4.256897;8.7603 +32481;3;0.20072937;0.059570312;0.106903076 +32481;12;0.14512894;0.16111183;0.6631223;0.71641433 +32482;1;-0.36168596;4.1408544;8.885866 +32483;0;-0.37728882;4.323395;8.674438 +32483;3;0.19462585;0.05834961;0.10383606 +32486;0;-0.36297607;4.3519135;8.555222 +32487;3;0.18545532;0.057739258;0.09895325 +32489;12;0.14543876;0.16150956;0.66324955;0.716144 +32489;0;-0.3199768;4.3994293;8.464584 +32489;1;-0.3621264;4.149586;8.881774 +32490;3;0.17507935;0.055908203;0.09529114 +32490;0;-0.3295288;4.4184265;8.38353 +32490;4;14.143372;-20.39032;-50.247192 +32491;6;-1.1383263;-0.4847239;0.039286464 +32491;7;0.4021749;-0.8033427;0.43919915;0.0;0.91490316;0.37083426;-0.1594814;0.0;-0.03475187 +32491;12;0.14573526;0.16189474;0.66336626;0.7158886 +32491;3;0.16163635;0.052856445;0.09223938 +32492;0;-0.2817688;4.4421844;8.254761 +32492;1;-0.36251336;4.157546;8.878036 +32493;3;0.14697266;0.04736328;0.08735657 +32495;2;-0.05103576;-0.12312508;0.2362318; +32498;12;0.14600763;0.16224757;0.66347575;0.71565175 +32501;12;0.14625326;0.16254146;0.6635741;0.71544373 +32502;1;-0.36248294;4.164502;8.874775 +32502;1;-0.36178392;4.1702294;8.872114 +32504;12;0.14647728;0.16275875;0.6636666;0.71526265 +32507;1;-0.3604041;4.1745043;8.87016 +32511;0;-0.25787354;4.53244;8.173676 +32511;3;0.13230896;0.03819275;0.08491516 +32511;0;-0.24832153;4.560959;8.11644 +32511;3;0.11764526;0.028411865;0.07940674 +32511;12;0.14667244;0.16289371;0.66375285;0.715112 +32512;5;999.59125 +32512;4;13.392639;-21.290588;-49.79706 +32512;6;-1.1017039;-0.5117648;0.030585341 +32512;7;0.43850735;-0.77770007;0.45043752;0.0;0.89833206;0.39415756;-0.19400886;0.0;-0.02666264 +32512;0;-0.26264954;4.5514526;8.08783 +32512;3;0.10054016;0.01864624;0.07574463 +32512;0;-0.21487427;4.622711;8.054443 +32512;3;0.082214355;0.008865356;0.07147217 +32512;2;-0.1987038;-0.36904573;0.8056593; +32512;1;-0.3583307;4.1773334;8.868912 +32513;0;-0.21487427;4.5657043;8.03537 +32513;3;0.06695557;0.0015563965;0.06840515 +32513;0;-0.18621826;4.603714;7.992447 +32513;3;0.04862976;-0.007003784;0.0665741 +32513;4;12.643433;-19.491577;-48.89679 +32513;6;-0.9838429;-0.52247417;0.023295065 +32513;7;0.54399836;-0.721548;0.42829227;0.0;0.8388434;0.47993928;-0.25690445;0.0;-0.020185377 +32513;0;-0.171875;4.6322327;7.9495087 +32513;3;0.029067993;-0.01739502;0.062301636 +32513;0;-0.138443;4.603714;7.935196 +32513;3;0.011962891;-0.025939941;0.061080933 +32513;12;0.14683372;0.16294305;0.6638376;0.7149889 +32516;0;-0.147995;4.636963;7.9638214 +32516;3;-0.0020751953;-0.035095215;0.05986023 +32516;0;-0.11933899;4.6749725;7.906601 +32516;1;-0.35553032;4.17876;8.868352 +32516;3;-0.016113281;-0.042434692;0.058639526 +32520;17;1;38dead6d7725;16256;2557;-80; +32521;17;1;38dead6d60ff;10263;3078;-74; +32521;17;1;1c1bb5efa29a;5879;584;-74; +32522;17;1;1c1bb5ecd182;-2916;692;-43; +32522;4;14.292908;-19.491577;-48.147583 +32523;6;-1.0471944;-0.5339292;0.015092444 +32523;7;0.49329427;-0.7454854;0.4482322;0.0;0.8697654;0.4304094;-0.24136232;0.0;-0.012991295 +32523;0;-0.095443726;4.627472;7.9638214 +32523;12;0.14700203;0.16287807;0.6637738;0.7150284 +32523;3;-0.030776978;-0.04914856;0.05619812 +32523;0;-0.07635498;4.670227;7.939972 +32523;1;-0.35207593;4.1789556;8.868398 +32523;3;-0.042388916;-0.054656982;0.053756714 +32523;0;-0.095443726;4.6417236;7.978134 +32523;12;0.14711058;0.16277231;0.66385925;0.71495086 +32523;3;-0.05215454;-0.05770874;0.050704956 +32525;1;-0.3482742;4.178115;8.868944 +32525;0;-0.057235718;4.6749725;8.006744 +32525;3;-0.061935425;-0.060150146;0.049468994 +32528;4;15.342712;-20.39032;-49.49646 +32528;6;-1.1120434;-0.52847064;0.0071483166 +32528;7;0.4395874;-0.7742899;0.45523423;0.0;0.89817876;0.3824191;-0.21686603;0.0;-0.0061730854 +32528;0;-0.047683716;4.670227;8.021057 +32528;3;-0.06864929;-0.060760498;0.046417236 +32528;12;0.14719337;0.16261083;0.66394174;0.7148939 +32530;0;-0.033355713;4.6797333;8.078278 +32530;1;-0.3443288;4.1764846;8.869866 +32530;2;-0.31306264;-0.44752312;0.8685169; +32530;3;-0.07659912;-0.060760498;0.042755127 +32531;0;-0.033355713;4.6797333;8.121216 +32532;12;0.1472492;0.1624125;0.664023;0.71485204 +32532;3;-0.082092285;-0.060760498;0.03970337 +32534;0;7.6293945E-5;4.693985;8.164139 +32534;1;-0.34047505;4.1741996;8.871091 +32534;3;-0.08758545;-0.058929443;0.03665161 +32535;5;999.59125 +32537;4;14.143372;-19.940186;-48.59619 +32537;6;-1.1148905;-0.52179796;-9.345008E-6 +32537;7;0.44028005;-0.77837896;0.4475261;0.0;0.8978605;0.3816859;-0.21945934;0.0;8.101416E-6 +32537;0;-0.038131714;4.6892242;8.2118225 +32538;3;-0.09370422;-0.05831909;0.03236389 +32538;12;0.14728966;0.16218087;0.6640464;0.7148745 +32539;0;-0.038131714;4.6892242;8.183212 +32543;1;-0.3368622;4.1713686;8.87256 +32544;3;-0.09980774;-0.05709839;0.02748108 +32544;12;0.14729123;0.16194665;0.66411585;0.71486276 +32544;1;-0.33353046;4.167981;8.874277 +32544;0;-0.028564453;4.6892242;8.235672 +32544;3;-0.105911255;-0.055877686;0.025650024 +32544;0;-0.057235718;4.660721;8.273819 +32544;3;-0.11325073;-0.05709839;0.020767212 +32546;4;13.693237;-19.940186;-50.546265 +32546;6;-1.0598683;-0.512994;0.0069175796 +32546;7;0.48601377;-0.760009;0.43148234;0.0;0.87393045;0.42604408;-0.2339491;0.0;-0.0060270946 +32546;0;-0.057235718;4.6417236;8.326294 +32546;3;-0.1187439;-0.06137085;0.017105103 +32547;12;0.14726089;0.16169854;0.6641771;0.71486825 +32548;0;-0.057235718;4.5989685;8.38353 +32548;1;-0.33025807;4.163902;8.876314 +32549;2;-0.34505332;-0.47032356;0.6208277; +32549;3;-0.12486267;-0.063201904;0.01159668 +32551;0;-0.06678772;4.6179657;8.393066 +32551;12;0.14720528;0.16142413;0.6642301;0.7148925 +32551;3;-0.12852478;-0.06442261;0.008544922 +32553;0;-0.07156372;4.5894623;8.450302 +32553;1;-0.32698846;4.1592994;8.878593 +32553;3;-0.13279724;-0.06503296;0.0030517578 +32555;4;14.442444;-19.940186;-49.49646 +32555;6;-1.1570659;-0.49752465;0.008468574 +32555;7;0.39831287;-0.8046228;0.44037372;0.0;0.91721946;0.35328868;-0.18410766;0.0;-0.007441811 +32556;0;-0.057235718;4.594223;8.54567 +32556;3;-0.13951111;-0.06808472;-0.0012207031 +32556;12;0.14716434;0.16109592;0.66412914;0.71506876 +32558;0;-0.06678772;4.5752106;8.602905 +32558;1;-0.32377687;4.1541715;8.881111 +32558;3;-0.14562988;-0.06991577;-0.0061187744 +32560;0;-0.095443726;4.537201;8.650604 +32561;3;-0.14990234;-0.071762085;-0.010391235 +32561;12;0.1470704;0.16077708;0.6641575;0.71513355 +32563;0;-0.11456299;4.537201;8.722153 +32563;1;-0.32062742;4.1484227;8.883912 +32563;3;-0.15478516;-0.07359314;-0.015274048 +32565;4;13.392639;-19.641113;-50.247192 +32565;6;-1.1406531;-0.47963572;0.01313396 +32565;7;0.4114565;-0.80634785;0.42486072;0.0;0.91135484;0.36994782;-0.1804738;0.0;-0.011651629 +32565;0;-0.11933899;4.4991913;8.784149 +32566;3;-0.15966797;-0.076034546;-0.020767212 +32566;12;0.14695412;0.16043302;0.6641735;0.71521986 +32569;0;-0.147995;4.44693;8.860458 +32569;2;-0.27912232;-0.37514067;0.24352741; +32569;1;-0.317544;4.142113;8.886967 +32569;3;-0.16517639;-0.0766449;-0.026885986 +32570;0;-0.157547;4.4231873;8.936752 +32570;3;-0.1663971;-0.076034546;-0.032989502 +32571;12;0.14681621;0.16006579;0.66417587;0.7153283 +32573;0;-0.18621826;4.3946686;9.003525 +32573;1;-0.3146843;4.1352744;8.890253 +32573;3;-0.16944885;-0.076034546;-0.037261963 +32573;5;999.59125 +32575;4;12.942505;-20.541382;-48.89679 +32575;6;-1.3167979;-0.45400238;0.02067987 +32575;7;0.24244453;-0.86986464;0.42960006;0.0;0.9699873;0.2258216;-0.09016266;0.0;-0.018583653 +32575;0;-0.19577026;4.347168;9.0607605 +32575;3;-0.16944885;-0.07420349;-0.04031372 +32576;12;0.14665632;0.15968145;0.66415375;0.7154674 +32577;0;-0.23399353;4.3376617;9.089371 +32577;1;-0.31210902;4.128144;8.893657 +32577;3;-0.17250061;-0.071136475;-0.045196533 +32579;0;-0.23399353;4.3186646;9.160919 +32580;12;0.14647815;0.15929641;0.6641258;0.7156157 +32580;3;-0.1700592;-0.07235718;-0.04824829 +32582;0;-0.21009827;4.299652;9.170456 +32582;1;-0.30984324;4.1208467;8.897119 +32582;3;-0.16822815;-0.07054138;-0.053756714 +32584;4;13.693237;-19.340515;-49.49646 +32584;6;-1.2898836;-0.4383252;0.022906333 +32584;7;0.26781982;-0.86997205;0.41403022;0.0;0.9632457;0.2510241;-0.09562666;0.0;-0.02073904 +32584;0;-0.23399353;4.2473907;9.227692 +32585;3;-0.16578674;-0.071136475;-0.059249878 +32585;12;0.14628525;0.15891325;0.66408676;0.71577656 +32587;0;-0.26742554;4.266403;9.275375 +32587;1;-0.30784497;4.1136227;8.900531 +32587;2;-0.14721152;-0.18360758;-0.23203468; +32588;3;-0.16029358;-0.06869507;-0.06474304 +32590;0;-0.2817688;4.252136;9.327835 +32590;3;-0.1541748;-0.06808472;-0.070251465 +32590;12;0.14609033;0.15854165;0.6640295;0.7159519 +32591;0;-0.3199768;4.2283936;9.351685 +32592;1;-0.30623156;4.106743;8.903763 +32592;3;-0.14562988;-0.06686401;-0.07635498 +32594;4;13.392639;-19.340515;-48.59619 +32594;6;-1.3554698;-0.42442346;0.03420261 +32594;7;0.1997849;-0.89023185;0.40935698;0.0;0.97934407;0.19470914;-0.054529153;0.0;-0.031161953 +32594;0;-0.30085754;4.1951294;9.38031 +32595;3;-0.135849;-0.067474365;-0.0836792 +32595;12;0.14593744;0.15815796;0.6637829;0.71629655 +32596;0;-0.32476807;4.1951294;9.394608 +32596;1;-0.30492997;4.1004825;8.9066925 +32597;3;-0.12789917;-0.06686401;-0.08979797 +32599;0;-0.3295288;4.1713715;9.4375305 +32599;12;0.14576593;0.15784006;0.6636767;0.7164999 +32599;3;-0.11691284;-0.06442261;-0.09529114 +32601;0;-0.3390808;4.176132;9.427994 +32601;1;-0.30396459;4.0949473;8.909271 +32601;3;-0.105911255;-0.063201904;-0.10261536 +32604;4;12.942505;-19.79065;-50.846863 +32604;6;-1.3357394;-0.4167366;0.035949826 +32604;7;0.21859944;-0.8892693;0.40176404;0.0;0.9752609;0.21296574;-0.059257656;0.0;-0.032865968 +32604;0;-0.35820007;4.142868;9.4423065 +32604;3;-0.09492493;-0.0619812;-0.10873413 +32604;12;0.14561684;0.15755811;0.66354257;0.7167165 +32606;0;-0.39640808;4.142868;9.43277 +32606;1;-0.30343792;4.0902715;8.911437 +32606;2;-0.026246905;-0.065419674;-0.50484467; +32606;3;-0.08453369;-0.060760498;-0.11605835 +32608;0;-0.41552734;4.1476135;9.4423065 +32609;12;0.1454925;0.1573212;0.66337705;0.71694696 +32609;3;-0.07170105;-0.060150146;-0.12156677 +32610;0;-0.4202881;4.123871;9.451843 +32611;1;-0.3033141;4.0865474;8.91315 +32612;3;-0.05949402;-0.05770874;-0.12644958 +32613;5;999.59125 +32613;4;12.942505;-20.240784;-50.09613 +32613;6;-1.4158611;-0.41104373;0.044436987 +32613;7;0.1366267;-0.90572363;0.40124553;0.0;0.9897854;0.14146224;-0.017708402;0.0;-0.040722173 +32614;0;-0.4298401;4.109619;9.4375305 +32614;3;-0.04727173;-0.055267334;-0.13072205 +32614;12;0.14540853;0.15711847;0.6631303;0.71723664 +32616;1;-0.30357313;4.083849;8.914378 +32617;0;-0.43940735;4.1286316;9.399368 +32617;3;-0.035064697;-0.05281067;-0.13560486 +32622;12;0.14534616;0.15697801;0.6629086;0.7174849 +32622;0;-0.46806335;4.1476135;9.385086 +32622;3;-0.020996094;-0.050369263;-0.13867188 +32623;1;-0.30423957;4.082269;8.915079 +32623;0;-0.44895935;4.100113;9.342148 +32623;3;-0.008804321;-0.04914856;-0.14355469 +32624;4;13.093567;-19.340515;-50.9964 +32624;6;-1.2965969;-0.41314664;0.048020452 +32624;7;0.25191173;-0.88164747;0.3990466;0.0;0.9667511;0.2479938;-0.06238079;0.0;-0.04396321 +32624;0;-0.47763062;4.095352;9.318314 +32624;3;0.004638672;-0.047927856;-0.1472168 +32624;12;0.1453158;0.1568901;0.6626658;0.7177346 +32625;1;-0.30522057;4.081793;8.915263 +32626;2;0.08759758;-0.007794857;-0.48854923; +32626;0;-0.47283936;4.123871;9.318314 +32626;3;0.014419556;-0.047317505;-0.15148926 +32631;12;0.14532407;0.15685342;0.6623996;0.7179866 +32631;0;-0.45851135;4.142868;9.299225 +32632;3;0.026016235;-0.042434692;-0.15455627 +32632;1;-0.30648386;4.082314;8.914981 +32632;0;-0.45851135;4.1618805;9.294464 +32635;12;0.14571269;0.15654245;0.66052926;0.7196968 +32636;1;-0.30807036;4.0836916;8.914295 +32636;3;0.03640747;-0.043045044;-0.15881348 +32636;4;13.093567;-18.29071;-47.846985 +32636;6;-1.2912778;-0.42055362;0.0492917 +32636;7;0.2562226;-0.87743336;0.40553755;0.0;0.96557087;0.25185248;-0.06514144;0.0;-0.044978358 +32636;0;-0.46328735;4.1381226;9.261063 +32636;3;0.04373169;-0.039993286;-0.1631012 +32636;0;-0.48718262;4.1476135;9.19429 +32636;3;0.050460815;-0.039382935;-0.16737366 +32638;12;0.14577927;0.15659323;0.6602214;0.71995467 +32638;0;-0.46328735;4.1523743;9.175232 +32638;3;0.05656433;-0.03755188;-0.17044067 +32639;0;-0.49671936;4.1523743;9.13707 +32640;1;-0.3099523;4.085675;8.9133215 +32640;3;0.062057495;-0.03755188;-0.17288208 +32643;12;0.14586218;0.1566759;0.6598952;0.7202189 +32644;4;13.693237;-19.041443;-48.59619 +32644;6;-1.3037338;-0.42599583;0.054309633 +32644;7;0.24187408;-0.8783461;0.4123166;0.0;0.96904755;0.24031392;-0.056531098;0.0;-0.04943154 +32644;0;-0.5015106;4.190384;9.13707 +32644;3;0.06695557;-0.039382935;-0.17713928 +32645;0;-0.47763062;4.180893;9.08461 +32645;2;0.110580534;-0.03778982;-0.30272293; +32645;1;-0.31196767;4.088173;8.9121065 +32645;3;0.070617676;-0.04182434;-0.181427 +32648;0;-0.5062866;4.1713715;9.079834 +32648;12;0.14596319;0.15677892;0.659554;0.7204885 +32648;3;0.07489014;-0.043655396;-0.18325806 +32649;0;-0.47763062;4.2283936;9.041687 +32649;1;-0.31394958;4.091048;8.910717 +32650;3;0.07733154;-0.042434692;-0.18630981 +32651;5;999.5958 +32652;4;12.643433;-20.541382;-49.647522 +32652;6;-1.3120311;-0.4369043;0.052776333 +32652;7;0.23395267;-0.8759;0.421978;0.0;0.97107244;0.2318505;-0.05712886;0.0;-0.047796637 +32652;0;-0.5158386;4.223633;9.03215 +32652;3;0.078552246;-0.042434692;-0.18692017 +32653;12;0.14608653;0.15689196;0.6591892;0.7207726 +32654;1;-0.3160739;4.094197;8.909195 +32654;0;-0.5301666;4.2378845;8.970154 +32654;3;0.08039856;-0.043045044;-0.18998718 +32659;0;-0.5349426;4.223633;8.984451 +32659;12;0.14621547;0.15701893;0.6588202;0.7210563 +32659;3;0.082839966;-0.044265747;-0.19120789 +32659;1;-0.3182283;4.0975003;8.907599 +32659;0;-0.5158386;4.2378845;8.974915 +32660;3;0.08343506;-0.044265747;-0.19242859 +32661;4;14.593506;-20.541382;-51.14746 +32661;6;-1.2746017;-0.44051862;0.057412438 +32661;7;0.2679995;-0.8651421;0.42391676;0.0;0.96202004;0.26401684;-0.06937401;0.0;-0.05190279 +32661;0;-0.47763062;4.2711487;8.989227 +32661;3;0.08099365;-0.04548645;-0.1973114 +32662;12;0.14635329;0.15715016;0.6584424;0.7213447 +32664;0;-0.49671936;4.256897;8.974915 +32664;1;-0.32036194;4.100852;8.90598 +32664;2;0.13376793;-0.09867334;-0.11672211; +32665;3;0.078552246;-0.0460968;-0.20097351 +32668;0;-0.49671936;4.256897;8.936752 +32669;12;0.14649293;0.1572821;0.6580563;0.7216399 +32669;3;0.07489014;-0.047317505;-0.20524597 +32669;0;-0.48239136;4.2854004;8.931976 +32669;1;-0.3225855;4.103983;8.904458 +32669;3;0.074279785;-0.047927856;-0.21012878 +32672;4;13.542175;-20.541382;-49.647522 +32672;6;-1.2830373;-0.44677502;0.053954817 +32672;7;0.26104882;-0.8647634;0.42899632;0.0;0.96409976;0.2559474;-0.07073057;0.0;-0.048635293 +32672;0;-0.49671936;4.2616425;8.946289 +32672;3;0.070617676;-0.047317505;-0.21380615 +32672;12;0.14662483;0.15740488;0.65765375;0.7219533 +32673;0;-0.49671936;4.2711487;8.965378 +32673;1;-0.32495302;4.1068945;8.903029 +32673;3;0.06695557;-0.043045044;-0.22052002 +32676;0;-0.47763062;4.2711487;8.941528 +32676;3;0.062057495;-0.040603638;-0.22174072 +32676;12;0.14674625;0.15752238;0.6572405;0.72227925 +32678;1;-0.32772183;4.1094594;8.901744 +32678;0;-0.47763062;4.2711487;8.941528 +32678;3;0.057785034;-0.03816223;-0.22479248 +32680;4;14.143372;-19.940186;-49.79706 +32680;6;-1.2558676;-0.44507518;0.053366393 +32680;7;0.2874724;-0.85818815;0.4252914;0.0;0.95657825;0.27957243;-0.08244724;0.0;-0.04814449 +32681;0;-0.49671936;4.290146;8.874756 +32681;3;0.05229187;-0.03755188;-0.22723389 +32683;0;-0.5110626;4.266403;8.855682 +32684;2;0.10885167;-0.12892485;-0.040187836; +32684;1;-0.3308131;4.1116676;8.90061 +32684;12;0.14684257;0.15764171;0.65681595;0.72261965 +32685;3;0.047409058;-0.03816223;-0.2290802 +32685;0;-0.5397186;4.280655;8.850922 +32686;3;0.045562744;-0.03694153;-0.2315216 +32688;12;0.1469142;0.1577575;0.6563846;0.7229717 +32688;1;-0.3340282;4.1134768;8.899654 +32689;0;-0.5349426;4.2616425;8.879532 +32689;3;0.04067993;-0.03694153;-0.23274231 +32690;5;999.5958 +32691;4;12.643433;-19.491577;-50.39673 +32691;6;-1.1333777;-0.44676498;0.06017174 +32691;7;0.39930063;-0.8169387;0.41613722;0.0;0.9152146;0.38202575;-0.12821284;0.0;-0.054233108 +32691;0;-0.5636139;4.2616425;8.884293 +32691;3;0.03640747;-0.035720825;-0.23518372 +32692;0;-0.6018219;4.275894;8.898605 +32692;1;-0.3374259;4.1149173;8.89886 +32693;3;0.03152466;-0.035720825;-0.23579407 +32695;12;0.14733887;0.15751797;0.65426004;0.72486085 +32695;12;0.14737278;0.15761393;0.65382266;0.7252276 +32695;0;-0.59706116;4.256897;8.865219 +32695;3;0.026626587;-0.034500122;-0.23640442 +32699;1;-0.34092134;4.115951;8.898249 +32699;0;-0.5779419;4.275894;8.889069 +32699;3;0.022964478;-0.03387451;-0.23701477 +32699;4;13.093567;-19.940186;-49.49646 +32699;6;-1.2058338;-0.44753206;0.06492577 +32699;7;0.3299351;-0.84214133;0.4265453;0.0;0.94218993;0.3217646;-0.093519405;0.0;-0.058490623 +32700;0;-0.6113739;4.2473907;8.927231 +32700;12;0.14738697;0.15769677;0.65338564;0.7256005 +32702;17;1;38dead6d7725;15765;1110;-80; +32703;17;1;38dead6d60ff;7458;5355;-73; +32703;17;1;1c1bb5efa29a;7876;2897;-68; +32703;17;0;1c1bb5ecd182;0;0;0; +32704;3;0.019302368;-0.035095215;-0.23884583 +32704;0;-0.6687012;4.252136;8.941528 +32704;1;-0.3445441;4.116587;8.897815 +32704;3;0.015029907;-0.030822754;-0.23884583 +32704;2;0.19074407;-0.11695337;-0.010546684; +32704;0;-0.63049316;4.2426453;8.984451 +32704;12;0.14738205;0.15776902;0.6529484;0.7259793 +32705;3;0.011367798;-0.026550293;-0.23945618 +32707;0;-0.63049316;4.280655;8.974915 +32707;1;-0.34841645;4.1168675;8.897534 +32707;3;0.0052490234;-0.024108887;-0.24067688 +32709;4;12.643433;-18.141174;-50.39673 +32709;6;-1.0183411;-0.4440888;0.070135385 +32709;7;0.49785963;-0.7686706;0.4015984;0.0;0.8649459;0.47387666;-0.16525616;0.0;-0.06328052 +32709;0;-0.6257019;4.256897;9.036911 +32710;3;-2.4414062E-4;-0.022277832;-0.23823547 +32710;12;0.14787047;0.15736152;0.6501586;0.728468 +32711;0;-0.64482117;4.275894;9.075058 +32712;1;-0.3525234;4.116652;8.897472 +32712;3;-0.006958008;-0.02166748;-0.23762512 +32714;0;-0.68782043;4.290146;9.103683 +32714;12;0.147814;0.15742384;0.6497282;0.7288498 +32714;3;-0.012466431;-0.022277832;-0.23518372 +32716;0;-0.73558044;4.290146;9.127518 +32716;1;-0.35671306;4.115911;8.897648 +32716;3;-0.018554688;-0.023498535;-0.23518372 +32718;4;12.792969;-19.940186;-50.546265 +32718;6;-1.1630461;-0.43813515;0.08041553 +32718;7;0.36397785;-0.8313036;0.42006478;0.0;0.92856276;0.35908905;-0.09394798;0.0;-0.072741374 +32719;0;-0.75468445;4.2949066;9.179993 +32719;3;-0.023452759;-0.025939941;-0.23335266 +32719;12;0.14773218;0.15747003;0.6493075;0.7292313 +32721;0;-0.7929077;4.2711487;9.222916 +32721;1;-0.36081225;4.1146355;8.898073 +32721;2;0.2762836;-0.13064003;-0.20625782; +32721;3;-0.030166626;-0.028381348;-0.2315216 +32723;0;-0.7785797;4.2949066;9.213379 +32724;12;0.14763284;0.15749271;0.6488936;0.7296148 +32724;3;-0.032608032;-0.02960205;-0.22969055 +32726;0;-0.7642517;4.3519135;8.76506 +32726;1;-0.36466482;4.113077;8.898636 +32726;3;-0.02406311;-0.017990112;-0.22845459 +32727;5;999.5958 +32729;4;12.792969;-19.340515;-50.247192 +32729;6;-1.0025778;-0.4593426;0.08697301 +32729;7;0.5036374;-0.7554936;0.41902146;0.0;0.8603996;0.48235092;-0.16446978;0.0;-0.077859506 +32731;0;-0.68304443;4.3329163;9.017838 +32731;3;0.0052490234;0.0076446533;-0.22418213 +32731;12;0.14787266;0.15718418;0.64693314;0.73137164 +32734;0;-0.68304443;4.275894;9.48999 +32734;3;0.02418518;0.024139404;-0.21807861 +32734;1;-0.36930022;4.1123033;8.898803 +32734;0;-0.90278625;4.2046356;9.59491 +32734;12;0.14775899;0.15724793;0.64653623;0.7317317 +32734;3;0.030303955;0.052856445;-0.2107544 +32735;0;-0.93621826;4.185623;9.318314 +32735;1;-0.37585056;4.1128826;8.898261 +32735;3;0.038238525;0.09072876;-0.2119751 +32737;4;12.792969;-19.340515;-50.247192 +32737;6;-1.1700809;-0.4203;0.10013475 +32737;7;0.35056436;-0.8406433;0.41282377;0.0;0.932081;0.35612747;-0.06631932;0.0;-0.09126698 +32738;0;-0.86935425;4.214142;9.065521 +32738;3;0.049850464;0.11515808;-0.21380615 +32738;12;0.14764725;0.15745035;0.64615965;0.7320434 +32740;0;-0.859787;4.2616425;9.036911 +32740;1;-0.3850744;4.11442;8.897156 +32740;2;0.37501392;-0.121101856;-0.30666542; +32740;3;0.06878662;0.12677002;-0.2119751 +32742;0;-0.87890625;4.2426453;9.213379 +32742;12;0.14747064;0.15779302;0.6458016;0.7323211 +32743;3;0.08528137;0.13409424;-0.20463562 +32745;0;-0.9792175;4.2711487;9.365997 +32745;1;-0.39542574;4.117256;8.89539 +32745;3;0.0962677;0.14265442;-0.20036316 +32747;4;14.442444;-19.940186;-49.49646 +32747;6;-1.2764146;-0.4258063;0.104171805 +32747;7;0.247472;-0.8715289;0.42331412;0.0;0.96425605;0.26423964;-0.01968722;0.0;-0.09469839 +32748;0;-0.9696655;4.2854004;9.361221 +32748;3;0.09994507;0.14875793;-0.1973114 +32749;12;0.14730567;0.15823162;0.64544433;0.7325745 +32750;0;-0.9219055;4.356659;9.146606 +32750;1;-0.40625095;4.12108;8.89313 +32750;3;0.10054016;0.14936829;-0.1973114 +32752;0;-0.897995;4.3614197;8.898605 +32752;12;0.14716874;0.15873474;0.6451037;0.7327933 +32752;3;0.098098755;0.13775635;-0.1973114 +32754;0;-0.9696655;4.380417;8.793686 +32754;1;-0.41703293;4.1252346;8.890705 +32755;3;0.09750366;0.11088562;-0.1973114 +32757;4;14.442444;-19.940186;-49.49646 +32757;6;-1.0895967;-0.45974484;0.10982469 +32757;7;0.4169437;-0.7943976;0.44169062;0.0;0.90360963;0.41478392;-0.10697759;0.0;-0.0982234 +32757;0;-1.0222168;4.3281555;8.874756 +32757;3;0.098724365;0.07789612;-0.1985321 +32758;12;0.14703752;0.15924527;0.64476055;0.73301077 +32760;0;-1.0413208;4.290146;8.946289 +32760;3;0.098098755;0.049804688;-0.20036316 +32761;1;-0.42578784;4.12919;8.8884535 +32761;2;0.48633322;-0.15616894;-0.20263958; +32762;0;-0.98876953;4.3376617;9.017838 +32762;12;0.1469754;0.15965986;0.6444024;0.733248 +32762;3;0.090774536;0.025970459;-0.1985321 +32764;0;-0.99354553;4.3614197;8.941528 +32764;3;0.08343506;0.00642395;-0.1973114 +32764;1;-0.43209523;4.1329813;8.886387 +32766;5;999.5958 +32767;0;-0.97442627;4.389923;8.865219 +32767;3;0.0791626;-0.014328003;-0.19670105 +32767;4;13.243103;-19.491577;-48.446655 +32767;6;-1.0592906;-0.4574047;0.10947618 +32767;7;0.44448563;-0.7823675;0.43627253;0.0;0.89040637;0.43917197;-0.11960177;0.0;-0.098026134 +32767;12;0.14699876;0.15997265;0.6440223;0.733509 +32769;0;-0.9601135;4.3946686;8.822296 +32769;3;0.07305908;-0.03755188;-0.19792175 +32770;1;-0.43655095;4.136328;8.884611 +32773;0;-0.97442627;4.3994293;8.807983 +32773;3;0.07183838;-0.059539795;-0.1973114 +32773;12;0.14707194;0.16018888;0.64361715;0.7338027 +32774;1;-0.43909508;4.139291;8.883107 +32775;0;-0.9219055;4.380417;8.86998 +32775;3;0.07122803;-0.0778656;-0.1985321 +32776;4;13.243103;-19.491577;-48.446655 +32776;6;-1.0808792;-0.45658404;0.10356362 +32776;7;0.42781484;-0.79198503;0.43558487;0.0;0.8990911;0.42235115;-0.11512958;0.0;-0.09278888 +32776;0;-0.9219055;4.3376617;8.960602 +32776;3;0.07122803;-0.08886719;-0.19792175 +32777;12;0.1471916;0.16031124;0.64321876;0.73410124 +32778;0;-0.92666626;4.3329163;8.994003 +32778;1;-0.44012505;4.1420584;8.881765 +32778;2;0.47102445;-0.19630432;-0.043894768; +32779;3;0.07305908;-0.0949707;-0.1973114 +32781;0;-0.90756226;4.3376617;8.989227 +32781;12;0.14735995;0.1603676;0.6428079;0.73441494 +32781;3;0.07733154;-0.09741211;-0.19364929 +32783;0;-0.89323425;4.3329163;8.974915 +32783;1;-0.44052544;4.1449933;8.880376 +32783;3;0.08406067;-0.09863281;-0.19302368 +32786;4;13.093567;-19.940186;-50.546265 +32786;6;-1.0722252;-0.447851;0.099198975 +32786;7;0.43815526;-0.79165184;0.42580202;0.0;0.89445573;0.43101376;-0.11906388;0.0;-0.08926938 +32786;0;-0.874115;4.3614197;9.017838 +32786;3;0.08772278;-0.09863281;-0.19120789 +32787;12;0.14764418;0.16032645;0.6420038;0.73506993 +32788;0;-0.86935425;4.366165;9.094147 +32789;1;-0.44071096;4.1483774;8.878786 +32789;3;0.095047;-0.0949707;-0.18998718 +32790;0;-0.89323425;4.370926;9.117996 +32790;12;0.14786439;0.16037314;0.64159274;0.7353743 +32791;3;0.10542297;-0.087646484;-0.18508911 +32793;0;-0.859787;4.3329163;9.151382 +32793;1;-0.44111866;4.1523213;8.876923 +32794;3;0.113983154;-0.076034546;-0.1802063 +32795;4;13.093567;-19.940186;-50.546265 +32795;6;-1.127602;-0.44050312;0.09367661 +32795;7;0.39091587;-0.8171467;0.42362267;0.0;0.9165293;0.3878904;-0.09754554;0.0;-0.08461011 +32795;0;-0.89323425;4.323395;9.203827 +32795;3;0.12437439;-0.06137085;-0.17713928 +32796;12;0.1480971;0.16044958;0.64118737;0.7356643 +32797;0;-1.0126648;4.2378845;9.4423065 +32798;1;-0.4423989;4.1569066;8.874713 +32798;2;0.41261676;-0.14803123;-0.26477528; +32798;3;0.13415527;-0.035720825;-0.17347717 +32800;0;-0.802475;4.347168;9.179993 +32800;12;0.14832659;0.1605884;0.6407988;0.73592633 +32800;3;0.1439209;-0.0015106201;-0.17166138 +32803;1;-0.445452;4.162591;8.871895 +32803;0;-0.72125244;4.4611816;9.017838 +32803;3;0.15063477;0.019256592;-0.16859436 +32804;5;999.6653 +32805;4;13.093567;-19.641113;-49.046326 +32805;6;-1.1160877;-0.45813784;0.07981075 +32805;7;0.40612432;-0.805745;0.43108928;0.0;0.9110159;0.39390922;-0.12200576;0.0;-0.07150451 +32805;0;-0.802475;4.537201;8.903381 +32805;3;0.16163635;0.030258179;-0.16249084 +32805;12;0.14855118;0.16084072;0.64036554;0.736203 +32807;0;-0.87890625;4.53244;8.989227 +32807;1;-0.45032114;4.169226;8.868532 +32808;3;0.17507935;0.033309937;-0.16065979 +32810;0;-0.9457855;4.5181885;9.146606 +32810;12;0.1487218;0.1612099;0.640016;0.73639166 +32810;3;0.18972778;0.037582397;-0.15759277 +32812;0;-0.94099426;4.57045;9.246765 +32812;1;-0.45562297;4.1768456;8.864676 +32812;3;0.20133972;0.04185486;-0.15333557 +32815;4;11.8927;-19.491577;-48.89679 +32815;6;-0.99104035;-0.4570145;0.10141557 +32815;7;0.50763;-0.75073975;0.42273113;0.0;0.85677177;0.4915992;-0.15579635;0.0;-0.09085177 +32815;0;-1.0126648;4.6322327;9.318314 +32815;3;0.2098999;0.045516968;-0.14538574 +32815;12;0.14892177;0.1616357;0.6396712;0.73655754 +32817;0;-1.0126648;4.7700043;9.203827 +32817;1;-0.4611515;4.185583;8.860268 +32817;2;0.38429123;-0.33337116;-0.28077507; +32817;3;0.21539307;0.04673767;-0.13745117 +32819;0;-0.9983368;4.850769;9.041687 +32819;12;0.14916484;0.16211997;0.6393349;0.7366939 +32819;3;0.21966553;0.041244507;-0.1313324 +32821;0;-0.9553375;4.9552917;8.917694 +32822;1;-0.46636415;4.1952047;8.855443 +32822;3;0.22517395;0.03147888;-0.12889099 +32824;4;13.093567;-19.041443;-49.046326 +32824;6;-0.79858655;-0.5047669;0.1067213 +32824;7;0.6568481;-0.62703;0.41878855;0.0;0.7482365;0.6107053;-0.25919312;0.0;-0.09323457 +32824;0;-0.897995;4.9647827;8.965378 +32824;3;0.22576904;0.01864624;-0.12828064 +32825;12;0.14980192;0.16229974;0.6374186;0.7381841 +32826;0;-0.874115;4.7557526;9.208603 +32827;1;-0.4705519;4.2051115;8.850521 +32827;3;0.22210693;0.021697998;-0.1325531 +32829;0;-0.49671936;4.874527;9.098923 +32829;12;0.15012869;0.16276212;0.6371052;0.7382865 +32829;3;0.21295166;0.039413452;-0.14782715 +32831;0;-0.20533752;5.0788116;8.86998 +32832;1;-0.47448343;4.2147703;8.845716 +32832;3;0.19706726;0.057128906;-0.16065979 +32833;4;14.143372;-20.39032;-49.49646 +32833;6;-1.0737166;-0.51990145;0.023145583 +32833;7;0.46662676;-0.76283777;0.44759122;0.0;0.8842262;0.41385216;-0.21649568;0.0;-0.020085521 +32834;0;-0.16711426;5.2355957;8.731674 +32834;3;0.18179321;0.0717926;-0.16981506 +32834;12;0.15046474;0.16322485;0.63677853;0.7383977 +32837;0;-0.17666626;5.311615;8.612442 +32837;1;-0.48012352;4.2236614;8.841169 +32837;2;0.07246745;-0.7544904;-0.104227066; +32837;3;0.17140198;0.08950806;-0.1802063 +32838;0;-0.138443;5.3401184;8.536133 +32839;12;0.15070286;0.16372356;0.63642865;0.7385404 +32839;3;0.16712952;0.11088562;-0.18630981 +32841;0;-0.147995;5.2688446;8.598129 +32841;3;0.1622467;0.13349915;-0.19058228 +32841;1;-0.48760065;4.2317343;8.836899 +32842;5;999.6653 +32843;4;14.143372;-19.340515;-49.046326 +32843;6;-0.96271884;-0.5497046;0.017210765 +32843;7;0.5638266;-0.69983435;0.43855613;0.0;0.8257628;0.48712745;-0.28429323;0.0;-0.014674531 +32843;0;-0.13366699;5.2355957;8.555222 +32844;3;0.15736389;0.15792847;-0.19180298 +32844;12;0.15091746;0.16418728;0.6357271;0.73899776 +32845;0;-0.5301666;5.311615;8.450302 +32846;1;-0.49741387;4.2393694;8.832691 +32846;3;0.14941406;0.18418884;-0.19120789 +32849;0;-0.36775208;5.2688446;8.402588 +32849;12;0.15096138;0.16480596;0.6353687;0.73915917 +32849;3;0.1427002;0.2019043;-0.19302368 +32850;0;-0.157547;5.2450867;8.421677 +32850;1;-0.5091459;4.2464414;8.828625 +32851;3;0.13230896;0.2177887;-0.19242859 +32853;4;13.842773;-19.79065;-48.89679 +32853;6;-0.9532992;-0.55694294;0.018705139 +32853;7;0.570834;-0.69211346;0.4417325;0.0;0.82091206;0.49149552;-0.29075024;0.0;-0.0158774 +32853;0;-0.13366699;5.321106;8.402588 +32853;3;0.12008667;0.2373352;-0.18814087 +32854;12;0.15091865;0.16547519;0.6350341;0.7393059 +32855;0;-0.22442627;5.378128;8.478897 +32855;1;-0.52216953;4.2527347;8.824834 +32855;2;-0.33744347;-1.0212107;0.33064175; +32856;3;0.10360718;0.25993347;-0.18203735 +32861;99;3 +32861;0;-0.2722168;5.4636383;8.526611 +32861;12;0.15078898;0.1661807;0.6347214;0.7394427 +32862;3;0.08465576;0.28559875;-0.17410278 +32862;0;-0.2960968;5.5063934;8.564758 +32862;1;-0.53697294;4.257748;8.821528 +32862;3;0.06022644;0.31307983;-0.16920471 +32864;4;13.542175;-19.491577;-47.69745 +32864;6;-0.8902471;-0.5711053;0.034557767 +32864;7;0.6143281;-0.6538844;0.44162896;0.0;0.7885151;0.5293653;-0.3130756;0.0;-0.029067803 +32864;0;-0.29130554;5.4256287;8.598129 +32865;3;0.03640747;0.33996582;-0.1643219 +32865;12;0.15055038;0.16690175;0.6344008;0.739604 +32865;0;-0.3295288;5.344864;8.602905 +32865;1;-0.5538281;4.260699;8.81906 +32866;3;0.0064697266;0.36561584;-0.15881348 +32868;0;-0.3390808;5.302109;8.555222 +32869;12;0.15013327;0.16765162;0.6341965;0.7396944 +32869;3;-0.02406311;0.3869934;-0.15393066 +32870;0;-0.36297607;5.278351;8.507523 +32870;1;-0.57260644;4.2611947;8.817622 +32870;3;-0.05949402;0.4028778;-0.14660645 +32872;4;14.442444;-18.740845;-48.59619 +32872;6;-0.8916619;-0.5549014;0.042639446 +32872;7;0.61007375;-0.6613622;0.43636015;0.0;0.79151595;0.5338719;-0.2974617;0.0;-0.03623052 +32872;0;-0.46328735;5.321106;8.474136 +32873;12;0.14954247;0.16840264;0.6340502;0.73976886 +32873;3;-0.09736633;0.40960693;-0.14292908 +32874;0;-0.5922699;5.240341;8.497986 +32874;1;-0.59262466;4.258781;8.817465 +32874;2;-0.2691027;-1.082201;0.2640667; +32875;3;-0.13523865;0.40838623;-0.14111328 +32876;0;-0.72125244;5.2023315;8.559982 +32877;12;0.14877567;0.16910148;0.6339613;0.73984027 +32877;3;-0.1712799;0.39738464;-0.14170837 +32879;0;-0.8215637;5.0930634;8.607666 +32879;1;-0.6127302;4.253;8.818881 +32879;3;-0.20915222;0.37783813;-0.14170837 +32880;5;999.6653 +32881;4;13.243103;-20.240784;-48.147583 +32881;6;-0.8525556;-0.5323012;0.095157325 +32881;7;0.6187752;-0.6487855;0.44293872;0.0;0.78129053;0.56701267;-0.26092455;0.0;-0.081867814 +32882;0;-0.9457855;4.9790497;8.745987 +32882;3;-0.24641418;0.35157776;-0.14355469 +32883;12;0.14786783;0.16967396;0.6338922;0.7399504 +32884;13;353.72998 +32887;0;-1.0747681;4.9030304;8.893829 +32887;1;-0.63152593;4.2436943;8.822038 +32887;3;-0.2842865;0.31796265;-0.14233398 +32887;0;-1.1607513;4.7890015;9.132294 +32887;3;-0.32217407;0.28375244;-0.13989258 +32887;12;0.1468598;0.17006196;0.63385254;0.74009603 +32888;0;-1.2132874;4.717743;9.318314 +32889;1;-0.64776;4.2307734;8.8270645 +32889;3;-0.35758972;0.24772644;-0.13560486 +32891;4;14.143372;-19.641113;-49.49646 +32891;6;-0.96498233;-0.46528578;0.1294762 +32891;7;0.51704353;-0.7346507;0.4392657;0.0;0.84814584;0.50889707;-0.14721557;0.0;-0.115389 +32891;0;-1.3327179;4.646469;9.499542 +32891;3;-0.39302063;0.21534729;-0.1301117 +32892;12;0.14579707;0.17021179;0.63382477;0.7402954 +32893;0;-1.4043732;4.546707;9.699844 +32893;1;-0.66114324;4.214368;8.833918 +32894;2;0.37962222;-0.6271486;-0.23531628; +32894;3;-0.42356873;0.18418884;-0.12583923 +32896;0;-1.4951324;4.503952;9.804764 +32896;12;0.14469151;0.17011881;0.6338171;0.7405403 +32898;1;-0.67173564;4.195157;8.842258 +32898;3;-0.44677734;0.15060425;-0.12034607 +32900;0;-1.552475;4.404175;9.976471 +32900;3;-0.46876526;0.12249756;-0.11483765 +32901;17;1;38dead6d7725;11117;3520;-83; +32901;17;1;38dead6d60ff;10971;2184;-78; +32901;17;1;1c1bb5efa29a;5607;5133;-68; +32901;17;1;1c1bb5ecd182;-2445;896;-39; +32901;4;14.442444;-19.340515;-48.29712 +32901;6;-1.2543495;-0.41132402;0.1543755 +32901;7;0.24906561;-0.87108076;0.423302;0.0;0.95817673;0.28523603;0.02318617;0.0;-0.14093801 +32901;0;-1.605011;4.290146;10.10524 +32901;3;-0.48527527;0.09500122;-0.110565186 +32901;12;0.14358085;0.16979672;0.63376683;0.7408734 +32903;0;-1.6623383;4.209381;10.272156 +32903;1;-0.67965716;4.173989;8.8516655 +32903;3;-0.4950409;0.0717926;-0.10324097 +32905;0;-1.7101135;4.1286316;10.439087 +32905;12;0.14246781;0.16930929;0.63379467;0.74117595 +32906;3;-0.49443054;0.05529785;-0.09712219 +32909;0;-1.7148895;4.0811005;10.620316 +32909;1;-0.6854444;4.1518283;8.861636 +32909;3;-0.48954773;0.041244507;-0.09162903 +32910;4;15.04364;-20.690918;-49.046326 +32910;6;-1.7564733;-0.36258698;0.16009073 +32910;7;-0.23782043;-0.9189114;0.3147114;0.0;0.959806;-0.17260891;0.22131127;0.0;-0.14904347 +32910;0;-1.7101135;3.9718475;10.796783 +32910;3;-0.4791565;0.033920288;-0.086135864 +32911;12;0.14138721;0.1687003;0.63383734;0.7414851 +32912;0;-1.7053375;3.9053192;10.916 +32913;1;-0.68984383;4.1298604;8.871554 +32913;2;0.91321695;-0.03736782;-1.5072613; +32913;3;-0.46144104;0.03514099;-0.08123779 +32915;12;0.14036341;0.1680476;0.63388807;0.7417844 +32916;0;-1.6336823;3.8958282;10.99231 +32916;3;-0.43762207;0.045516968;-0.07635498 +32917;0;-1.6480103;3.8293152;11.073395 +32917;1;-0.6940492;4.1092753;8.88078 +32917;3;-0.40707397;0.06262207;-0.07208252 +32919;5;999.6653 +32920;4;15.193176;-18.89038;-47.69745 +32920;6;-1.8016015;-0.3295704;0.14774169 +32920;7;-0.27264687;-0.9210911;0.27794763;0.0;0.95197904;-0.21644984;0.21653032;0.0;-0.13928245 +32920;0;-1.6193542;3.7770538;11.078171 +32920;3;-0.37286377;0.084625244;-0.065979004 +32921;12;0.13939942;0.16744228;0.6339383;0.7420601 +32922;0;-1.6336823;3.7390442;11.049545 +32922;1;-0.69945186;4.0911484;8.888721 +32922;3;-0.3319397;0.108444214;-0.061080933 +32924;0;-1.6098022;3.7105408;10.997086 +32925;12;0.13849197;0.16698267;0.6339982;0.74228233 +32925;3;-0.28918457;0.13287354;-0.054367065 +32927;0;-1.585907;3.606018;10.958939 +32927;1;-0.7066103;4.0763764;8.894939 +32927;3;-0.24092102;0.15730286;-0.050689697 +32930;4;14.143372;-18.740845;-49.046326 +32930;6;-1.8714317;-0.31482497;0.14371587 +32930;7;-0.33543372;-0.90820354;0.25030088;0.0;0.9321687;-0.28157264;0.22754839;0.0;-0.13618238 +32930;0;-1.5238037;3.5870209;10.949402 +32930;3;-0.19265747;0.18235779;-0.0488739 +32931;12;0.13765691;0.1667183;0.6340625;0.74244213 +32932;0;-1.4999237;3.5347595;10.954163 +32932;1;-0.7156067;4.065545;8.899178 +32932;2;0.83919924;0.3778615;-2.1209145; +32932;3;-0.14318848;0.20800781;-0.045196533 +32934;0;-1.4282684;3.5109863;10.892166 +32934;12;0.13691764;0.16667604;0.63412046;0.74253887 +32934;3;-0.09187317;0.23428345;-0.041534424 +32936;0;-1.3852692;3.4634857;10.849258 +32937;1;-0.7265445;4.058925;8.901313 +32937;3;-0.04055786;0.26298523;-0.04031372 +32939;4;13.842773;-20.541382;-48.147583 +32939;6;-2.1165447;-0.3066759;0.12699613 +32939;7;-0.5475598;-0.8148589;0.19021897;0.0;0.82800895;-0.49483997;0.2636942;0.0;-0.12074562 +32939;0;-1.2992706;3.449234;10.725235 +32939;3;0.011367798;0.29414368;-0.03970337 +32940;12;0.13628215;0.16686916;0.63416773;0.742572 +32941;0;-1.2324066;3.4112244;10.606003 +32941;1;-0.7397111;4.056718;8.901235 +32941;3;0.06388855;0.32225037;-0.03543091 +32943;0;-1.1129761;3.3542175;10.544006 +32944;12;0.13574833;0.16731386;0.6341996;0.7425425 +32944;3;0.11705017;0.35217285;-0.034820557 +32946;0;-0.98399353;3.2971954;10.462921 +32946;1;-0.75502276;4.058952;8.898931 +32946;3;0.16835022;0.38150024;-0.034210205 +32949;4;13.842773;-18.89038;-48.147583 +32949;6;-1.9113246;-0.30402055;0.093769975 +32949;7;-0.3589381;-0.8993523;0.24965759;0.0;0.92907596;-0.31866875;0.18779823;0.0;-0.08933868 +32949;0;-0.91233826;3.244934;10.415237 +32949;3;0.21783447;0.41326904;-0.03543091 +32950;12;0.13531783;0.16800992;0.63421917;0.7424472 +32951;0;-0.7833557;3.1879272;10.362778 +32951;1;-0.77263314;4.065475;8.89444 +32951;2;0.3310855;0.72570705;-1.7277336; +32951;3;0.26608276;0.44563293;-0.03543091 +32953;0;-0.68782043;3.178421;10.262619 +32954;12;0.13498269;0.16895835;0.6342192;0.74229294 +32954;3;0.31436157;0.47740173;-0.037872314 +32956;0;-0.6113739;3.1926727;10.100464 +32956;1;-0.7927442;4.0761504;8.887782 +32956;3;0.3607788;0.5073395;-0.04336548 +32957;5;999.6295 +32958;4;14.743042;-18.740845;-48.29712 +32958;6;-1.8276349;-0.30562854;0.06045553 +32958;7;-0.27114335;-0.922376;0.27514327;0.0;0.9608128;-0.24225219;0.13473123;0.0;-0.057618786 +32958;0;-0.5349426;3.145172;9.962158 +32959;3;0.40538025;0.5317688;-0.05253601 +32959;12;0.13474335;0.17015421;0.6341391;0.74213165 +32960;0;-0.41552734;3.1071625;9.871536 +32961;1;-0.8152959;4.0907326;8.879038 +32961;3;0.44813538;0.5549927;-0.06047058 +32963;0;-0.39163208;3.102417;9.761841 +32963;12;0.13456789;0.17160073;0.63407886;0.74188185 +32963;3;0.484787;0.5769806;-0.07086182 +32965;0;-0.30085754;3.0738983;9.633072 +32965;1;-0.84011906;4.108909;8.868324 +32965;3;0.51594543;0.59469604;-0.08123779 +32969;4;13.693237;-18.740845;-48.29712 +32969;6;-1.8166698;-0.30874375;0.031221585 +32969;7;-0.2524853;-0.92406315;0.28698155;0.0;0.9671435;-0.23189458;0.10420278;0.0;-0.029740471 +32969;0;-0.3390808;3.0976562;9.4804535 +32969;3;0.5409851;0.61058044;-0.08857727 +32970;12;0.13446735;0.17327054;0.633966;0.7416084 +32971;0;-0.48718262;3.145172;9.189545 +32971;3;0.56114197;0.6166992;-0.097732544 +32971;1;-0.86676073;4.1296277;8.856129 +32971;2;-0.43494153;1.0270977;-0.943532; +32972;0;-1.0174255;3.1546783;8.970154 +32973;12;0.13440819;0.17512009;0.6337978;0.74132836 +32973;3;0.57458496;0.5891876;-0.11605835 +32977;1;-0.89452785;4.1519365;8.842926 +32979;12;0.13442163;0.17702018;0.6335105;0.7411203 +32980;1;-0.92021364;4.174867;8.829485 +32980;0;-0.874115;3.1831818;9.4470825 +32980;3;0.5794678;0.5513153;-0.13438416 +32980;4;14.442444;-19.340515;-47.846985 +32980;6;-1.8405944;-0.32371318;0.0922648 +32980;7;-0.2936498;-0.91376454;0.280721;0.0;0.95191383;-0.25269315;0.17322284;0.0;-0.08734859 +32980;0;-0.67349243;3.3114624;9.561539 +32980;3;0.58680725;0.55682373;-0.1325531 +32980;0;-0.5683899;3.5014954;9.4423065 +32980;3;0.5923004;0.57270813;-0.118499756 +32982;0;-0.64004517;3.6202698;9.275375 +32982;12;0.13453197;0.17888243;0.63321304;0.7409072 +32983;3;0.60084534;0.5818634;-0.10446167 +32984;0;-0.68782043;3.6772919;8.951065 +32985;1;-0.9464605;4.198822;8.81534 +32985;3;0.613678;0.5861511;-0.10139465 +32987;4;14.892578;-18.141174;-47.247314 +32987;6;-1.4378749;-0.38876688;0.07669159 +32988;7;0.10335568;-0.91721433;0.38475358;0.0;0.9921143;0.12264054;0.025852948;0.0;-0.0708991 +32988;0;-0.65914917;3.6345215;8.593384 +32988;3;0.6240692;0.5806427;-0.106292725 +32988;12;0.13465141;0.18081439;0.632951;0.74064046 +32990;0;-0.64482117;3.6012573;8.445526 +32990;1;-0.97278523;4.223917;8.800473 +32990;2;-0.29155958;0.7926221;-0.30386448; +32990;3;0.63139343;0.5635376;-0.11178589 +32992;0;-0.6018219;3.5442505;8.512299 +32992;12;0.13480638;0.18278594;0.63269275;0.7403489 +32992;3;0.6320038;0.5360565;-0.11605835 +32994;0;-0.6161499;3.5347595;8.703064 +32994;1;-0.9977679;4.2492757;8.785456 +32994;3;0.62101746;0.5122223;-0.12094116 +32995;5;999.6295 +32996;4;15.792847;-19.340515;-47.546387 +32996;6;-1.5464228;-0.38492706;0.070678964 +32996;7;-0.002199198;-0.92655057;0.3761639;0.0;0.9978532;0.022587705;0.06147089;0.0;-0.06545256 +32997;0;-0.5540619;3.6107635;8.65538 +32997;3;0.60513306;0.49635315;-0.13072205 +32997;12;0.13508886;0.1846668;0.6321548;0.7402901 +32999;0;-0.49195862;3.729538;8.502762 +32999;1;-1.0208957;4.273882;8.77085 +32999;3;0.58680725;0.48413086;-0.1459961 +33001;12;0.13535976;0.18649402;0.6318309;0.7400592 +33001;0;-0.43463135;3.8530579;8.369217 +33002;3;0.56848145;0.47129822;-0.16003418 +33003;0;-0.41073608;3.8863068;8.288132 +33004;1;-1.0432788;4.2971597;8.756831 +33004;3;0.54893494;0.45358276;-0.17591858 +33006;4;15.342712;-19.641113;-47.096252 +33006;6;-1.3818283;-0.43798843;0.04951663 +33006;7;0.16699655;-0.88948554;0.42535582;0.0;0.9849379;0.17011407;-0.030955821;0.0;-0.04482426 +33006;0;-0.38208008;3.9195862;8.292908 +33007;3;0.5312042;0.437088;-0.18814087 +33007;12;0.13560595;0.18823181;0.6314636;0.7398876 +33009;0;-0.40596008;3.9005737;8.292908 +33009;1;-1.0648189;4.318704;8.74363 +33009;2;-0.61819077;0.6008992;0.2718544; +33009;3;0.5116577;0.42182922;-0.20097351 +33011;0;-0.40596008;3.8815765;8.2070465 +33011;12;0.1358204;0.18986298;0.6310497;0.7397846 +33011;3;0.4921112;0.40838623;-0.21685791 +33013;0;-0.40596008;3.8150635;8.111679 +33013;1;-1.0856397;4.3384333;8.731294 +33014;3;0.47073364;0.39494324;-0.2303009 +33015;4;14.743042;-19.940186;-47.546387 +33015;6;-1.3745648;-0.4391393;0.050004646 +33015;7;0.17388764;-0.8877472;0.42622533;0.0;0.9837258;0.17647506;-0.033767384;0.0;-0.045241244 +33016;0;-0.38685608;3.796051;8.073517 +33016;3;0.45118713;0.37661743;-0.24433899 +33016;12;0.13643546;0.19108;0.62891656;0.7411732 +33018;0;-0.3534088;3.7913055;8.016281 +33018;1;-1.1057475;4.3562303;8.719902 +33018;3;0.43103027;0.35829163;-0.25534058 +33020;0;-0.3534088;3.7675476;8.059219 +33021;12;0.13657694;0.19249694;0.6284196;0.74120206 +33021;3;0.41453552;0.33874512;-0.26756287 +33023;0;-0.34864807;3.8055573;8.08783 +33023;1;-1.1247475;4.3722143;8.709466 +33023;3;0.39437866;0.32164;-0.27488708 +33025;4;14.743042;-20.39032;-45.89691 +33025;6;-1.4672801;-0.4394365;0.04308107 +33025;7;0.08501127;-0.9001471;0.42720982;0.0;0.99561733;0.09351401;-0.0010822229;0.0;-0.038975947 +33025;0;-0.3390808;3.8103027;8.08783 +33025;3;0.3754425;0.31002808;-0.28404236 +33026;12;0.13669568;0.19379576;0.6278843;0.74129534 +33027;0;-0.3199768;3.7770538;8.111679 +33028;1;-1.1427068;4.3864546;8.699963 +33028;2;-0.8208759;0.6104431;0.58493614; +33028;3;0.355896;0.29963684;-0.2919922 +33030;0;-0.3438568;3.753296;8.054443 +33030;12;0.13678592;0.19498126;0.6273236;0.74144256 +33031;3;0.33940125;0.29109192;-0.296875 +33032;0;-0.36775208;3.7580414;8.054443 +33033;1;-1.1601511;4.39898;8.691325 +33033;3;0.3265686;0.28009033;-0.30480957 +33034;5;999.6295 +33035;4;15.04364;-19.340515;-46.647644 +33035;6;-1.3833979;-0.43615705;0.0456266 +33035;7;0.16717823;-0.8905132;0.42312863;0.0;0.9850596;0.16886207;-0.033811517;0.0;-0.041340772 +33035;0;-0.35820007;3.7105408;8.040131 +33035;3;0.31314087;0.27398682;-0.30970764 +33036;12;0.1373519;0.19571663;0.6247868;0.743284 +33037;0;-0.39640808;3.7010345;8.044907 +33037;1;-1.1772346;4.41024;8.683318 +33037;3;0.30336;0.26420593;-0.31459045 +33039;0;-0.39640808;3.6582794;8.06398 +33040;12;0.13736741;0.1967478;0.6241883;0.7435117 +33040;3;0.29481506;0.25810242;-0.32009888 +33042;0;-0.37728882;3.663025;8.078278 +33042;1;-1.193754;4.4203835;8.675902 +33042;3;0.28503418;0.25505066;-0.3274231 +33044;4;15.492249;-20.240784;-46.946716 +33044;6;-1.4800017;-0.42530245;0.046670202 +33044;7;0.071401596;-0.9071619;0.41467947;0.0;0.99654186;0.08259257;0.009091724;0.0;-0.04249711 +33045;0;-0.39640808;3.6297607;8.140289 +33045;3;0.27708435;0.2507782;-0.33232117 +33045;12;0.13736211;0.19771138;0.6235802;0.7437672 +33047;0;-0.43940735;3.5965118;8.187988 +33047;1;-1.2102225;4.4295464;8.668943 +33047;2;-0.87005913;0.7757015;0.5642023; +33047;3;0.26914978;0.2495575;-0.33720398 +33049;0;-0.4298401;3.591751;8.2165985 +33050;12;0.13732451;0.19863364;0.62295526;0.74405205 +33050;3;0.25938416;0.2495575;-0.34269714 +33052;1;-1.2267535;4.437849;8.662372 +33052;0;-0.41552734;3.591751;8.226135 +33052;3;0.24838257;0.2507782;-0.34880066 +33054;4;15.04364;-19.940186;-45.89691 +33054;6;-1.5434259;-0.41121024;0.050470173 +33054;7;0.0071743173;-0.9162944;0.40044114;0.0;0.99890447;0.025085568;0.0395047;0.0;-0.046243228 +33055;0;-0.43940735;3.548996;8.316757 +33055;3;0.24104309;0.25138855;-0.35246277 +33056;12;0.13766447;0.19924338;0.6207993;0.74562657 +33058;0;-0.45851135;3.5347595;8.292908 +33058;3;0.23432922;0.2544403;-0.3591919 +33058;1;-1.2435932;4.445126;8.656238 +33060;0;-0.49195862;3.5062408;8.273819 +33060;3;0.22761536;0.25749207;-0.36224365 +33060;12;0.13754933;0.20010926;0.6201526;0.7459539 +33063;0;-0.5445099;3.4729767;8.302444 +33063;1;-1.2609379;4.451668;8.650364 +33063;3;0.22027588;0.25993347;-0.36590576 +33065;4;14.892578;-19.79065;-46.946716 +33065;6;-1.5574703;-0.39542514;0.0654905 +33065;7;-0.011909686;-0.9227509;0.38521275;0.0;0.9981035;0.012297292;0.06031585;0.0;-0.060393587 +33065;12;0.13739091;0.20096546;0.6194951;0.7462992 +33065;0;-0.5683899;3.449234;8.335815 +33065;3;0.21539307;0.25810242;-0.36895752 +33067;1;-1.278636;4.4574847;8.644769 +33067;2;-0.8298639;0.9728451;0.33235168; +33067;0;-0.6113739;3.4302368;8.350128 +33067;3;0.20622253;0.255661;-0.37017822 +33069;0;-0.6639252;3.458725;8.373978 +33070;12;0.13719675;0.20181027;0.6188315;0.7466574 +33070;3;0.20195007;0.2519989;-0.3726349 +33071;1;-1.2962999;4.462663;8.639465 +33071;0;-0.6782532;3.458725;8.38829 +33071;3;0.1927948;0.2495575;-0.37446594 +33073;5;999.6295 +33073;4;14.292908;-19.79065;-45.29724 +33073;6;-1.6371489;-0.38994142;0.080681615 +33073;7;-0.09665738;-0.922896;0.37272024;0.0;0.99252224;-0.06132654;0.10553915;0.0;-0.07454401 +33074;0;-0.6687012;3.4397278;8.41214 +33074;3;0.18545532;0.24406433;-0.37322998 +33075;12;0.13746656;0.20230038;0.6163907;0.7484919 +33075;0;-0.69737244;3.449234;8.431213 +33076;1;-1.3137193;4.467128;8.634525 +33076;3;0.17752075;0.23550415;-0.37200928 +33078;0;-0.7594757;3.5062408;8.483673 +33079;3;0.17080688;0.22879028;-0.37141418 +33079;12;0.13723469;0.2030843;0.6157225;0.74887204 +33080;0;-0.7785797;3.5014954;8.502762 +33081;1;-1.3305793;4.4709773;8.62995 +33081;3;0.16590881;0.22084045;-0.37078857 +33083;4;14.892578;-18.89038;-46.496582 +33083;6;-1.5136434;-0.38917524;0.09131321 +33083;7;0.022341939;-0.92371154;0.3824365;0.0;0.99618405;0.052850418;0.06945428;0.0;-0.08436766 +33084;0;-0.8072357;3.5347595;8.488449 +33084;3;0.15919495;0.21229553;-0.37078857 +33084;12;0.13699794;0.20382155;0.61505896;0.7492602 +33085;0;-0.802475;3.5205078;8.507523 +33086;1;-1.3468053;4.4743395;8.625689 +33086;3;0.15063477;0.20007324;-0.3726349 +33086;2;-0.66237247;1.0232463;0.1526308; +33088;0;-0.8072357;3.5727692;8.478897 +33089;12;0.13676502;0.20451406;0.61439687;0.7496572 +33089;3;0.1451416;0.18663025;-0.37200928 +33091;0;-0.850235;3.5537567;8.497986 +33091;3;0.14208984;0.17196655;-0.3738556 +33091;1;-1.3621188;4.477097;8.621853 +33092;13;378.049 +33092;4;16.242981;-19.491577;-47.247314 +33092;6;-1.5109425;-0.39431718;0.099719495 +33093;7;0.021342918;-0.92160577;0.38753998;0.0;0.99553806;0.05522766;0.07650938;0.0;-0.091914415 +33093;0;-0.7976837;3.5727692;8.474136 +33093;3;0.13659668;0.15608215;-0.376297 +33094;12;0.13712642;0.2047554;0.6116005;0.75180876 +33095;0;-0.8215637;3.548996;8.569519 +33095;1;-1.376231;4.4794345;8.618397 +33095;3;0.12986755;0.14019775;-0.3824005 +33098;0;-0.9457855;3.5585022;8.598129 +33098;12;0.13692488;0.20532101;0.6109219;0.75224286 +33098;3;0.122528076;0.12860107;-0.38667297 +33100;0;-0.91233826;3.6725311;8.6362915 +33100;1;-1.3894622;4.481147;8.615383 +33100;3;0.1109314;0.11454773;-0.38911438 +33102;4;15.193176;-17.840576;-46.046448 +33102;6;-1.3760922;-0.40008283;0.10524968 +33103;7;0.15226023;-0.9036258;0.40034628;0.0;0.9835926;0.17819718;0.028129488;0.0;-0.09675911 +33103;0;-0.8072357;3.753296;8.660141 +33103;3;0.09931946;0.10232544;-0.3909607 +33103;12;0.13674615;0.20582052;0.61022204;0.75270677 +33105;1;-1.4015326;4.4820695;8.612947 +33105;0;-0.802475;3.753296;8.693527 +33105;3;0.090164185;0.096832275;-0.39033508 +33105;2;-0.60738146;0.8927355;0.011022568; +33108;0;-0.8215637;3.7247925;8.612442 +33108;3;0.082839966;0.09133911;-0.38728333 +33108;12;0.13656765;0.20624241;0.6095141;0.7531972 +33109;0;-0.87890625;3.7010345;8.631531 +33109;1;-1.4130409;4.482186;8.611007 +33109;3;0.07305908;0.080337524;-0.38606262 +33111;5;999.6295 +33112;0;-0.90278625;3.7342834;8.6410675 +33112;3;0.062057495;0.06996155;-0.38362122 +33112;4;16.242981;-19.79065;-45.29724 +33112;6;-1.5468153;-0.4059427;0.10409858 +33112;7;-0.017172057;-0.9184664;0.3951261;0.0;0.9952846;0.022029985;0.09446322;0.0;-0.09546591 +33112;12;0.13637398;0.20661275;0.6088115;0.7536988 +33116;0;-0.91233826;3.7817993;8.703064 +33116;1;-1.4237387;4.481549;8.609576 +33116;3;0.047409058;0.061401367;-0.3824005 +33117;17;1;38dead6d7725;15826;885;-79; +33117;17;1;38dead6d60ff;12429;4773;-72; +33118;17;1;1c1bb5efa29a;7330;823;-74; +33118;17;1;1c1bb5ecd182;-2951;750;-44; +33118;0;-0.87890625;3.7580414;8.755524 +33118;3;0.033966064;0.05529785;-0.3799591 +33118;12;0.13633907;0.20681341;0.607534;0.7546804 +33119;0;-0.864563;3.7675476;8.803207 +33119;1;-1.4336538;4.479764;8.608859 +33119;3;0.018692017;0.05102539;-0.37690735 +33121;4;16.242981;-19.491577;-45.29724 +33121;6;-1.5405912;-0.40265408;0.097896054 +33121;7;-0.008227078;-0.9196045;0.39275926;0.0;0.99591464;0.027785199;0.08591741;0.0;-0.08992294 +33121;0;-0.89323425;3.8055573;8.836609 +33121;3;0.0040283203;0.05102539;-0.37200928 +33122;12;0.13611841;0.20704913;0.6068509;0.75520486 +33124;1;-1.443066;4.4768295;8.608814 +33124;2;-0.6109916;0.7496991;-0.14981174; +33124;0;-0.90756226;3.8245544;8.86998 +33124;3;-0.010025024;0.053466797;-0.3665161 +33127;12;0.13586156;0.20722613;0.60619587;0.7557286 +33127;0;-0.883667;3.8768158;8.922455 +33127;3;-0.023452759;0.05895996;-0.3604126 +33129;0;-0.9219055;3.8910675;8.908142 +33129;1;-1.4524288;4.472848;8.609308 +33130;3;-0.034439087;0.06201172;-0.35430908 +33131;4;16.992188;-20.690918;-45.596313 +33131;6;-1.5877405;-0.40987152;0.1031231 +33131;7;-0.057868388;-0.91704035;0.3945735;0.0;0.99384964;-0.015540011;0.109641574;0.0;-0.09441407 +33131;0;-0.94099426;3.8578186;8.912918 +33131;3;-0.04788208;0.06568909;-0.34635925 +33132;12;0.13555282;0.20736916;0.60557216;0.75624466 +33133;0;-0.9601135;3.8245544;8.984451 +33133;1;-1.46187;4.467873;8.610293 +33134;3;-0.058883667;0.06813049;-0.33720398 +33136;0;-0.9983368;3.8293152;9.003525 +33136;3;-0.06681824;0.0717926;-0.3286438 +33137;12;0.13518962;0.2074848;0.6049897;0.75674397 +33138;0;-0.99354553;3.8293152;9.036911 +33144;1;-1.4712226;4.4620676;8.6117115 +33144;12;0.13478649;0.20757473;0.60445094;0.7572215 +33144;1;-1.4804215;4.455616;8.613475 +33144;2;-0.5625472;0.6347594;-0.40134048; +33144;3;-0.07598877;0.073013306;-0.32131958 +33144;4;15.492249;-19.79065;-45.29724 +33144;6;-1.5807129;-0.39865068;0.109503254 +33144;7;-0.052276455;-0.92154026;0.3847475;0.0;0.993541;-0.009138804;0.11310541;0.0;-0.10071506 +33144;0;-1.0174255;3.8483124;9.036911 +33145;3;-0.08758545;0.07545471;-0.31214905 +33145;0;-1.0413208;3.9005737;9.089371 +33145;3;-0.09614563;0.07728577;-0.30299377 +33146;12;0.13435186;0.20764259;0.6039513;0.7576787 +33146;0;-1.0699768;3.9100647;9.127518 +33146;3;-0.10469055;0.07850647;-0.29260254 +33147;0;-1.0843201;3.8958282;9.170456 +33148;1;-1.4893961;4.4485126;8.615599 +33148;3;-0.11201477;0.080947876;-0.28588867 +33150;4;16.693115;-20.991516;-45.14618 +33150;6;-1.672563;-0.3992292;0.117694125 +33150;7;-0.14629519;-0.91659397;0.37209293;0.0;0.9833072;-0.09360198;0.15603116;0.0;-0.10818859 +33151;0;-1.1273041;3.938568;9.213379 +33151;3;-0.1211853;0.08218384;-0.27793884 +33151;12;0.13388588;0.20768444;0.6034954;0.7581129 +33151;5;999.60547 +33152;0;-1.1750793;3.9480896;9.21814 +33152;1;-1.4982489;4.4408593;8.618011 +33153;3;-0.13034058;0.083999634;-0.27122498 +33155;0;-1.1798553;3.9575806;9.246765 +33155;12;0.13339244;0.20770767;0.6030767;0.75852656 +33155;3;-0.13645935;0.0864563;-0.26449585 +33157;0;-1.2371826;3.9290771;9.275375 +33157;1;-1.5070024;4.4325857;8.620745 +33158;3;-0.14562988;0.08828735;-0.25839233 +33159;4;15.492249;-19.491577;-44.54651 +33160;6;-1.5796937;-0.39752972;0.13260087 +33160;7;-0.060002185;-0.92198366;0.38255173;0.0;0.99072677;-0.008203469;0.13562167;0.0;-0.12190272 +33160;0;-1.2706299;3.9100647;9.270599 +33160;3;-0.15478516;0.088897705;-0.25167847 +33161;12;0.13286634;0.2077095;0.6026922;0.7589239 +33162;0;-1.3040619;3.9005737;9.265839 +33162;1;-1.5157053;4.4236584;8.623804 +33162;2;-0.38739467;0.53768635;-0.6286392; +33163;3;-0.16455078;0.087677;-0.24311829 +33164;0;-1.3518219;3.933838;9.304001 +33165;12;0.1323094;0.20769158;0.60233927;0.7593063 +33165;3;-0.17433167;0.0864563;-0.23518372 +33167;0;-1.4043732;3.8958282;9.346909 +33167;1;-1.5240961;4.414029;8.627258 +33167;3;-0.1847229;0.084625244;-0.22784424 +33169;4;16.392517;-19.340515;-45.596313 +33169;6;-1.5464464;-0.3909599;0.14913446 +33169;7;-0.032527138;-0.9242696;0.38035202;0.0;0.98998547;0.0225103;0.13936295;0.0;-0.13737078 +33170;0;-1.5381317;3.9053192;9.399368 +33170;3;-0.19876099;0.085235596;-0.22113037 +33170;12;0.1321322;0.20738183;0.60053724;0.76084745 +33172;0;-1.5381317;3.9575806;9.4423065 +33172;1;-1.5322584;4.4035506;8.631166 +33172;3;-0.21098328;0.08706665;-0.21624756 +33174;0;-1.562027;3.9148254;9.46138 +33174;12;0.13151334;0.20729451;0.6002561;0.76120037 +33174;3;-0.22259521;0.08340454;-0.20585632 +33176;0;-1.8008881;3.9813385;9.4804535 +33177;1;-1.5403521;4.392055;8.635582 +33177;3;-0.23480225;0.087677;-0.1985321 +33182;12;0.13084672;0.20717628;0.60000724;0.7615435 +33182;2;-0.0032384396;0.47993898;-0.8095627; +33182;1;-1.548358;4.379724;8.640411 +33182;4;16.842651;-18.89038;-45.747375 +33182;6;-1.4616956;-0.39129937;0.18772143 +33182;7;0.0362195;-0.9189181;0.3927819;0.0;0.9843407;0.10065438;0.14471339;0.0;-0.17251498 +33182;0;-1.7483368;3.962326;9.466141 +33182;3;-0.24519348;0.088897705;-0.19180298 +33182;0;-1.8390961;3.962326;9.46138 +33183;3;-0.25434875;0.085235596;-0.18447876 +33184;0;-1.9394073;4.0050964;9.4423065 +33184;3;-0.26290894;0.080947876;-0.17410278 +33184;12;0.13013944;0.20703045;0.5997983;0.7618689 +33186;0;-1.9776306;3.9908295;9.509079 +33186;1;-1.555949;4.366837;8.64557 +33187;3;-0.27207947;0.07545471;-0.1618805 +33189;4;15.04364;-18.740845;-45.14618 +33189;6;-1.457755;-0.38986245;0.20504992 +33189;7;0.033545047;-0.9190579;0.3926924;0.0;0.9815314;0.10433635;0.1603434;0.0;-0.18833695 +33190;0;-2.1496124;3.9908295;9.537689 +33190;3;-0.2818451;0.0693512;-0.14292908 +33190;12;0.12994955;0.20651485;0.59766966;0.7637118 +33191;0;-2.2499237;4.009842;9.466141 +33191;3;-0.29162598;0.057739258;-0.12767029 +33191;1;-1.5628121;4.353369;8.651121 +33191;5;999.60547 +33193;0;-2.2308197;3.9100647;9.466141 +33193;12;0.12921323;0.20628852;0.59754837;0.7639929 +33194;3;-0.30506897;0.03514099;-0.110565186 +33195;0;-2.2499237;3.9053192;9.523392 +33196;1;-1.5679537;4.339172;8.657322 +33196;3;-0.31910706;0.011306763;-0.09223938 +33198;4;16.992188;-18.29071;-44.396973 +33198;6;-1.4957758;-0.37972173;0.23199844 +33198;7;-0.012041773;-0.92615545;0.3769497;0.0;0.976859;0.06961134;0.20223927;0.0;-0.21354498 +33198;0;-2.3454742;4.009842;9.566299 +33199;3;-0.3294983;-0.012496948;-0.07513428 +33199;12;0.12848948;0.20597424;0.5974898;0.7642454 +33200;0;-2.316803;3.9860992;9.628311 +33200;1;-1.5704727;4.3242173;8.664344 +33201;2;0.560647;0.3893404;-0.8832092; +33201;3;-0.3380432;-0.031433105;-0.061691284 +33203;0;-2.2642517;3.9575806;9.675995 +33203;12;0.12780334;0.20552409;0.5974944;0.76447797 +33203;3;-0.34294128;-0.04914856;-0.046432495 +33205;0;-2.2164917;3.9290771;9.699844 +33208;3;-0.34353638;-0.060760498;-0.033584595 +33208;1;-1.5705968;4.308734;8.672032 +33209;4;15.04364;-19.041443;-45.89691 +33209;6;-1.5811414;-0.37609127;0.22465086 +33209;7;-0.09189969;-0.9300575;0.35573488;0.0;0.97397333;-0.009621769;0.22645812;0.0;-0.20719631 +33209;0;-2.1496124;3.9195862;9.742767 +33209;3;-0.34172058;-0.071136475;-0.020767212 +33210;12;0.12763968;0.20466544;0.5957799;0.7660723 +33210;1;-1.5689483;4.293292;8.679986 +33211;0;-2.1113892;3.8673248;9.799988 +33211;3;-0.3368225;-0.079696655;-0.010391235 +33213;0;-2.1066132;3.8245544;9.852463 +33213;12;0.12703863;0.20403968;0.5958788;0.76626205 +33213;3;-0.32705688;-0.08213806;-0.0024414062 +33215;0;-2.0636292;3.8055573;9.833389 +33215;1;-1.5661864;4.27835;8.687859 +33216;3;-0.317276;-0.08152771;0.0030517578 +33219;4;16.54358;-19.79065;-46.046448 +33219;6;-1.7675511;-0.36205703;0.20685753 +33219;7;-0.26266387;-0.9171272;0.29980907;0.0;0.9455775;-0.18281434;0.26918814;0.0;-0.19207035 +33219;0;-1.9680786;3.7817993;9.89061 +33219;3;-0.30322266;-0.08213806;0.006713867 +33219;12;0.12648906;0.20339015;0.59600675;0.7664261 +33220;1;-1.5630527;4.264352;8.695302 +33220;0;-2.04451;3.7817993;9.895386 +33220;2;0.5022893;0.44923687;-1.1340799; +33220;3;-0.28552246;-0.08213806;0.009155273 +33224;12;0.12598507;0.20276615;0.5961442;0.7665675 +33224;0;-2.0062866;3.7580414;9.881073 +33224;3;-0.26657104;-0.08030701;0.010986328 +33227;1;-1.5598074;4.251792;8.702033 +33227;0;-1.9346466;3.7152863;9.842926 +33228;3;-0.24519348;-0.079696655;0.008544922 +33228;5;999.60547 +33228;4;15.342712;-19.041443;-46.347046 +33228;6;-1.7382046;-0.35470626;0.19407795 +33228;7;-0.22954655;-0.9246387;0.30389398;0.0;0.9563468;-0.15625465;0.24695134;0.0;-0.18085594 +33228;0;-1.8295441;3.682022;9.881073 +33228;3;-0.22320557;-0.08091736;0.010375977 +33233;12;0.12594806;0.20193553;0.5947736;0.7678565 +33233;1;-1.5564239;4.240897;8.7079525 +33234;0;-1.8104248;3.663025;9.952621 +33234;12;0.1255845;0.20140965;0.59488523;0.76796764 +33234;3;-0.1993866;-0.0766449;0.012817383 +33234;0;-1.7578888;3.639267;9.895386 +33234;3;-0.17372131;-0.06686401;0.019546509 +33235;0;-1.6957855;3.6012573;9.919235 +33235;1;-1.5531552;4.2320023;8.712863 +33235;3;-0.14378357;-0.054656982;0.022598267 +33237;4;16.693115;-20.39032;-45.89691 +33237;6;-1.9028465;-0.34366506;0.16932236 +33237;7;-0.37499788;-0.8900962;0.25904715;0.0;0.91334736;-0.30692047;0.26757514;0.0;-0.15866074 +33237;0;-1.6814575;3.6012573;9.933533 +33237;3;-0.11691284;-0.03755188;0.025650024 +33238;12;0.12530027;0.20096053;0.5949897;0.76805073 +33239;0;-1.6336823;3.5680084;9.876312 +33239;1;-1.5507164;4.2254844;8.71646 +33240;2;0.19313395;0.6177182;-1.212676; +33240;3;-0.08758545;-0.01676941;0.031143188 +33242;0;-1.5238037;3.5585022;9.838165 +33243;12;0.12508903;0.20063265;0.5950904;0.76809305 +33243;3;-0.053985596;0.00642395;0.037872314 +33244;1;-1.549601;4.2215233;8.718577 +33244;0;-1.4760437;3.5062408;9.795227 +33244;3;-0.021621704;0.03147888;0.047027588 +33247;4;16.693115;-18.29071;-46.347046 +33247;6;-1.6869713;-0.34019637;0.1495648 +33247;7;-0.16400437;-0.9363347;0.31045094;0.0;0.97640735;-0.10927069;0.18624881;0.0;-0.14046805 +33247;0;-1.4808044;3.4539795;9.785706 +33247;3;0.012588501;0.061401367;0.053756714 +33248;12;0.12523955;0.20026651;0.5940394;0.76897705 +33250;1;-1.5502231;4.220335;8.719042 +33251;0;-1.3566132;3.4017181;9.876312 +33251;3;0.049240112;0.09744263;0.06047058 +33252;12;0.12513982;0.20026499;0.59415907;0.76890117 +33252;0;-1.2992706;3.4064636;9.9049225 +33252;3;0.08711243;0.13838196;0.07084656 +33254;1;-1.5533588;4.2222943;8.717535 +33254;0;-1.2610626;3.425476;9.847702 +33254;3;0.1255951;0.1860199;0.07940674 +33257;4;16.54358;-18.440247;-46.946716 +33257;6;-1.7188797;-0.33223838;0.12736337 +33257;7;-0.18732285;-0.9349688;0.3012365;0.0;0.9749321;-0.1394743;0.1733619;0.0;-0.120073214 +33257;0;-1.2180786;3.449234;9.823853 +33257;3;0.16651917;0.2361145;0.09101868 +33257;12;0.12508407;0.20049457;0.59429485;0.7687454 +33259;1;-1.5598829;4.2276983;8.71375 +33259;0;-1.2180786;3.458725;9.785706 +33259;3;0.2111206;0.2886505;0.10017395 +33259;2;-0.25603938;0.8184805;-1.1512575; +33261;0;-1.1750793;3.4682465;9.799988 +33261;12;0.12505136;0.20099841;0.59445655;0.7684941 +33261;3;0.25509644;0.34240723;0.10568237 +33263;1;-1.5703255;4.2369165;8.707395 +33263;0;-1.1655273;3.5205078;9.747543 +33264;3;0.29847717;0.39616394;0.11239624 +33267;5;999.60547 +33267;4;15.342712;-19.041443;-46.347046 +33267;6;-1.7511488;-0.34432825;0.11900639 +33267;7;-0.21753514;-0.926035;0.30844387;0.0;0.96963334;-0.16884737;0.1769228;0.0;-0.11175677 +33267;0;-1.1464081;3.5109863;9.666458 +33267;3;0.3461151;0.44503784;0.11727905 +33267;12;0.12541531;0.20158395;0.59324133;0.76922023 +33271;1;-1.5848621;4.250008;8.698377 +33272;0;-1.1559601;3.525238;9.59491 +33272;3;0.39009094;0.48840332;0.12338257 +33272;0;-1.1655273;3.5680084;9.470917 +33272;12;0.12543239;0.20271967;0.5934346;0.7687697 +33272;1;-1.60272;4.266991;8.686782 +33272;3;0.43103027;0.5232239;0.12828064 +33273;0;-1.1846313;3.6250305;9.423233 +33273;3;0.46768188;0.5519409;0.12767029 +33275;4;16.992188;-19.340515;-46.347046 +33275;6;-1.6532239;-0.36461985;0.12505785 +33275;7;-0.12601894;-0.9310874;0.34233835;0.0;0.9851596;-0.07692149;0.15343925;0.0;-0.11653216 +33276;9;2AEC2AEBC4E1;-68;-2147483648 +33277;0;-1.1798553;3.663025;9.351685 +33277;12;0.12550162;0.2041399;0.59362876;0.76823246 +33277;3;0.49822998;0.57514954;0.12828064 +33277;1;-1.6228954;4.2871046;8.673122 +33278;2;-0.50244236;0.76520395;-0.9064894; +33278;0;-1.1989594;3.6962738;9.304001 +33278;3;0.52388;0.59103394;0.12767029 +33279;0;-1.1989594;3.7485352;9.199066 +33280;12;0.12562735;0.2057727;0.59380656;0.7676387 +33280;3;0.5446472;0.6014099;0.12767029 +33282;1;-1.6443989;4.309475;8.657972 +33282;0;-1.2228394;3.7913055;9.103683 +33282;3;0.5617523;0.60569763;0.12705994 +33284;4;16.842651;-19.491577;-45.29724 +33284;6;-1.5739182;-0.39145046;0.13352436 +33284;7;-0.053886127;-0.92435217;0.377716;0.0;0.9909355;-0.00288577;0.13430782;0.0;-0.12305771 +33285;0;-1.1989594;3.8388062;9.041687 +33285;3;0.57214355;0.605072;0.12400818 +33286;12;0.12580809;0.20754288;0.5939602;0.76701343 +33287;0;-1.2132874;3.938568;8.951065 +33287;1;-1.6662464;4.333332;8.641872 +33287;3;0.5776367;0.6044769;0.122787476 +33290;0;-1.2276306;3.9860992;8.931976 +33290;3;0.5800781;0.59835815;0.117889404 +33292;1;-1.6879804;4.3577766;8.625347 +33292;0;-1.2228394;4.043091;8.81752 +33292;3;0.5727539;0.5904083;0.11300659 +33293;12;0.126041;0.20938407;0.59409857;0.7663673 +33294;4;16.392517;-19.340515;-45.89691 +33294;6;-1.3603536;-0.42632657;0.13780394 +33294;7;0.15136008;-0.8904042;0.4292674;0.0;0.9805341;0.1901951;0.04877331;0.0;-0.12507251 +33294;0;-1.2753906;4.109619;8.73645 +33294;3;0.56604004;0.57759094;0.10749817 +33295;12;0.12630497;0.2112429;0.5942168;0.7657218 +33296;1;-1.7092102;4.381894;8.6089325 +33296;0;-1.2897186;4.1523743;8.6792145 +33297;3;0.5568695;0.56414795;0.1007843 +33297;2;-0.52952754;0.48169994;-0.36015797; +33299;0;-1.3136139;4.214142;8.574295 +33299;12;0.12657632;0.21306626;0.59431255;0.7650974 +33299;3;0.54037476;0.5500946;0.094070435 +33301;0;-1.3136139;4.266403;8.478897 +33301;1;-1.7295803;4.4052024;8.592954 +33301;3;0.52326965;0.5305481;0.08673096 +33304;4;17.892456;-19.190979;-45.29724 +33304;6;-1.217231;-0.46144268;0.15370545 +33304;7;0.27821255;-0.8400248;0.4657856;0.0;0.9506865;0.31003144;-0.008713894;0.0;-0.13708828 +33304;0;-1.3088379;4.323395;8.426437 +33304;3;0.50494385;0.5085602;0.07940674 +33304;12;0.12693827;0.21476807;0.5940696;0.7647501 +33305;5;999.60425 +33306;0;-1.3375092;4.375656;8.373978 +33306;1;-1.7486562;4.427103;8.577825 +33306;3;0.48417664;0.4847412;0.07147217 +33311;1;-1.7661539;4.4472795;8.563791 +33312;12;0.1271982;0.21641451;0.5941184;0.7642047 +33312;0;-1.3661499;4.4184265;8.350128 +33312;3;0.46279907;0.46214294;0.06352234 +33312;0;-1.3613892;4.4849396;8.378754 +33312;3;0.43652344;0.44259644;0.058639526 +33315;17;1;38dead6d7725;15745;2860;-81; +33316;17;1;38dead6d60ff;9335;2500;-76; +33317;17;1;1c1bb5efa29a;8137;2961;-72; +33317;17;1;1c1bb5ecd182;-2356;677;-41; +33317;4;15.942383;-19.190979;-44.54651 +33317;6;-1.0642657;-0.4860668;0.1610735 +33317;7;0.41335323;-0.77315354;0.48101208;0.0;0.8994615;0.4289553;-0.08346365;0.0;-0.14180246 +33317;0;-1.3996124;4.4991913;8.340591 +33317;3;0.41148376;0.42242432;0.053756714 +33317;12;0.12744398;0.2179259;0.5941437;0.76371443 +33317;0;-1.4139404;4.5181885;8.283371 +33317;1;-1.7822194;4.465369;8.55104 +33317;2;-0.48228812;0.12803507;0.11279774; +33318;3;0.38459778;0.4028778;0.04824829 +33318;0;-1.4569244;4.560959;8.245209 +33318;12;0.12765321;0.21929987;0.59415925;0.76327395 +33318;3;0.35894775;0.38394165;0.04458618 +33320;0;-1.4999237;4.5989685;8.254761 +33320;1;-1.7969478;4.4813023;8.539615 +33320;3;0.33206177;0.36439514;0.039093018 +33322;4;17.593384;-19.491577;-45.29724 +33322;6;-1.0056044;-0.5014246;0.17974304 +33322;7;0.45437995;-0.7405285;0.49513274;0.0;0.876905;0.46964762;-0.1023172;0.0;-0.15676911 +33323;0;-1.4951324;4.6084595;8.187988 +33323;3;0.30641174;0.34606934;0.03543091 +33323;12;0.1282714;0.22027287;0.59262383;0.76408345 +33325;0;-1.557251;4.6322327;8.14505 +33325;1;-1.8104357;4.4951468;8.529484 +33325;3;0.28196716;0.32896423;0.032974243 +33328;0;-1.5954742;4.61322;8.154587 +33328;12;0.12839243;0.2213775;0.5926329;0.7637367 +33329;3;0.25997925;0.31126404;0.032974243 +33330;0;-1.6098022;4.627472;8.154587 +33330;1;-1.8224883;4.5067935;8.520766 +33331;3;0.23982239;0.29782104;0.031143188 +33332;4;16.842651;-19.190979;-44.54651 +33332;6;-0.91484714;-0.50799114;0.19490455 +33332;7;0.5237076;-0.6923991;0.49630016;0.0;0.8349229;0.5328942;-0.13757807;0.0;-0.16921656 +33332;0;-1.6623383;4.594223;8.1689 +33333;3;0.21905518;0.28437805;0.03236389 +33333;12;0.12846857;0.22233775;0.59264773;0.7634334 +33334;0;-1.6432343;4.556198;8.159363 +33335;1;-1.8335768;4.516783;8.513094 +33335;2;-0.32056463;-0.033010483;0.29161453; +33335;3;0.20195007;0.27398682;0.03175354 +33337;0;-1.6766663;4.560959;8.197525 +33337;12;0.12850584;0.22319508;0.5926735;0.7631568 +33337;3;0.18789673;0.26361084;0.033584595 +33339;0;-1.6623383;4.546707;8.221359 +33339;1;-1.8436545;4.5252423;8.506423 +33339;3;0.17507935;0.25505066;0.03543091 +33341;4;16.693115;-20.690918;-43.64624 +33342;6;-1.115734;-0.4967315;0.19950764 +33342;7;0.3459648;-0.78967744;0.5066732;0.0;0.9219276;0.3864002;-0.027281761;0.0;-0.17423487 +33342;0;-1.6814575;4.537201;8.2642975 +33342;3;0.16468811;0.24710083;0.038482666 +33343;12;0.12851028;0.2239533;0.59270906;0.76290625 +33343;5;999.60425 +33344;0;-1.6814575;4.4991913;8.269058 +33344;1;-1.8529036;4.5326295;8.500478 +33344;3;0.15675354;0.24221802;0.040924072 +33347;0;-1.6957855;4.470688;8.345367 +33347;12;0.12849064;0.2246386;0.5927641;0.76266533 +33347;3;0.15307617;0.23916626;0.042144775 +33349;0;-1.6862335;4.4421844;8.397842 +33350;1;-1.8616072;4.539305;8.495012 +33350;3;0.15248108;0.23977661;0.04458618 +33351;4;17.292786;-19.190979;-43.797302 +33351;6;-1.0943639;-0.4784291;0.19815856 +33352;7;0.36909693;-0.7888599;0.49139336;0.0;0.9128123;0.40711847;-0.032065466;0.0;-0.1747602 +33352;0;-1.6527863;4.4421844;8.407364 +33352;3;0.15126038;0.23977661;0.045196533 +33352;12;0.12845735;0.22527634;0.5928331;0.7624292 +33354;0;-1.6814575;4.4089203;8.488449 +33354;1;-1.8701361;4.5458026;8.489663 +33354;2;-0.24485016;0.10609865;0.12778759; +33354;3;0.15370178;0.24160767;0.045196533 +33356;0;-1.7244415;4.380417;8.579071 +33356;12;0.12841569;0.22590211;0.5929099;0.7621913 +33357;3;0.15919495;0.24528503;0.045806885 +33359;0;-1.6957855;4.437439;8.626755 +33359;1;-1.878809;4.5523715;8.484226 +33359;3;0.16285706;0.25138855;0.04763794 +33361;4;16.392517;-21.290588;-43.19763 +33361;6;-1.3776344;-0.46741807;0.19409803 +33361;7;0.10306549;-0.8761317;0.47092533;0.0;0.97965676;0.17137198;0.1044234;0.0;-0.17219207 +33361;0;-1.6432343;4.4184265;8.669678 +33361;3;0.17018127;0.25749207;0.050704956 +33362;12;0.12837788;0.22653694;0.5929868;0.76194936 +33364;1;-1.8877511;4.5593987;8.478466 +33364;0;-1.6432343;4.375656;8.416901 +33364;3;0.1781311;0.26483154;0.054977417 +33366;0;-1.6909943;4.4184265;7.4058075 +33367;12;0.1283574;0.22722374;0.5930651;0.7616874 +33368;3;0.19218445;0.25138855;0.05558777 +33370;0;-1.7674255;4.4184265;8.044907 +33370;1;-1.8969893;4.567717;8.471924 +33370;3;0.21234131;0.22084045;0.059249878 +33370;4;16.992188;-20.991516;-45.14618 +33371;6;-1.038507;-0.4923631;0.21625935 +33371;7;0.40828648;-0.75929946;0.50672126;0.0;0.89305496;0.4472247;-0.04942523;0.0;-0.18908972 +33371;0;-1.7387848;4.347168;8.769836 +33371;3;0.21417236;0.21290588;0.061691284 +33372;12;0.12835562;0.22792938;0.59314686;0.76141316 +33375;1;-1.904233;4.5765676;8.46552 +33375;2;-0.24670625;0.2276702;0.026862144; +33375;0;-1.7722168;4.3851776;8.688751 +33375;3;0.19950867;0.22511292;0.06352234 +33376;12;0.12846701;0.2285994;0.5932094;0.7611447 +33376;0;-1.7960968;4.480179;8.187988 +33376;3;0.18362427;0.23001099;0.06413269 +33377;0;-1.7531128;4.4849396;7.935196 +33378;1;-1.9119786;4.585053;8.459181 +33378;3;0.16712952;0.21595764;0.06352234 +33381;4;17.892456;-20.541382;-44.096375 +33381;6;-1.0386609;-0.50429124;0.21743597 +33381;7;0.40560484;-0.75445557;0.5160248;0.0;0.89432216;0.44421527;-0.053487167;0.0;-0.18887241 +33381;12;0.12856486;0.22925362;0.5932065;0.76093364 +33381;9;2AEC2AEBC4E1;-66;-2147483648 +33382;0;-1.6623383;4.4897003;8.049683 +33382;3;0.15003967;0.19458008;0.061691284 +33382;5;999.60425 +33382;0;-1.6527863;4.522949;8.097366 +33383;1;-1.9186596;4.5922117;8.453783 +33383;3;0.12498474;0.16952515;0.059249878 +33385;0;-1.6957855;4.5181885;8.135513 +33385;12;0.1286075;0.22983073;0.5932985;0.7606806 +33385;3;0.098098755;0.14692688;0.059249878 +33387;0;-1.7387848;4.4991913;8.1689 +33387;1;-1.9235618;4.5973744;8.449862 +33388;3;0.06695557;0.12371826;0.05680847 +33389;4;16.693115;-20.39032;-44.396973 +33389;6;-1.0261443;-0.49412817;0.20972429 +33389;7;0.422317;-0.7529979;0.5046212;0.0;0.88772416;0.45614427;-0.06227511;0.0;-0.18328705 +33390;0;-1.7244415;4.4897003;8.192749 +33390;3;0.033355713;0.10295105;0.053146362 +33390;12;0.12862489;0.23025508;0.5933954;0.7604737 +33392;0;-1.7292175;4.432678;8.226135 +33392;1;-1.9267395;4.599921;8.447752 +33392;2;-0.25968206;0.15858078;0.2849779; +33392;3;-8.544922E-4;0.08155823;0.050704956 +33394;0;-1.7387848;4.4421844;8.178452 +33395;12;0.12858857;0.23050869;0.59350485;0.76031756 +33395;3;-0.033218384;0.06262207;0.04763794 +33397;0;-1.7053375;4.4184265;8.202286 +33397;1;-1.9283854;4.59967;8.447513 +33398;3;-0.06437683;0.040634155;0.045196533 +33399;4;16.693115;-21.740723;-44.69757 +33399;6;-1.2056308;-0.48532972;0.20498966 +33399;7;0.26092917;-0.8262001;0.4993091;0.0;0.94841874;0.31586605;0.027034312;0.0;-0.18005052 +33399;0;-1.6862335;4.4231873;8.288132 +33400;3;-0.09309387;0.020477295;0.04397583 +33400;12;0.12849537;0.23058437;0.59359366;0.76024103 +33401;0;-1.6909943;4.3946686;8.397842 +33402;1;-1.9283634;4.5967793;8.449091 +33402;3;-0.1211853;0.0027770996;0.046417236 +33404;0;-1.6957855;4.3851776;8.483673 +33404;12;0.12833093;0.23049709;0.59373176;0.76018745 +33404;3;-0.14866638;-0.011886597;0.048858643 +33406;0;-1.7244415;4.404175;8.521835 +33407;1;-1.9268517;4.5915403;8.452284 +33407;3;-0.17617798;-0.030822754;0.053146362 +33409;4;16.54358;-19.190979;-43.347168 +33409;6;-1.1334801;-0.46886888;0.19965959 +33409;7;0.33390725;-0.80812776;0.48521703;0.0;0.92585176;0.3778046;-0.007902086;0.0;-0.1769313 +33409;0;-1.6909943;4.389923;8.593384 +33410;3;-0.20121765;-0.048538208;0.057418823 +33410;12;0.12811379;0.2302629;0.5938959;0.7601668 +33411;0;-1.6862335;4.3186646;8.664902 +33411;1;-1.9237044;4.584091;8.457044 +33411;2;-0.27371705;0.23574829;0.0020360947; +33411;3;-0.22564697;-0.06991577;0.06352234 +33415;0;-1.6719055;4.3519135;8.769836 +33415;12;0.12784837;0.22987875;0.5940941;0.7601729 +33415;3;-0.24336243;-0.087020874;0.07206726 +33416;0;-1.7531128;4.323395;8.86998 +33416;1;-1.9187127;4.5747867;8.463214 +33416;3;-0.25802612;-0.10290527;0.081848145 +33421;4;16.54358;-19.190979;-43.347168 +33421;6;-1.2714528;-0.44603053;0.19513072 +33421;7;0.20937245;-0.86204743;0.46155965;0.0;0.9620625;0.26604265;0.060473263;0.0;-0.17492539 +33421;0;-1.7769928;4.313904;8.927231 +33421;3;-0.27085876;-0.119400024;0.09223938 +33421;5;999.60425 +33421;0;-1.7674255;4.290146;9.008301 +33421;12;0.12816903;0.2290119;0.5923174;0.76176524 +33421;1;-1.9120355;4.5643296;8.470367 +33421;3;-0.28245544;-0.13711548;0.10202026 +33423;0;-1.7531128;4.2426453;9.16568 +33423;12;0.1278721;0.2283734;0.5925934;0.76179224 +33424;3;-0.29162598;-0.15544128;0.109939575 +33425;0;-1.7435455;4.2283936;9.351685 +33426;1;-1.903449;4.552922;8.478436 +33426;3;-0.29956055;-0.17132568;0.117889404 +33428;4;17.892456;-20.840454;-44.096375 +33428;6;-1.5817776;-0.4182655;0.18432556 +33428;7;-0.08523594;-0.9137397;0.39725876;0.0;0.98218334;-0.010034427;0.1876572;0.0;-0.16748358 +33428;0;-1.7292175;4.2616425;9.518616 +33428;3;-0.30628967;-0.18049622;0.12400818 +33429;12;0.12758878;0.22762388;0.5929068;0.7618203 +33430;0;-1.7339935;4.252136;9.661682 +33431;1;-1.8932619;4.5408797;8.487172 +33431;2;-0.2049954;0.30800676;-0.71099186; +33431;3;-0.30932617;-0.18782043;0.12950134 +33432;0;-1.7626648;4.266403;9.747543 +33433;12;0.12732334;0.22678891;0.59324723;0.7618487 +33433;3;-0.31056213;-0.18782043;0.1337738 +33435;0;-1.7387848;4.2711487;9.9049225 +33435;1;-1.8823528;4.5285525;8.496181 +33435;3;-0.31054688;-0.18904114;0.13806152 +33437;4;17.892456;-20.840454;-44.096375 +33437;6;-1.6698879;-0.40163356;0.17377688 +33437;7;-0.16469984;-0.91590846;0.3660406;0.0;0.97342026;-0.09105708;0.2101467;0.0;-0.15914454 +33438;0;-1.7722168;4.290146;10.028931 +33438;3;-0.3080902;-0.18659973;0.13928223 +33438;12;0.12706573;0.22591497;0.5936056;0.76187223 +33440;0;-1.7626648;4.233139;10.172012 +33440;1;-1.8712798;4.5161877;8.505202 +33440;3;-0.3019867;-0.18537903;0.14234924 +33442;0;-1.7578888;4.185623;10.2816925 +33443;12;0.12680611;0.22503342;0.59397876;0.7618855 +33443;3;-0.29405212;-0.18232727;0.14234924 +33445;0;-1.7722168;4.133362;10.391388 +33445;1;-1.8602716;4.5041175;8.514013 +33445;3;-0.2885437;-0.1798706;0.14356995 +33447;4;17.593384;-20.541382;-44.996643 +33447;6;-1.757979;-0.37368312;0.16892144 +33447;7;-0.24374218;-0.91472703;0.3222797;0.0;0.957127;-0.17324917;0.23214781;0.0;-0.1565172 +33447;0;-1.7722168;4.090622;10.45816 +33448;3;-0.27877808;-0.1798706;0.1478424 +33448;12;0.12655681;0.22416812;0.5943539;0.76188934 +33449;0;-1.791336;4.057358;10.238785 +33450;1;-1.8493932;4.4925666;8.522482 +33450;2;-0.13678682;0.35421896;-1.6702509; +33450;3;-0.2702179;-0.18049622;0.15028381 +33452;0;-1.8295441;3.9765778;9.842926 +33452;12;0.12632984;0.22333604;0.5947266;0.7618806 +33452;3;-0.24761963;-0.19392395;0.15394592 +33454;0;-1.8677673;3.9670868;9.9144745 +33455;1;-1.8382652;4.48215;8.530371 +33455;3;-0.22380066;-0.21836853;0.15577698 +33457;50;STANDING;1 +33457;4;17.593384;-20.541382;-44.996643 +33457;6;-1.7629776;-0.37464276;0.1862056 +33457;7;-0.25419855;-0.91350526;0.31763366;0.0;0.95168215;-0.17775235;0.25040963;0.0;-0.1722904 +33457;0;-1.8295441;3.962326;10.152924 +33457;3;-0.2024231;-0.24157715;0.15760803 +33458;5;999.6485 +33458;12;0.12616593;0.22252034;0.59507096;0.7618776 +33459;0;-1.8486481;4.0336;10.386612 +33459;3;-0.18592834;-0.2544098;0.15882874 +33460;1;-1.8252237;4.473515;8.537702 +33461;0;-1.8534241;4.0668488;10.434326 +33462;12;0.126141;0.22169094;0.59541035;0.76185834 +33462;3;-0.17553711;-0.2544098;0.1625061 +33464;0;-1.8247681;4.1143646;10.358002 +33464;1;-1.810996;4.466238;8.544538 +33464;3;-0.17004395;-0.25378418;0.1625061 +33466;4;17.442322;-20.39032;-43.94684 +33466;6;-1.7890935;-0.37289023;0.17438059 +33466;7;-0.27498996;-0.9091769;0.31269467;0.0;0.94777316;-0.20168467;0.24708149;0.0;-0.16157505 +33466;0;-1.7101135;4.085861;10.210159 +33467;3;-0.16149902;-0.25500488;0.1637268 +33468;12;0.12621862;0.22085918;0.595734;0.7618341 +33471;1;-1.79661;4.459684;8.550996 +33471;2;-0.045707226;0.48373365;-1.6551046; +33471;0;-1.6766663;4.043091;10.024155 +33471;3;-0.15293884;-0.25990295;0.16738892 +33471;0;-1.6527863;4.0050964;9.923996 +33471;12;0.12632829;0.22004895;0.5960539;0.7618001 +33472;3;-0.13949585;-0.26844788;0.17227173 +33473;0;-1.6193542;3.9813385;9.900162 +33474;1;-1.7817566;4.454027;8.557049 +33474;3;-0.12728882;-0.27578735;0.1796112 +33476;4;17.442322;-20.39032;-43.94684 +33476;6;-1.7578162;-0.37780932;0.1621327 +33476;7;-0.24200149;-0.91326743;0.32768562;0.0;0.958605;-0.17281878;0.22629641;0.0;-0.15003891 +33476;0;-1.605011;4.000351;9.885849 +33476;3;-0.11323547;-0.2763977;0.18266296 +33477;12;0.12649131;0.21925078;0.59636974;0.76175606 +33478;0;-1.5954742;4.052597;9.828613 +33478;1;-1.7661536;4.449581;8.562595 +33479;3;-0.09674072;-0.27211;0.18754578 +33480;0;-1.6193542;4.0478516;9.714157 +33481;12;0.12672855;0.21846984;0.59668857;0.76169133 +33481;3;-0.07902527;-0.26844788;0.19181824 +33483;9;2AEC2AEBC4E1;-69;-2147483648 +33484;0;-1.624115;4.0668488;9.561539 +33484;1;-1.7506851;4.446644;8.567297 +33484;3;-0.060699463;-0.2739563;0.19854736 +33485;4;16.693115;-20.39032;-44.396973 +33485;6;-1.6588892;-0.39705652;0.16825327 +33485;7;-0.15124342;-0.91862726;0.3650335;0.0;0.97635853;-0.08113448;0.20035271;0.0;-0.15443265 +33486;0;-1.624115;4.028839;9.4804535 +33486;3;-0.044204712;-0.28373718;0.20220947 +33486;12;0.12702367;0.21774973;0.597006;0.7615996 +33488;0;-1.614563;4.028839;9.365997 +33488;1;-1.7346922;4.4452996;8.571246 +33488;2;-0.17013049;0.47622252;-1.1776648; +33489;3;-0.025268555;-0.2959442;0.20465088 +33490;0;-1.585907;4.0478516;9.323074 +33491;12;0.12740366;0.21706466;0.597321;0.7614847 +33491;3;-0.005722046;-0.30999756;0.20648193 +33493;1;-1.71756;4.4455934;8.574544 +33493;0;-1.5285797;4.057358;9.246765 +33493;3;0.011978149;-0.3222046;0.20709229 +33495;4;16.54358;-20.240784;-45.29724 +33495;6;-1.5426164;-0.40855262;0.16382807 +33495;7;-0.036970448;-0.9173325;0.39640173;0.0;0.98804426;0.02585721;0.15198746;0.0;-0.14967288 +33495;0;-1.4760437;4.11911;9.232452 +33496;3;0.02848816;-0.33137512;0.20404053 +33496;12;0.1279468;0.21635713;0.59743786;0.76150334 +33497;5;999.6485 +33497;0;-1.4091492;4.190384;9.19429 +33497;1;-1.699323;4.4474883;8.577194 +33498;3;0.046188354;-0.3368683;0.20281982 +33500;0;-1.3900452;4.185623;9.170456 +33500;12;0.12854446;0.2156898;0.59770954;0.76137877 +33500;3;0.059631348;-0.33869934;0.19793701 +33504;1;-1.6806989;4.4507523;8.57917 +33504;0;-1.3804932;4.209381;9.098923 +33504;3;0.07185364;-0.3368683;0.19059753 +33505;4;16.54358;-19.491577;-45.29724 +33505;6;-1.3711444;-0.42898217;0.15057217 +33505;7;0.13493013;-0.8913252;0.43282017;0.0;0.9814202;0.18035755;0.065463826;0.0;-0.13641194 +33505;0;-1.3183899;4.233139;8.998749 +33505;12;0.12921928;0.2150537;0.5979507;0.7612552 +33505;3;0.082855225;-0.33442688;0.18205261 +33507;0;-1.2897186;4.2188873;8.917694 +33507;1;-1.6623994;4.45501;8.580525 +33508;2;-0.2957362;0.35584116;-0.6089344; +33508;3;0.094451904;-0.33320618;0.17349243 +33509;0;-1.3231812;4.2378845;8.855682 +33510;12;0.12993196;0.2144637;0.59815335;0.761141 +33510;3;0.102996826;-0.33259583;0.16555786 +33512;0;-1.2706299;4.280655;8.774612 +33512;1;-1.6445999;4.460101;8.581311 +33512;3;0.10972595;-0.32954407;0.15516663 +33514;4;17.593384;-20.840454;-45.747375 +33514;6;-1.3873792;-0.44980103;0.1438079 +33514;7;0.11924251;-0.88542825;0.4492194;0.0;0.98444164;0.16424878;0.062426534;0.0;-0.12905794 +33514;0;-1.2706299;4.2711487;8.717377 +33515;3;0.11338806;-0.327713;0.1441803 +33515;12;0.13067676;0.21391824;0.5983116;0.76104254 +33516;0;-1.2849579;4.290146;8.698288 +33517;1;-1.6274084;4.465625;8.581716 +33517;3;0.11584473;-0.32832336;0.13317871 +33520;17;1;38dead6d7725;9967;2720;-83; +33520;17;1;38dead6d60ff;10833;2684;-78; +33520;17;1;1c1bb5efa29a;3570;2660;-76; +33520;17;1;1c1bb5ecd182;-2178;3734;-43; +33520;12;0.13142933;0.21340828;0.5984301;0.76096314 +33520;0;-1.2515106;4.3043976;8.664902 +33520;3;0.11643982;-0.3264923;0.122802734 +33522;0;-1.2228394;4.3091583;8.564758 +33522;1;-1.6107074;4.4712324;8.581947 +33522;3;0.115219116;-0.3252716;0.11546326 +33524;4;17.442322;-19.940186;-45.596313 +33524;6;-1.2685272;-0.46210694;0.14181724 +33524;7;0.2345403;-0.8545337;0.46342534;0.0;0.9638382;0.2664644;0.0035473257;0.0;-0.12651767 +33524;0;-1.2228394;4.3186646;8.49321 +33524;3;0.110946655;-0.324646;0.106918335 +33525;12;0.1321817;0.21291685;0.5985061;0.76091063 +33526;1;-1.594489;4.4766917;8.582129 +33527;0;-1.2276306;4.370926;8.44075 +33527;2;-0.391827;0.23762512;-0.11075783; +33527;3;0.10484314;-0.3240509;0.10018921 +33529;0;-1.2324066;4.3851776;8.416901 +33529;12;0.13292038;0.21243644;0.59855235;0.7608799 +33530;3;0.10055542;-0.3252716;0.091033936 +33531;0;-1.2610626;4.380417;8.345367 +33531;1;-1.5786767;4.4816804;8.582449 +33531;3;0.09811401;-0.32710266;0.08552551 +33533;4;15.492249;-20.541382;-44.54651 +33533;6;-1.2246426;-0.47873184;0.14997466 +33533;7;0.27072856;-0.8349328;0.4791591;0.0;0.95347744;0.30114004;-0.013986714;0.0;-0.13261603 +33534;0;-1.2467346;4.375656;8.345367 +33534;3;0.08895874;-0.33015442;0.078201294 +33534;12;0.13363507;0.2119481;0.5985633;0.76088226 +33535;5;999.6485 +33536;0;-1.2276306;4.404175;8.316757 +33536;1;-1.5629126;4.4862413;8.582952 +33536;3;0.082229614;-0.33259583;0.06964111 +33538;0;-1.1702881;4.3994293;8.302444 +33538;12;0.1343358;0.21144253;0.59856325;0.7608994 +33539;3;0.074905396;-0.33381653;0.062927246 +33540;0;-1.1750793;4.4231873;8.283371 +33541;1;-1.5473244;4.4900827;8.583767 +33541;3;0.06819153;-0.33442688;0.058044434 +33543;4;15.342712;-20.991516;-44.396973 +33543;6;-1.2480766;-0.4863358;0.14091976 +33543;7;0.25174555;-0.8384134;0.48341194;0.0;0.95979494;0.28037432;-0.013558842;0.0;-0.12416838 +33543;0;-1.1273041;4.4421844;8.273819 +33543;3;0.061462402;-0.33442688;0.050720215 +33544;12;0.1350065;0.21091576;0.5985407;0.7609447 +33545;0;-1.1416473;4.5086975;8.2595215 +33546;1;-1.5319065;4.4933543;8.584821 +33546;3;0.05596924;-0.33259583;0.043380737 +33546;2;-0.39171755;0.13692236;0.22553444; +33548;0;-1.1082001;4.53244;8.269058 +33548;12;0.13565257;0.21037403;0.59850216;0.7610101 +33549;3;0.05230713;-0.33137512;0.03605652 +33550;0;-1.0986481;4.5181885;8.230911 +33551;1;-1.5168775;4.49614;8.58603 +33551;3;0.04925537;-0.32710266;0.02810669 +33552;4;16.093445;-20.690918;-44.396973 +33552;6;-1.2036968;-0.49830502;0.13269396 +33552;7;0.29673418;-0.81986856;0.48965752;0.0;0.94786227;0.3152641;-0.04653866;0.0;-0.11621582 +33553;0;-1.1177521;4.53244;8.235672 +33553;3;0.045578003;-0.3228302;0.018341064 +33553;12;0.13626935;0.20982665;0.59844136;0.7610988 +33555;0;-1.1129761;4.5514526;8.173676 +33555;1;-1.5025326;4.498569;8.58728 +33555;3;0.041305542;-0.31915283;0.009170532 +33557;0;-1.0938568;4.5514526;8.183212 +33558;12;0.13685723;0.20929071;0.5983563;0.76120776 +33558;3;0.038864136;-0.31488037;0.0012359619 +33560;0;-1.0890961;4.5894623;8.192749 +33560;1;-1.4888862;4.5006075;8.588589 +33560;3;0.03703308;-0.3106079;-0.008544922 +33562;4;15.492249;-20.240784;-46.946716 +33562;6;-1.0000248;-0.5069038;0.1321593 +33562;7;0.48173764;-0.73566926;0.4761509;0.0;0.8687098;0.47234198;-0.14911813;0.0;-0.11520444 +33562;0;-1.1082001;4.603714;8.192749 +33562;3;0.034591675;-0.30877686;-0.016479492 +33564;12;0.13741273;0.20876616;0.598244;0.76134 +33564;0;-1.0986481;4.627472;8.164139 +33565;1;-1.4759533;4.5023956;8.589884 +33565;2;-0.4312111;-0.003358841;0.3438511; +33565;3;0.03215027;-0.3045044;-0.024414062 +33567;0;-1.1273041;4.622711;8.1689 +33567;12;0.13794202;0.2082574;0.598103;0.7614944 +33568;3;0.02848816;-0.3045044;-0.032348633 +33570;1;-1.4636178;4.5038767;8.591218 +33570;0;-1.1129761;4.646469;8.149826 +33570;3;0.024810791;-0.30265808;-0.038467407 +33572;4;16.093445;-20.690918;-44.69757 +33572;6;-1.1161722;-0.5142016;0.13572481 +33572;7;0.37529594;-0.78224677;0.49723524;0.0;0.9193876;0.3823396;-0.09242808;0.0;-0.117811166 +33572;0;-1.1177521;4.65123;8.2118225 +33572;3;0.018096924;-0.30143738;-0.04273987 +33573;12;0.13844657;0.20775616;0.59793544;0.76167136 +33573;5;999.6485 +33574;0;-1.1034241;4.660721;8.221359 +33574;1;-1.4516371;4.5048957;8.592716 +33574;3;0.011978149;-0.3008423;-0.048233032 +33576;0;-1.1177521;4.65123;8.2165985 +33577;12;0.13892412;0.20725039;0.5977519;0.7618661 +33577;3;0.0046539307;-0.30143738;-0.05067444 +33579;0;-1.1464081;4.6797333;8.2642975 +33579;1;-1.4399245;4.505308;8.594471 +33579;3;-0.005126953;-0.30143738;-0.053131104 +33581;4;16.093445;-21.740723;-45.89691 +33581;6;-1.1458724;-0.51116425;0.13783851 +33581;7;0.3471027;-0.79461306;0.4981062;0.0;0.9301388;0.35955572;-0.074574545;0.0;-0.11983906 +33581;0;-1.1511993;4.660721;8.2595215 +33582;3;-0.014282227;-0.30143738;-0.05618286 +33582;12;0.13937013;0.2067317;0.59755826;0.7620775 +33584;0;-1.1320801;4.6559753;8.235672 +33584;1;-1.4283388;4.504934;8.596601 +33584;2;-0.36185598;-0.09212732;0.34059238; +33584;3;-0.02709961;-0.30265808;-0.05984497 +33587;0;-1.1368561;4.6654816;8.297668 +33587;3;-0.041763306;-0.3032837;-0.061065674 +33588;12;0.1397806;0.20618778;0.5973637;0.7623023 +33589;0;-1.1225281;4.6797333;8.354904 +33589;1;-1.416797;4.503474;8.599274 +33590;3;-0.053970337;-0.3063202;-0.06350708 +33591;4;16.242981;-19.79065;-44.096375 +33591;6;-1.1193293;-0.50677335;0.1335558 +33591;7;0.37424624;-0.7867158;0.4909359;0.0;0.91999215;0.3814515;-0.090051815;0.0;-0.116423026 +33591;0;-1.1320801;4.6654816;8.38353 +33591;3;-0.06802368;-0.3069458;-0.06350708 +33592;12;0.14014505;0.20560434;0.5971645;0.7625489 +33593;0;-1.1607513;4.684494;8.373978 +33593;1;-1.4051968;4.500875;8.602538 +33593;3;-0.08268738;-0.3081665;-0.06411743 +33595;0;-1.1607513;4.6179657;8.421677 +33596;12;0.14046021;0.20497859;0.5969767;0.7628064 +33596;3;-0.09613037;-0.3069458;-0.06350708 +33598;0;-1.1416473;4.603714;8.497986 +33598;1;-1.3935758;4.4969916;8.606458 +33598;3;-0.10896301;-0.3050995;-0.06411743 +33600;4;15.492249;-21.890259;-45.29724 +33600;6;-1.2666401;-0.49274418;0.13354371 +33600;7;0.23672815;-0.8405983;0.48719007;0.0;0.96446794;0.26386058;-0.013374522;0.0;-0.11730768 +33601;0;-1.1416473;4.560959;8.612442 +33601;3;-0.12239075;-0.29899597;-0.06350708 +33601;12;0.14071847;0.2043037;0.5968028;0.7630759 +33603;0;-1.1607513;4.4991913;8.698288 +33603;1;-1.3821667;4.4918337;8.610991 +33603;2;-0.298025;-0.07439518;0.11658287; +33603;3;-0.13461304;-0.2904358;-0.061676025 +33605;0;-1.1368561;4.5181885;8.779373 +33605;12;0.1409134;0.20359483;0.59664416;0.76335335 +33606;3;-0.14376831;-0.275177;-0.05923462 +33608;0;-1.1225281;4.5514526;8.855682 +33608;1;-1.3713686;4.4856153;8.615957 +33608;3;-0.15049744;-0.2568512;-0.056793213 +33610;4;14.743042;-20.991516;-44.69757 +33610;6;-1.3224558;-0.47151914;0.12608552 +33610;7;0.1884755;-0.8635486;0.46771884;0.0;0.9756672;0.21897437;0.011129849;0.0;-0.11202959 +33611;0;-1.1320801;4.52771;8.922455 +33611;3;-0.1547699;-0.23669434;-0.05496216 +33611;12;0.14103945;0.2028792;0.59650844;0.76362664 +33611;5;999.6485 +33612;0;-1.1559601;4.503952;8.931976 +33612;1;-1.362093;4.478881;8.620931 +33613;3;-0.1559906;-0.21591187;-0.052520752 +33615;0;-1.1655273;4.456436;8.989227 +33615;12;0.1410854;0.20221542;0.59640163;0.7638776 +33615;3;-0.15293884;-0.19270325;-0.049453735 +33617;0;-1.1941986;4.4421844;9.0607605 +33617;1;-1.3544055;4.4719;8.625764 +33617;3;-0.15171814;-0.17010498;-0.04701233 +33621;4;16.242981;-21.890259;-45.747375 +33621;6;-1.4657706;-0.45243564;0.13104364 +33621;7;0.04712584;-0.8944292;0.44471952;0.0;0.99195135;0.09428504;0.08451338;0.0;-0.11752164 +33621;0;-1.2085114;4.3946686;9.108459 +33621;3;-0.14805603;-0.14872742;-0.04396057 +33621;12;0.14106368;0.20161422;0.5963178;0.764106 +33622;0;-1.2324066;4.366165;9.160919 +33622;1;-1.3485471;4.4650617;8.630223 +33622;2;-0.24121583;0.051137924;-0.38500595; +33623;3;-0.13949585;-0.12918091;-0.04273987 +33624;0;-1.2610626;4.370926;9.19429 +33625;3;-0.13461304;-0.1096344;-0.042129517 +33625;12;0.14098383;0.20110181;0.5962573;0.7643028 +33627;0;-1.3231812;4.3614197;9.242004 +33627;1;-1.3443624;4.4587173;8.634155 +33627;3;-0.12973022;-0.0925293;-0.03907776 +33629;4;15.792847;-20.690918;-43.94684 +33629;6;-1.5056536;-0.4370234;0.142204 +33629;7;0.0045823846;-0.90409374;0.42730942;0.0;0.99171114;0.058978572;0.11415091;0.0;-0.12840524 +33630;0;-1.3231812;4.313904;9.289688 +33630;3;-0.1254425;-0.0790863;-0.038467407 +33630;12;0.14086683;0.20068027;0.59620935;0.7644727 +33631;0;-1.3757172;4.366165;9.299225 +33632;1;-1.3415545;4.4527254;8.637683 +33632;3;-0.11933899;-0.067474365;-0.037246704 +33634;0;-1.3900452;4.356659;9.327835 +33634;12;0.1407197;0.20033497;0.596174;0.7646179 +33634;3;-0.113845825;-0.060150146;-0.037857056 +33636;0;-1.4187012;4.342407;9.346909 +33636;1;-1.3396952;4.447188;8.640824 +33637;3;-0.10896301;-0.055267334;-0.036636353 +33639;4;15.193176;-20.840454;-45.29724 +33639;6;-1.4851286;-0.43057847;0.15063317 +33639;7;0.022187535;-0.90539193;0.4239967;0.0;0.9904099;0.077753186;0.11420456;0.0;-0.13636698 +33639;0;-1.4760437;4.313904;9.351685 +33639;3;-0.10223389;-0.051589966;-0.038467407 +33640;12;0.14055815;0.20004606;0.5961425;0.76474786 +33641;0;-1.552475;4.3091583;9.361221 +33641;1;-1.3384068;4.4420524;8.643665 +33641;2;-0.009541154;0.15723562;-0.69720745; +33642;3;-0.09857178;-0.05281067;-0.037857056 +33644;0;-1.5476837;4.2949066;9.361221 +33644;12;0.14039782;0.19979486;0.5961081;0.76486975 +33644;3;-0.09429932;-0.05770874;-0.037857056 +33646;0;-1.600235;4.2378845;9.385086 +33646;1;-1.3371264;4.437241;8.646335 +33646;3;-0.0912323;-0.06442261;-0.03907776 +33651;4;15.04364;-21.290588;-46.347046 +33651;6;-1.5484849;-0.4187974;0.16888413 +33651;7;-0.046343576;-0.91335124;0.40452653;0.0;0.9870525;0.020381548;0.15909722;0.0;-0.15355654 +33651;0;-1.6098022;4.2616425;9.404144 +33651;3;-0.09063721;-0.076034546;-0.037857056 +33651;12;0.14025271;0.19955307;0.596067;0.76499146 +33653;1;-1.335266;4.4325914;8.649006 +33653;0;-1.605011;4.223633;9.399368 +33653;3;-0.085739136;-0.087646484;-0.036636353 +33653;5;999.6232 +33654;12;0.1401365;0.19929206;0.5960171;0.7651196 +33654;0;-1.6862335;4.2473907;9.370773 +33654;3;-0.081466675;-0.10229492;-0.037246704 +33656;1;-1.3325121;4.4283075;8.651625 +33656;0;-1.7196655;4.2188873;9.375534 +33657;3;-0.081466675;-0.119400024;-0.037246704 +33659;4;14.892578;-21.141052;-43.797302 +33659;6;-1.6901811;-0.4166875;0.18140416 +33659;7;-0.18964574;-0.9079257;0.37377173;0.0;0.96789354;-0.108910464;0.22654007;0.0;-0.16497393 +33659;12;0.14006789;0.19900139;0.5959582;0.7652537 +33659;0;-1.7101135;4.214142;9.389847 +33659;3;-0.07902527;-0.13772583;-0.036636353 +33661;0;-1.7292175;4.2378845;9.399368 +33661;1;-1.3283663;4.424125;8.654402 +33661;2;0.2621001;0.24017096;-0.770751; +33661;3;-0.07536316;-0.15605164;-0.037246704 +33663;12;0.14005327;0.19865325;0.59588563;0.76540333 +33663;0;-1.7292175;4.223633;9.394608 +33664;3;-0.06985474;-0.17437744;-0.036636353 +33666;1;-1.322715;4.420235;8.657254 +33666;0;-1.7244415;4.185623;9.418457 +33666;3;-0.06436157;-0.19026184;-0.036026 +33668;4;15.342712;-20.39032;-45.89691 +33668;6;-1.4967151;-0.41210806;0.18108602 +33668;7;8.6441933E-4;-0.9137654;0.4062414;0.0;0.9862898;0.067816995;0.15044318;0.0;-0.16501985 +33669;0;-1.7053375;4.1951294;9.4756775 +33669;3;-0.060699463;-0.20248413;-0.034805298 +33670;12;0.14010383;0.19824535;0.5957937;0.7655714 +33671;0;-1.7053375;4.199875;9.451843 +33671;1;-1.3157078;4.416746;8.660102 +33671;3;-0.054595947;-0.21408081;-0.032974243 +33673;0;-1.6814575;4.2378845;9.43277 +33673;12;0.140219;0.19779569;0.59569305;0.765745 +33673;3;-0.04725647;-0.21897888;-0.032974243 +33676;0;-1.6862335;4.233139;9.4423065 +33676;1;-1.3077947;4.413812;8.662797 +33676;3;-0.03993225;-0.2238617;-0.03112793 +33679;12;0.14038604;0.19732514;0.59558445;0.7659203 +33679;4;16.093445;-20.991516;-46.347046 +33679;6;-1.5240952;-0.41562393;0.17671987 +33679;7;-0.02494724;-0.9138672;0.4052462;0.0;0.9866661;0.042709704;0.15705414;0.0;-0.16083455 +33680;0;-1.6766663;4.223633;9.4423065 +33680;3;-0.030151367;-0.2250824;-0.02746582 +33681;2;0.3365593;0.25782394;-0.8119335; +33681;1;-1.2994076;4.4115295;8.665221 +33682;0;-1.6575623;4.2046356;9.4423065 +33682;3;-0.019760132;-0.22142029;-0.024414062 +33682;0;-1.6384583;4.2283936;9.418457 +33683;12;0.14059727;0.19685759;0.59547174;0.76608944 +33683;3;-0.0063476562;-0.21714783;-0.021377563 +33685;0;-1.6527863;4.2046356;9.399368 +33685;1;-1.291198;4.4102383;8.667106 +33685;3;0.0064849854;-0.21408081;-0.020751953 +33688;0;-1.614563;4.214142;9.404144 +33688;4;15.792847;-20.39032;-46.647644 +33688;6;-1.4409757;-0.41589138;0.17002866 +33688;7;0.05980275;-0.90705895;0.41673446;0.0;0.9861363;0.11842099;0.11623986;0.0;-0.15478651 +33688;12;0.1408415;0.19643451;0.5953634;0.7662373 +33689;3;0.018707275;-0.2079773;-0.01586914 +33690;5;999.6232 +33691;0;-1.5954742;4.2378845;9.385086 +33691;1;-1.2830858;4.4100585;8.668402 +33691;3;0.031539917;-0.19882202;-0.012207031 +33693;0;-1.590683;4.2188873;9.342148 +33693;12;0.14113076;0.196056;0.5952472;0.76637125 +33693;3;0.04496765;-0.18782043;-0.008544922 +33695;0;-1.5476837;4.2283936;9.313538 +33696;1;-1.2755702;4.4110208;8.669021 +33696;3;0.059020996;-0.1774292;-0.0018310547 +33697;4;15.342712;-20.991516;-45.89691 +33697;6;-1.5213891;-0.42107576;0.16467096 +33697;7;-0.018203491;-0.91153604;0.41081703;0.0;0.98857766;0.045073092;0.14381418;0.0;-0.14960861 +33697;0;-1.5954742;4.209381;9.318314 +33697;3;0.074905396;-0.16522217;0.0036773682 +33698;12;0.14144279;0.19574738;0.59514564;0.7664715 +33699;0;-1.600235;4.223633;9.256302 +33699;1;-1.2687827;4.4132524;8.668881 +33699;2;0.27645576;0.25276756;-0.72558594; +33699;3;0.08773804;-0.15177917;0.008560181 +33702;0;-1.585907;4.2378845;9.232452 +33703;12;0.1417822;0.19551936;0.59505796;0.76653504 +33703;3;0.10055542;-0.13955688;0.015274048 +33704;0;-1.576355;4.2711487;9.179993 +33706;1;-1.2628273;4.416755;8.667967 +33706;3;0.11462402;-0.1273346;0.019561768 +33706;4;15.492249;-20.541382;-46.496582 +33707;6;-1.3679155;-0.42994598;0.17005785 +33707;7;0.12948957;-0.8903451;0.43648383;0.0;0.9795748;0.18315381;0.0829936;0.0;-0.1538366 +33707;0;-1.557251;4.2426453;9.170456 +33707;3;0.1262207;-0.11878967;0.026275635 +33708;12;0.14214353;0.19537455;0.5949834;0.766563 +33711;1;-1.257549;4.421438;8.666347 +33711;0;-1.5285797;4.252136;9.098923 +33711;3;0.13539124;-0.1096344;0.0317688 +33712;12;0.14252806;0.19530706;0.59492695;0.7665525 +33712;0;-1.542923;4.290146;9.056 +33712;3;0.14576721;-0.10412598;0.038497925 +33717;1;-1.2527133;4.4270997;8.664157 +33717;0;-1.562027;4.280655;9.0607605 +33717;3;0.15249634;-0.10168457;0.045211792 +33717;4;15.193176;-21.890259;-44.996643 +33717;6;-1.5762331;-0.43572712;0.17071666 +33717;7;-0.077061534;-0.90655;0.4150044;0.0;0.98505884;-0.00492879;0.17214745;0.0;-0.15401481 +33717;0;-1.581131;4.3091583;8.979691 +33718;3;0.15737915;-0.10107422;0.051315308 +33718;12;0.14293282;0.19529745;0.59488815;0.76650983 +33719;0;-1.590683;4.3329163;8.912918 +33719;2;0.25932264;0.21716309;-0.46483326; +33720;3;0.16226196;-0.10475159;0.057434082 +33720;1;-1.2478971;4.4335194;8.661569 +33721;0;-1.566803;4.3376617;8.84137 +33721;12;0.14336585;0.19531907;0.5948674;0.7664395 +33721;3;0.16897583;-0.1096344;0.06414795 +33723;0;-1.557251;4.3376617;8.827072 +33723;1;-1.2425678;4.4405212;8.658748 +33724;3;0.17204285;-0.119400024;0.06964111 +33726;4;15.942383;-20.840454;-46.046448 +33726;6;-1.2924681;-0.4507102;0.1746208 +33726;7;0.19780318;-0.8654971;0.460205;0.0;0.96768665;0.2473117;0.049186915;0.0;-0.15638521 +33726;0;-1.5285797;4.3614197;8.793686 +33726;3;0.1750946;-0.13101196;0.07330322 +33726;12;0.14383507;0.19534148;0.5948622;0.7663499 +33727;5;999.6232 +33728;0;-1.5094757;4.347168;8.769836 +33728;1;-1.2362219;4.447952;8.655841 +33728;3;0.1750946;-0.1438446;0.078811646 +33730;0;-1.5238037;4.3614197;8.76506 +33730;12;0.14435065;0.19533862;0.594867;0.76625 +33731;3;0.17448425;-0.15544128;0.08430481 +33732;0;-1.5285797;4.366165;8.76506 +33733;1;-1.2286698;4.4554973;8.653036 +33733;3;0.17141724;-0.16705322;0.08796692 +33736;12;0.14490902;0.19528988;0.59488094;0.7661462 +33736;4;15.342712;-20.991516;-45.89691 +33736;6;-1.2709254;-0.4562013;0.17265823 +33736;7;0.2186966;-0.85767084;0.46537364;0.0;0.9635271;0.26518735;0.035935402;0.0;-0.15423194 +33736;0;-1.4808044;4.3851776;8.731674 +33736;3;0.16653442;-0.1786499;0.09162903 +33737;0;-1.4999237;4.404175;8.712601 +33737;1;-1.2199475;4.462893;8.650457 +33737;2;0.24693441;0.16115141;-0.16535664; +33738;3;0.16226196;-0.19270325;0.0965271 +33739;0;-1.4664917;4.3851776;8.693527 +33740;12;0.14549534;0.19518833;0.59490436;0.76604277 +33740;3;0.1579895;-0.20370483;0.10018921 +33743;1;-1.2099695;4.4700117;8.648184 +33743;0;-1.4473724;4.432678;8.612442 +33743;3;0.15249634;-0.21836853;0.10569763 +33745;4;16.242981;-19.190979;-46.046448 +33745;6;-1.063821;-0.46968162;0.16650014 +33745;7;0.4132451;-0.7795502;0.47066957;0.0;0.8985476;0.4329578;-0.07182976;0.0;-0.1477852 +33745;0;-1.4282684;4.437439;8.583832 +33745;3;0.14454651;-0.23242188;0.111190796 +33746;12;0.14616863;0.19498335;0.59471303;0.76611537 +33747;0;-1.3948212;4.465927;8.559982 +33748;1;-1.198612;4.4767885;8.646259 +33748;3;0.14027405;-0.24768066;0.11729431 +33750;0;-1.3948212;4.4611816;8.555222 +33750;12;0.1468083;0.19475232;0.59476113;0.76601446 +33751;3;0.13539124;-0.26112366;0.12158203 +33752;0;-1.3804932;4.4849396;8.564758 +33752;1;-1.1857169;4.483241;8.644694 +33752;3;0.12866211;-0.27456665;0.1270752 +33754;4;15.193176;-21.440125;-46.046448 +33754;6;-1.2046763;-0.47713757;0.15980849 +33754;7;0.28519887;-0.8294388;0.4803052;0.0;0.94798744;0.31801194;-0.01372768;0.0;-0.1413565 +33754;0;-1.3375092;4.4849396;8.564758 +33755;3;0.12132263;-0.2849579;0.13012695 +33755;12;0.14748022;0.19444625;0.5948245;0.7659139 +33756;0;-1.2992706;4.513443;8.555222 +33757;1;-1.1714879;4.4892297;8.643526 +33757;2;0.16525316;0.09170914;0.017585754; +33757;3;0.11155701;-0.2935028;0.13012695 +33759;0;-1.2849579;4.5181885;8.559982 +33759;12;0.14817199;0.1940705;0.5949019;0.7658156 +33760;3;0.10240173;-0.30143738;0.1307373 +33761;0;-1.2467346;4.52771;8.540909 +33761;1;-1.1565233;4.494462;8.642822 +33762;3;0.09140015;-0.3081665;0.1307373 +33764;4;14.442444;-19.641113;-44.69757 +33764;6;-1.0865468;-0.48310298;0.1449484 +33764;7;0.4012795;-0.78374034;0.47405243;0.0;0.9069804;0.41226634;-0.08615693;0.0;-0.12791118 +33764;0;-1.2085114;4.522949;8.564758 +33764;3;0.07795715;-0.31732178;0.1307373 +33765;12;0.14886159;0.19363074;0.5949555;0.7657515 +33765;5;999.6232 +33766;0;-1.1702881;4.556198;8.54567 +33766;1;-1.1408318;4.498779;8.642662 +33767;3;0.06390381;-0.3240509;0.1282959 +33768;0;-1.1655273;4.5419617;8.517059 +33769;12;0.14952742;0.19313608;0.5950433;0.76567847 +33769;3;0.051696777;-0.33137512;0.1270752 +33771;0;-1.1368561;4.556198;8.478897 +33771;1;-1.124562;4.5019975;8.643118 +33772;3;0.04008484;-0.3368683;0.1282959 +33773;4;15.942383;-21.141052;-45.29724 +33773;6;-1.232555;-0.48937947;0.13328572 +33773;7;0.2699556;-0.83261496;0.48360765;0.0;0.95570207;0.29288012;-0.029240139;0.0;-0.11729327 +33774;12;0.15016495;0.19257723;0.59513205;0.7656255 +33774;0;-1.1464081;4.5514526;8.507523 +33774;3;0.027267456;-0.34420776;0.12461853 +33776;0;-1.1225281;4.546707;8.531357 +33776;1;-1.1077806;4.5041866;8.644145 +33776;2;0.020738482;0.024408817;0.07414055; +33776;3;0.015045166;-0.35031128;0.122802734 +33778;0;-1.0795288;4.513443;8.536133 +33778;12;0.15077455;0.19195774;0.5952253;0.76558876 +33779;3;0.0064849854;-0.35214233;0.11973572 +33780;1;-1.0905966;4.5053244;8.645737 +33781;0;-1.0556488;4.494446;8.569519 +33781;3;-0.0020599365;-0.35153198;0.11729431 +33783;4;15.792847;-19.641113;-45.596313 +33783;6;-1.1628938;-0.4799397;0.12256897 +33783;7;0.3418888;-0.81424683;0.46916327;0.0;0.9334617;0.3518685;-0.06955421;0.0;-0.10844945 +33783;0;-1.0365448;4.4897003;8.602905 +33783;3;-0.012451172;-0.34786987;0.11546326 +33784;12;0.15135677;0.1912806;0.59530205;0.76558375 +33785;1;-1.0735377;4.5056477;8.647702 +33785;0;-1.0126648;4.494446;8.579071 +33785;3;-0.020385742;-0.3405304;0.1124115 +33787;0;-0.9983368;4.5181885;8.579071 +33788;12;0.15189937;0.19058472;0.5953924;0.7655795 +33788;3;-0.025268555;-0.33320618;0.110580444 +33790;1;-1.0570832;4.5053086;8.649906 +33792;0;-0.97442627;4.480179;8.583832 +33792;3;-0.031982422;-0.324646;0.106918335 +33792;0;-0.98399353;4.432678;8.612442 +33793;3;-0.037490845;-0.31671143;0.103256226 +33793;12;0.15239038;0.18988907;0.5954857;0.76558226 +33793;4;15.342712;-21.290588;-45.14618 +33793;6;-1.351205;-0.47269136;0.11375928 +33793;7;0.1659827;-0.86896586;0.46620604;0.0;0.9809359;0.19394481;0.01225432;0.0;-0.10106682 +33795;0;-0.9792175;4.404175;8.6410675 +33795;2;-0.08327842;0.086262226;0.025556564; +33795;1;-1.0414497;4.50432;8.652317 +33795;3;-0.044204712;-0.3075409;0.10140991 +33797;0;-0.9696655;4.375656;8.612442 +33797;12;0.15282941;0.18920563;0.5955785;0.7655917 +33798;9;2AEC2AEBC4E1;-70;-2147483648 +33799;3;-0.049697876;-0.29899597;0.10079956 +33799;0;-0.9553375;4.380417;8.588608 +33800;3;-0.052749634;-0.2898407;0.09957886 +33800;1;-1.0266204;4.502772;8.654895 +33802;4;15.193176;-20.840454;-46.046448 +33802;6;-1.292289;-0.46915245;0.11077772 +33802;7;0.22517805;-0.8575821;0.46243677;0.0;0.96931493;0.24521607;-0.01724676;0.0;-0.098606415 +33802;0;-0.95054626;4.3851776;8.617218 +33802;3;-0.058258057;-0.28189087;0.10140991 +33803;12;0.15322;0.18853806;0.595675;0.76560336 +33803;5;999.6089 +33804;0;-0.9553375;4.366165;8.607666 +33804;1;-1.0125282;4.500851;8.657554 +33805;3;-0.061920166;-0.275177;0.10203552 +33807;0;-0.9457855;4.4184265;8.626755 +33807;12;0.15356943;0.187891;0.5957807;0.76561004 +33807;3;-0.064971924;-0.26966858;0.10385132 +33811;0;-0.94099426;4.370926;8.65538 +33811;1;-0.9989382;4.4986153;8.660294 +33811;3;-0.065582275;-0.26417542;0.10447693 +33812;4;14.143372;-21.290588;-46.347046 +33812;6;-1.3187218;-0.4652759;0.10829253 +33812;7;0.20099235;-0.8654543;0.4589018;0.0;0.974819;0.22290032;-0.0065833777;0.0;-0.09659174 +33812;0;-0.93621826;4.370926;8.6458435 +33812;3;-0.065582275;-0.26112366;0.10507202 +33814;12;0.15388459;0.18725495;0.5958994;0.76561034 +33814;0;-0.92666626;4.366165;8.6362915 +33814;1;-0.9857165;4.496267;8.663028 +33814;2;-0.09514475;0.1775918;8.4400177E-4; +33814;3;-0.06802368;-0.25868225;0.106918335 +33816;0;-0.9553375;4.342407;8.6410675 +33817;12;0.15418173;0.18663344;0.5960256;0.7656041 +33817;3;-0.06802368;-0.2568512;0.10873413 +33819;0;-0.9219055;4.342407;8.660141 +33819;1;-0.97265744;4.4937925;8.665788 +33819;3;-0.06741333;-0.2568512;0.10873413 +33821;4;14.143372;-20.991516;-47.546387 +33821;6;-1.2521679;-0.4625328;0.106054455 +33821;7;0.26664713;-0.84988;0.45453632;0.0;0.95912707;0.28034806;-0.03847061;0.0;-0.09473298 +33821;0;-0.90278625;4.3519135;8.669678 +33822;3;-0.06680298;-0.25624084;0.109954834 +33822;12;0.15447289;0.18601114;0.5961426;0.76560575 +33824;1;-0.9594852;4.49136;8.668517 +33825;0;-0.883667;4.366165;8.650604 +33825;3;-0.06680298;-0.2556305;0.11302185 +33826;0;-0.86935425;4.389923;8.664902 +33827;12;0.15476452;0.18539204;0.5962807;0.76558936 +33827;3;-0.06375122;-0.25746155;0.114852905 +33829;0;-0.835907;4.380417;8.6792145 +33829;1;-0.9462542;4.489059;8.671163 +33829;3;-0.06375122;-0.2556305;0.114852905 +33831;4;13.243103;-20.240784;-46.496582 +33831;6;-1.2132032;-0.46554768;0.09601522 +33831;7;0.30809468;-0.8370501;0.45213386;0.0;0.94749105;0.31277004;-0.06660149;0.0;-0.085665114 +33831;0;-0.864563;4.3376617;8.722153 +33831;3;-0.06253052;-0.25378418;0.114852905 +33832;12;0.15505844;0.1847755;0.5964257;0.76556605 +33833;0;-0.850235;4.3614197;8.750748 +33834;1;-0.93309754;4.4867706;8.673772 +33834;3;-0.061920166;-0.25074768;0.11729431 +33834;2;-0.104756415;0.18860435;-0.04415703; +33837;12;0.15535223;0.18416317;0.5965722;0.7655399 +33837;0;-0.826355;4.3376617;8.78891 +33837;3;-0.058258057;-0.24584961;0.11729431 +33842;1;-0.92011803;4.484601;8.67628 +33842;12;0.15564449;0.18356457;0.5967203;0.7655089 +33842;0;-0.8215637;4.389923;8.803207 +33842;3;-0.05519104;-0.24035645;0.11607361 +33842;4;14.143372;-21.740723;-48.59619 +33842;6;-1.3025216;-0.46085617;0.09305596 +33842;7;0.22407591;-0.8636336;0.45158285;0.0;0.9710114;0.23741424;-0.02777198;0.0;-0.08322738 +33842;0;-0.8120117;4.3091583;8.769836 +33843;3;-0.049697876;-0.23242188;0.11546326 +33843;5;999.6089 +33843;0;-0.7833557;4.356659;8.827072 +33843;1;-0.90764755;4.4827027;8.6785755 +33843;3;-0.046035767;-0.22691345;0.11546326 +33845;12;0.15593201;0.18299815;0.5968706;0.7654688 +33846;0;-0.7785797;4.347168;8.846146 +33846;3;-0.042373657;-0.21897888;0.114852905 +33847;0;-0.7976837;4.356659;8.812759 +33848;1;-0.8957476;4.4811444;8.680615 +33848;3;-0.03564453;-0.21224976;0.1136322 +33850;4;14.743042;-21.290588;-45.596313 +33850;6;-1.4257438;-0.4575052;0.09026866 +33850;7;0.10455554;-0.88773566;0.44832316;0.0;0.9912253;0.1296791;0.025612485;0.0;-0.08087525 +33850;0;-0.7594757;4.356659;8.78891 +33850;3;-0.03137207;-0.20675659;0.11302185 +33851;12;0.15621585;0.1824698;0.5970207;0.76541996 +33852;0;-0.74513245;4.366165;8.812759 +33852;1;-0.8844136;4.4800467;8.682344 +33852;2;-0.15125275;0.18882275;-0.16180897; +33853;3;-0.024658203;-0.20004272;0.111190796 +33854;0;-0.7594757;4.370926;8.836609 +33855;12;0.15649985;0.18198138;0.5971678;0.7653635 +33855;3;-0.016723633;-0.19392395;0.109954834 +33857;0;-0.7833557;4.356659;8.822296 +33857;1;-0.8736951;4.47945;8.683737 +33857;3;-0.011230469;-0.18904114;0.10751343 +33859;4;14.593506;-20.541382;-46.946716 +33859;6;-1.3094203;-0.45713732;0.08856047 +33860;7;0.21968539;-0.8668425;0.4475738;0.0;0.97233725;0.2318764;-0.028169587;0.0;-0.07936322 +33860;0;-0.7594757;4.366165;8.827072 +33860;3;-0.006942749;-0.18232727;0.10385132 +33861;12;0.1567878;0.18153556;0.597305;0.7653033 +33862;0;-0.7594757;4.366165;8.827072 +33862;1;-0.8635499;4.4793158;8.684821 +33862;3;-0.001449585;-0.1768341;0.10018921 +33865;0;-0.74513245;4.4184265;8.831833 +33865;12;0.15707953;0.1811303;0.5974356;0.76523757 +33865;3;0.0046539307;-0.16949463;0.09713745 +33869;1;-0.85405636;4.479623;8.685602 +33869;0;-0.73080444;4.380417;8.84137 +33869;3;0.0077209473;-0.16217041;0.09284973 +33870;4;13.842773;-21.141052;-45.29724 +33870;6;-1.419435;-0.45864448;0.0824699 +33870;7;0.114217706;-0.8864018;0.44860473;0.0;0.9907061;0.13520098;0.014904451;0.0;-0.073863134 +33870;0;-0.7403717;4.375656;8.865219 +33870;3;0.011383057;-0.15422058;0.090408325 +33871;12;0.15736893;0.1807645;0.5975536;0.7651726 +33872;1;-0.84533364;4.4801836;8.686166 +33872;2;-0.15358168;0.16672325;-0.19069862; +33872;0;-0.71647644;4.366165;8.860458 +33872;3;0.01260376;-0.1456604;0.087371826 +33874;0;-0.73080444;4.404175;8.831833 +33875;12;0.15764894;0.18044041;0.59766066;0.76510775 +33875;3;0.01626587;-0.13711548;0.08369446 +33876;0;-0.7260437;4.3994293;8.827072 +33876;1;-0.8374533;4.48097;8.686523 +33877;3;0.018096924;-0.1273346;0.0818634 +33879;4;14.442444;-21.740723;-47.096252 +33879;6;-1.388958;-0.46102375;0.082067184 +33879;7;0.14436263;-0.8808318;0.4508823;0.0;0.9867976;0.16195796;4.458502E-4;0.0;-0.073416695 +33879;0;-0.7499237;4.4279175;8.807983 +33880;12;0.15791236;0.18015903;0.5977602;0.765042 +33880;3;0.018096924;-0.12123108;0.079422 +33881;5;999.6089 +33881;0;-0.7499237;4.437439;8.822296 +33881;1;-0.8304285;4.4819236;8.686706 +33882;3;0.018096924;-0.11390686;0.07698059 +33884;12;0.15815648;0.17991869;0.5978549;0.764974 +33884;0;-0.7738037;4.456436;8.803207 +33885;3;0.019927979;-0.1084137;0.07698059 +33889;1;-0.82406175;4.4829435;8.686787 +33889;0;-0.7594757;4.4611816;8.76506 +33889;3;0.018096924;-0.103515625;0.075149536 +33890;4;14.292908;-21.890259;-46.496582 +33890;6;-1.3791525;-0.4692902;0.08643221 +33890;7;0.15143591;-0.87556124;0.45875892;0.0;0.985464;0.16988069;-0.0010761619;0.0;-0.07699203 +33891;12;0.15838392;0.17970729;0.597947;0.7649048 +33891;0;-0.7594757;4.480179;8.7603 +33891;3;0.01687622;-0.099853516;0.07330322 +33891;0;-0.7738037;4.494446;8.81752 +33892;1;-0.8181537;4.483913;8.686844 +33892;2;-0.12291467;0.10048962;-0.15535164; +33892;3;0.015655518;-0.09680176;0.07330322 +33893;0;-0.7785797;4.53244;8.812759 +33894;12;0.1585939;0.17951341;0.59803796;0.7648357 +33894;3;0.014434814;-0.09375;0.07392883 +33895;0;-0.76901245;4.503952;8.812759 +33896;1;-0.8125398;4.484795;8.686915 +33896;3;0.01260376;-0.09008789;0.07148743 +33898;4;12.942505;-21.141052;-47.247314 +33898;6;-1.2390774;-0.47093046;0.08704078 +33898;7;0.28714406;-0.84256476;0.4556676;0.0;0.9547497;0.2902185;-0.065009795;0.0;-0.07746819 +33898;0;-0.75468445;4.522949;8.831833 +33898;3;0.009536743;-0.087020874;0.06964111 +33899;12;0.15879121;0.17932637;0.5981263;0.7647695 +33900;1;-0.80719954;4.4855137;8.687042 +33900;0;-0.73080444;4.546707;8.822296 +33901;3;0.0077209473;-0.08518982;0.06964111 +33903;0;-0.75468445;4.556198;8.836609 +33903;12;0.15897226;0.1791477;0.5982188;0.7647014 +33903;3;0.005874634;-0.079696655;0.06842041 +33905;1;-0.80220467;4.486083;8.687211 +33906;0;-0.7594757;4.594223;8.822296 +33906;3;0.002822876;-0.076034546;0.066589355 +33907;4;14.442444;-22.04132;-47.096252 +33907;6;-1.3232849;-0.47859982;0.08587423 +33907;7;0.20579338;-0.86058986;0.46586928;0.0;0.97562957;0.21746492;-0.029257163;0.0;-0.076131806 +33908;0;-0.73080444;4.603714;8.831833 +33908;3;0.0022125244;-0.07420349;0.0647583 +33910;12;0.1591369;0.17897794;0.5983116;0.7646343 +33910;1;-0.7975627;4.4865;8.687424 +33910;0;-0.7403717;4.61322;8.812759 +33911;2;-0.10293573;-0.011083603;-0.17306995; +33911;3;0.0016021729;-0.07359314;0.059265137 +33913;12;0.1592828;0.1788174;0.59840274;0.7645702 +33913;0;-0.73558044;4.627472;8.84137 +33913;3;-2.2888184E-4;-0.071136475;0.058654785 +33915;0;-0.74513245;4.6417236;8.850922 +33915;1;-0.79318875;4.4868274;8.6876545 +33915;3;3.8146973E-4;-0.067474365;0.053771973 +33917;4;13.842773;-21.890259;-47.247314 +33917;6;-1.2799361;-0.4815522;0.083988935 +33917;7;0.24854337;-0.8490513;0.4661954;0.0;0.96576315;0.25416344;-0.051987246;0.0;-0.07434999 +33917;0;-0.72125244;4.622711;8.850922 +33917;3;0.0016021729;-0.06503296;0.050720215 +33918;12;0.15941857;0.17866169;0.5984833;0.7645152 +33919;5;999.6089 +33920;0;-0.7499237;4.660721;8.865219 +33920;1;-0.7892113;4.4871416;8.687855 +33920;3;0.004043579;-0.060760498;0.046432495 +33922;0;-0.7403717;4.7082367;8.860458 +33922;12;0.15954484;0.1785225;0.59855336;0.7644666 +33922;3;0.007095337;-0.055267334;0.04460144 +33924;0;-0.76901245;4.7082367;8.846146 +33924;1;-0.7857489;4.4876914;8.687884 +33924;3;0.011383057;-0.050369263;0.039718628 +33927;4;13.392639;-21.740723;-46.647644 +33927;6;-1.2485422;-0.48754296;0.086713925 +33927;7;0.27703315;-0.8380081;0.47010106;0.0;0.9578091;0.27980506;-0.065658115;0.0;-0.07651462 +33927;0;-0.76901245;4.693985;8.860458 +33927;3;0.01687622;-0.0448761;0.03605652 +33928;12;0.15966488;0.17840949;0.5986118;0.7644222 +33930;0;-0.7785797;4.6892242;8.879532 +33930;1;-0.78291196;4.4885397;8.687702 +33930;2;-0.08946532;-0.11922073;-0.2065134; +33930;3;0.021759033;-0.039993286;0.03237915 +33931;0;-0.7642517;4.6797333;8.855682 +33932;12;0.15978114;0.17832991;0.5986566;0.76438123 +33932;3;0.026031494;-0.035095215;0.02810669 +33934;0;-0.7738037;4.6987305;8.884293 +33934;1;-0.7806555;4.489761;8.687274 +33934;3;0.03213501;-0.0289917;0.026260376 +33936;4;13.842773;-21.440125;-44.996643 +33936;6;-1.3243208;-0.4849243;0.08687871 +33936;7;0.20384285;-0.85797274;0.47151956;0.0;0.9759892;0.21585827;-0.029156595;0.0;-0.07676583 +33937;0;-0.7881317;4.7319946;8.893829 +33937;3;0.037628174;-0.023498535;0.024429321 +33937;12;0.15989794;0.17828695;0.59868765;0.76434255 +33939;1;-0.7790187;4.491436;8.686555 +33939;0;-0.816803;4.6987305;8.879532 +33939;3;0.041900635;-0.017990112;0.020767212 +33941;0;-0.835907;4.7414856;8.908142 +33941;12;0.16001526;0.17828412;0.5987081;0.76430273 +33941;3;0.047409058;-0.013717651;0.020767212 +33943;0;-0.864563;4.73674;8.879532 +33944;1;-0.77797645;4.4935155;8.685574 +33944;3;0.05290222;-0.012496948;0.02015686 +33946;4;14.743042;-20.39032;-47.096252 +33946;6;-1.1403584;-0.48808756;0.09705989 +33946;7;0.37400645;-0.8026657;0.46459332;0.0;0.9234681;0.36854485;-0.106684096;0.0;-0.0855918 +33946;0;-0.864563;4.7700043;8.884293 +33946;3;0.057174683;-0.010665894;0.017105103 +33947;12;0.16013403;0.1783191;0.59871924;0.76426095 +33948;0;-0.888443;4.7794952;8.807983 +33949;1;-0.777197;4.496078;8.684317 +33949;3;0.060836792;-0.011276245;0.017105103 +33949;2;-0.010080516;-0.17273378;-0.22694492; +33951;0;-0.91711426;4.803253;8.822296 +33952;12;0.16026653;0.17838205;0.59872264;0.7642157 +33952;3;0.06388855;-0.011276245;0.017715454 +33954;0;-0.9219055;4.793747;8.812759 +33954;1;-0.776517;4.4989758;8.682877 +33954;3;0.06817627;-0.011276245;0.018325806 +33956;4;14.143372;-21.290588;-46.647644 +33956;6;-1.1566094;-0.4959096;0.10423121 +33956;7;0.35494092;-0.80516607;0.4751048;0.0;0.93039936;0.35396558;-0.09521209;0.0;-0.091509216 +33956;0;-0.91711426;4.8079987;8.84137 +33956;3;0.06817627;-0.010665894;0.018936157 +33957;12;0.16041099;0.17845714;0.5987204;0.7641697 +33958;5;999.5997 +33958;0;-0.95054626;4.827011;8.81752 +33958;1;-0.77584165;4.5021276;8.681304 +33958;3;0.07122803;-0.011276245;0.02015686 +33961;0;-0.9648895;4.8127594;8.798447 +33961;12;0.16056597;0.1785433;0.5987176;0.7641192 +33961;3;0.06878662;-0.011276245;0.021987915 +33964;0;-0.92666626;4.827011;8.78891 +33964;1;-0.775121;4.505382;8.679679 +33964;3;0.06878662;-0.010665894;0.022598267 +33967;4;13.392639;-21.740723;-47.096252 +33967;6;-1.1212072;-0.49991226;0.10504774 +33967;7;0.38693264;-0.79041135;0.47490326;0.0;0.91750467;0.3814117;-0.11273957;0.0;-0.092023015 +33967;0;-0.94099426;4.827011;8.769836 +33967;3;0.06817627;-0.010055542;0.025650024 +33967;12;0.16072725;0.17863043;0.59871846;0.76406425 +33969;0;-0.95054626;4.8555145;8.755524 +33969;1;-0.7743692;4.508638;8.678056 +33969;3;0.06695557;-0.011276245;0.025650024 +33969;2;0.1049602;-0.25058222;-0.15954399; +33971;0;-0.95054626;4.869766;8.76506 +33971;3;0.06695557;-0.00944519;0.026870728 +33971;12;0.16088797;0.17871863;0.59872544;0.76400435 +33973;0;-0.98876953;4.874527;8.78891 +33973;1;-0.773613;4.511819;8.67647 +33973;3;0.06510925;-0.008834839;0.02748108 +33977;4;13.093567;-21.290588;-45.89691 +33977;6;-1.0935068;-0.50372237;0.112030886 +33977;7;0.40856123;-0.7779164;0.4774138;0.0;0.90746427;0.4023154;-0.12104167;0.0;-0.097910635 +33977;0;-0.97442627;4.8982697;8.755524 +33977;3;0.062057495;-0.0076141357;0.029312134 +33979;12;0.16104458;0.17880462;0.5987361;0.7639429 +33979;0;-0.97442627;4.9220276;8.78891 +33981;1;-0.7728923;4.5149407;8.67491 +33981;3;0.06022644;-0.004562378;0.031143188 +33982;0;-0.94099426;4.917267;8.76506 +33984;12;0.16119657;0.17888969;0.59875345;0.7638772 +33984;3;0.057785034;-0.0027313232;0.031143188 +33984;0;-0.9792175;4.917267;8.7603 +33984;3;0.05168152;0.0015563965;0.031143188 +33985;1;-0.77229017;4.517874;8.673436 +33985;4;15.04364;-22.340393;-45.89691 +33985;6;-1.2271874;-0.5088413;0.11131691 +33985;7;0.2838477;-0.8222602;0.49327332;0.0;0.95394903;0.2942068;-0.058510527;0.0;-0.09701348 +33986;0;-0.9457855;4.8982697;8.717377 +33986;3;0.04862976;0.0021514893;0.03175354 +33986;12;0.16133389;0.17897572;0.5987793;0.76380795 +33987;1;-0.77189875;4.5204425;8.6721325 +33987;0;-0.95054626;4.9030304;8.731674 +33988;2;0.13494134;-0.320436;-0.12327576; +33988;3;0.044952393;0.005218506;0.032974243 +33991;0;-0.93144226;4.9220276;8.731674 +33991;12;0.1614481;0.1790583;0.59881175;0.7637389 +33991;3;0.04373169;0.008865356;0.034210205 +33991;1;-0.77166235;4.522777;8.670937 +33991;0;-0.9457855;4.9030304;8.745987 +33992;3;0.04067993;0.011932373;0.03543091 +33994;4;13.842773;-21.890259;-46.946716 +33994;6;-1.109975;-0.5084718;0.10772078 +33994;7;0.39522457;-0.7823737;0.4813407;0.0;0.91377145;0.38842675;-0.11893871;0.0;-0.093911104 +33994;0;-0.93144226;4.8982697;8.774612 +33994;3;0.03945923;0.017425537;0.03543091 +33995;12;0.16154398;0.1791399;0.5988529;0.76366735 +33996;5;999.5997 +33996;1;-0.77169365;4.52491;8.66982 +33996;0;-0.93144226;4.879257;8.717377 +33996;3;0.037628174;0.021697998;0.03665161 +33999;0;-0.93621826;4.869766;8.73645 +34000;12;0.16162139;0.17922817;0.5989022;0.7635914 +34000;3;0.04006958;0.02659607;0.038482666 +34002;1;-0.7720614;4.5269895;8.668701 +34002;0;-0.90756226;4.874527;8.722153 +34002;3;0.042510986;0.032089233;0.038482666 +34004;4;13.243103;-22.790527;-44.996643 +34004;6;-1.286278;-0.50733596;0.103679456 +34004;7;0.23092684;-0.8389028;0.49286395;0.0;0.968757;0.24533933;-0.036310516;0.0;-0.09045792 +34004;0;-0.897995;4.8982697;8.73645 +34004;3;0.042510986;0.03819275;0.04031372 +34004;12;0.16168526;0.17933017;0.59896;0.7635087 +34006;0;-0.91711426;4.8982697;8.774612 +34007;3;0.044952393;0.044296265;0.041534424 +34007;1;-0.77282053;4.5292377;8.6674595 +34007;2;0.09638488;-0.30536175;-0.11084938; +34009;0;-0.91711426;4.86026;8.750748 +34009;12;0.16173922;0.17945619;0.5990239;0.76341754 +34010;3;0.04862976;0.05102539;0.042144775 +34011;1;-0.77406144;4.531629;8.6661 +34011;0;-0.91711426;4.841263;8.726913 +34012;3;0.053512573;0.060180664;0.04397583 +34015;4;13.243103;-21.890259;-45.747375 +34015;6;-1.1775805;-0.5041572;0.104706 +34015;7;0.33442757;-0.808759;0.48380485;0.0;0.937968;0.33548865;-0.08754125;0.0;-0.09151126 +34015;0;-0.897995;4.817505;8.750748 +34015;3;0.055343628;0.068740845;0.046417236 +34015;12;0.16178252;0.17960857;0.5990957;0.76331615 +34016;1;-0.77588534;4.5343013;8.664538 +34016;0;-0.874115;4.793747;8.722153 +34016;3;0.059005737;0.07423401;0.04763794 +34018;0;-0.855011;4.8127594;8.717377 +34018;12;0.16181763;0.17979875;0.59917736;0.76319987 +34018;3;0.06451416;0.080947876;0.050079346 +34020;1;-0.7781419;4.5372953;8.662768 +34020;0;-0.874115;4.7985077;8.731674 +34021;3;0.06939697;0.088897705;0.05192566 +34022;4;15.04364;-22.640991;-45.596313 +34022;6;-1.3245251;-0.50039744;0.0997761 +34022;7;0.19622824;-0.8509194;0.4872684;0.0;0.9766555;0.21389887;-0.019776978;0.0;-0.08739756 +34023;0;-0.855011;4.793747;8.741211 +34023;3;0.07305908;0.09378052;0.053756714 +34024;12;0.1618481;0.18002109;0.5992678;0.76307 +34025;1;-0.7808308;4.5406632;8.660762 +34026;2;0.038688302;-0.21443176;-0.1113224; +34026;0;-0.8072357;4.784256;8.750748 +34026;3;0.07305908;0.09988403;0.054977417 +34027;0;-0.826355;4.7747498;8.741211 +34028;12;0.16187827;0.18027745;0.59936744;0.76292473 +34028;3;0.0791626;0.104766846;0.05680847 +34030;0;-0.840683;4.7700043;8.73645 +34030;1;-0.7839074;4.544227;8.658613 +34031;3;0.08161926;0.11027527;0.05680847 +34032;4;13.392639;-22.340393;-45.89691 +34032;6;-1.2671748;-0.49782246;0.095931694 +34032;7;0.253957;-0.8384361;0.4822143;0.0;0.9635471;0.2626894;-0.05070617;0.0;-0.08415871 +34032;0;-0.831131;4.750992;8.7603 +34033;3;0.08343506;0.11515808;0.059249878 +34033;12;0.16190113;0.18055958;0.5994753;0.7627684 +34036;1;-0.7873766;4.548038;8.656298 +34037;5;999.5997 +34042;12;0.16192028;0.18086858;0.599589;0.7626018 +34042;1;-0.7912457;4.5517726;8.653982 +34042;0;-0.826355;4.7319946;8.76506 +34042;3;0.08099365;0.121276855;0.05986023 +34042;0;-0.826355;4.712982;8.741211 +34043;12;0.16192205;0.1811942;0.59971076;0.7624284 +34043;3;0.08161926;0.12554932;0.05986023 +34044;0;-0.826355;4.693985;8.73645 +34044;3;0.07977295;0.12860107;0.061080933 +34044;1;-0.7952949;4.5553994;8.651702 +34044;4;15.342712;-22.04132;-46.347046 +34044;6;-1.3016934;-0.49117622;0.09430647 +34044;7;0.22186883;-0.8500433;0.47770348;0.0;0.9715346;0.2344356;-0.034064718;0.0;-0.083034225 +34045;2;-0.021362841;-0.11345053;-0.11498737; +34045;0;-0.8215637;4.693985;8.688751 +34045;3;0.077941895;0.13043213;0.06291199 +34045;0;-0.831131;4.6797333;8.6792145 +34045;3;0.074279785;0.12799072;0.06352234 +34047;12;0.16191082;0.18152392;0.5998391;0.7622514 +34047;0;-0.816803;4.6559753;8.688751 +34047;3;0.070007324;0.124938965;0.06535339 +34050;0;-0.845459;4.6749725;8.70784 +34050;1;-0.7991631;4.558722;8.649596 +34050;3;0.06573486;0.121276855;0.065963745 +34051;4;12.942505;-21.440125;-46.496582 +34051;6;-1.17648;-0.4907537;0.096788324 +34051;7;0.34032977;-0.81429446;0.47021297;0.0;0.9364354;0.33883566;-0.09099038;0.0;-0.085231945 +34051;0;-0.859787;4.65123;8.70784 +34052;3;0.06022644;0.11639404;0.06718445 +34052;12;0.1618916;0.18183702;0.599971;0.76207703 +34054;0;-0.883667;4.6417236;8.693527 +34054;1;-0.80271703;4.561645;8.647725 +34054;3;0.054122925;0.112716675;0.06840515 +34056;0;-0.826355;4.6749725;8.703064 +34057;12;0.16186674;0.18212256;0.6001102;0.76190436 +34057;3;0.050460815;0.10661316;0.06840515 +34059;1;-0.80576783;4.5641384;8.646126 +34063;12;0.1618364;0.18237267;0.6002545;0.76173747 +34071;0;-0.8072357;4.646469;8.731674 +34072;2;-0.027880013;-0.033029556;-0.10328007; +34072;1;-0.8081683;4.5659966;8.64492 +34072;1;-0.80979085;4.5673327;8.644062 +34072;12;0.16180074;0.18257248;0.6004032;0.76157993 +34072;3;0.04067993;0.09988403;0.070251465 +34072;4;13.842773;-20.840454;-45.29724 +34072;6;-1.2401251;-0.48726484;0.09218709 +34072;7;0.2825325;-0.83574647;0.4708537;0.0;0.9558027;0.28689092;-0.06430287;0.0;-0.081342734 +34072;0;-0.840683;4.6654816;8.741211 +34072;3;0.033966064;0.09011841;0.070251465 +34072;0;-0.7976837;4.636963;8.726913 +34072;3;0.02784729;0.08218384;0.07147217 +34072;0;-0.8120117;4.6417236;8.717377 +34072;3;0.021743774;0.072402954;0.07269287 +34072;0;-0.8215637;4.6322327;8.726913 +34072;3;0.014419556;0.06262207;0.07269287 +34072;4;13.842773;-21.440125;-46.496582 +34072;6;-1.2359251;-0.48615703;0.09386475 +34072;7;0.28584123;-0.8350235;0.47013876;0.0;0.9546872;0.29056883;-0.06435792;0.0;-0.08286729 +34072;0;-0.7785797;4.646469;8.774612 +34072;12;0.16176829;0.18271996;0.60055286;0.7614334 +34072;3;0.011367798;0.052856445;0.07147217 +34072;5;999.5997 +34073;0;-0.74513245;4.6179657;8.812759 +34073;1;-0.81052;4.568134;8.643571 +34073;3;0.008926392;0.04673767;0.07084656 +34075;0;-0.70692444;4.61322;8.803207 +34075;12;0.16174202;0.18280944;0.6007027;0.76129925 +34075;3;0.0064697266;0.04307556;0.069625854 +34077;0;-0.71647644;4.5847015;8.850922 +34078;3;0.007080078;0.04307556;0.065963745 +34078;1;-0.81068873;4.5686607;8.643277 +34080;4;12.942505;-22.491455;-44.996643 +34080;6;-1.4559091;-0.47660443;0.08077324 +34080;7;0.07748928;-0.8827002;0.46350387;0.0;0.9944121;0.10185951;0.027734675;0.0;-0.071693674 +34080;0;-0.67349243;4.5989685;8.889069 +34080;3;0.007080078;0.044906616;0.065963745 +34081;12;0.16172253;0.18286508;0.60084724;0.7611759 +34082;0;-0.69737244;4.5894623;8.941528 +34083;1;-0.81087;4.5690928;8.643032 +34083;2;-0.12130743;0.010429382;-0.20714664; +34083;3;0.010147095;0.05102539;0.06291199 +34085;0;-0.6687012;4.57045;8.998749 +34085;12;0.16169907;0.18291661;0.6009847;0.7610601 +34085;3;0.016860962;0.059570312;0.05986023 +34087;0;-0.65914917;4.556198;8.970154 +34087;1;-0.8115848;4.569703;8.642642 +34087;3;0.02357483;0.0705719;0.057418823 +34090;4;12.942505;-22.491455;-44.996643 +34090;6;-1.5039357;-0.46888408;0.073350646 +34090;7;0.033588395;-0.8900799;0.45456526;0.0;0.99729526;0.059600152;0.043011103;0.0;-0.06537548 +34090;0;-0.64482117;4.537201;8.994003 +34091;3;0.030914307;0.085235596;0.053756714 +34091;12;0.16166787;0.18299726;0.6011176;0.7609424 +34092;0;-0.65437317;4.5419617;9.041687 +34092;1;-0.8133394;4.5708156;8.641888 +34092;3;0.04067993;0.10110474;0.053146362 +34094;0;-0.63049316;4.53244;9.013062 +34095;12;0.16162594;0.18313889;0.6012414;0.7608193 +34095;3;0.055343628;0.11820984;0.05130005 +34097;0;-0.65914917;4.5752106;9.017838 +34097;1;-0.81647074;4.5727906;8.640548 +34098;3;0.066345215;0.13409424;0.05130005 +34099;9;2AEC2AEBC4E1;-68;-2147483648 +34100;4;13.693237;-22.04132;-46.647644 +34100;6;-1.3981231;-0.4684371;0.07296417 +34100;7;0.13893521;-0.87900597;0.45612;0.0;0.9881629;0.15330751;-0.005552046;0.0;-0.065046355 +34100;0;-0.68304443;4.546707;8.984451 +34100;3;0.08099365;0.14875793;0.050079346 +34100;12;0.16157535;0.18337202;0.60136163;0.7606788 +34101;0;-0.7021332;4.5514526;8.979691 +34102;1;-0.82100964;4.575827;8.63851 +34102;2;-0.21283996;0.08160114;-0.39737988; +34102;3;0.09565735;0.16098022;0.048858643 +34104;12;0.1615226;0.18370032;0.60148;0.76051724 +34105;0;-0.69737244;4.4897003;8.984451 +34105;3;0.10910034;0.17503357;0.04824829 +34108;1;-0.826755;4.5800176;8.635741 +34108;0;-0.73080444;4.503952;8.951065 +34108;3;0.12193298;0.18540955;0.047027588 +34110;4;13.693237;-22.04132;-46.647644 +34110;6;-1.4059045;-0.4648519;0.081463724 +34110;7;0.12761697;-0.8817634;0.45410046;0.0;0.9891526;0.14672774;0.006929051;0.0;-0.07273892 +34110;0;-0.7833557;4.53244;8.893829 +34110;3;0.13352966;0.19396973;0.045196533 +34110;12;0.16148198;0.1841251;0.60159147;0.76033497 +34112;0;-0.8215637;4.5752106;8.917694 +34112;1;-0.8335218;4.585301;8.632286 +34112;3;0.14575195;0.20129395;0.045806885 +34112;5;999.6013 +34115;0;-0.835907;4.57045;8.86998 +34115;3;0.15797424;0.20617676;0.04397583 +34115;12;0.16145596;0.18462925;0.60169405;0.76013714 +34116;0;-0.831131;4.5514526;8.850922 +34116;1;-0.8409274;4.5915985;8.62822 +34116;3;0.16468811;0.21107483;0.04336548 +34118;4;13.842773;-22.491455;-46.946716 +34118;6;-1.3741965;-0.47318763;0.09362877 +34118;7;0.15269428;-0.87297326;0.46325177;0.0;0.9847635;0.17387235;0.0030613318;0.0;-0.08321914 +34119;0;-0.850235;4.5752106;8.893829 +34119;3;0.17018127;0.21290588;0.04397583 +34119;12;0.1614525;0.18519413;0.6017888;0.75992525 +34121;0;-0.87890625;4.603714;8.827072 +34121;1;-0.848725;4.598552;8.623752 +34121;2;-0.09941387;0.10564804;-0.31123447; +34121;3;0.17385864;0.21046448;0.041534424 +34123;0;-0.91711426;4.627472;8.831833 +34124;3;0.17752075;0.21046448;0.042755127 +34124;12;0.16146615;0.18580157;0.60187644;0.7597048 +34126;1;-0.85656625;4.6059046;8.619051 +34126;0;-0.94099426;4.6417236;8.774612 +34126;3;0.1793518;0.20678711;0.042755127 +34129;4;13.842773;-22.491455;-46.946716 +34129;6;-1.29158;-0.48421404;0.10683226 +34129;7;0.22631632;-0.850765;0.47432044;0.0;0.9694715;0.24391949;-0.025065467;0.0;-0.094371185 +34130;0;-0.93621826;4.65123;8.779373 +34130;3;0.1769104;0.20373535;0.042144775 +34131;12;0.16149735;0.18642192;0.6019555;0.7594835 +34131;0;-0.9601135;4.660721;8.73645 +34132;1;-0.8641989;4.6133933;8.614283 +34132;3;0.17385864;0.19702148;0.041534424 +34133;0;-0.95054626;4.6987305;8.703064 +34133;12;0.16154246;0.18703882;0.6020315;0.75926185 +34133;3;0.16958618;0.18907166;0.042144775 +34135;1;-0.87133133;4.620684;8.609655 +34137;0;-0.9457855;4.693985;8.674438 +34137;3;0.16407776;0.18235779;0.04031372 +34138;4;13.542175;-22.491455;-48.89679 +34138;6;-1.1234689;-0.49353722;0.10860233 +34138;7;0.38371286;-0.794011;0.47149867;0.0;0.9185058;0.3809372;-0.10599004;0.0;-0.09545411 +34138;0;-0.888443;4.703491;8.65538 +34138;3;0.15736389;0.17503357;0.039093018 +34142;12;0.1615963;0.18762419;0.6021046;0.75904804 +34144;0;-0.9601135;4.7462463;8.693527 +34144;2;0.0057325363;0.0067133904;-0.16242981; +34144;12;0.16164987;0.18817028;0.6021725;0.7588476 +34144;1;-0.87787175;4.6275415;8.605308 +34144;3;0.15063477;0.16830444;0.038482666 +34144;0;-0.95054626;4.7462463;8.698288 +34144;3;0.1439209;0.16220093;0.037261963 +34145;0;-0.9457855;4.7652435;8.693527 +34145;1;-0.8839128;4.633844;8.601296 +34145;3;0.13781738;0.15730286;0.03604126 +34147;4;13.542175;-22.491455;-48.89679 +34147;6;-1.0951337;-0.49893597;0.10836574 +34147;7;0.40923578;-0.78061473;0.47240523;0.0;0.90747285;0.40210274;-0.121681646;0.0;-0.09496898 +34148;0;-0.95054626;4.7747498;8.6839905 +34148;12;0.1617557;0.1886248;0.6020128;0.7588389 +34149;3;0.13108826;0.15182495;0.03236389 +34150;0;-0.95054626;4.817505;8.6410675 +34150;1;-0.8895874;4.6396546;8.597578 +34151;3;0.12437439;0.14631653;0.031143188 +34151;5;999.6013 +34152;12;0.16179827;0.18909258;0.6020727;0.7586658 +34152;0;-0.91711426;4.8127594;8.674438 +34152;3;0.11886597;0.14019775;0.029922485 +34154;0;-0.91711426;4.8317566;8.612442 +34154;1;-0.89482343;4.644954;8.5941725 +34155;3;0.113983154;0.13349915;0.026870728 +34157;4;14.143372;-22.640991;-44.69757 +34157;6;-1.2979727;-0.5088627;0.10608735 +34157;7;0.21825774;-0.8409993;0.49505946;0.0;0.97150016;0.23531201;-0.028562605;0.0;-0.09247231 +34157;0;-0.95054626;4.850769;8.583832 +34157;12;0.16183448;0.1895246;0.6021269;0.75850725 +34158;3;0.10848999;0.12677002;0.023208618 +34159;0;-0.9553375;4.869766;8.598129 +34159;1;-0.8996838;4.649862;8.591011 +34159;2;-0.010903716;-0.10213947;-0.09385204; +34159;3;0.10420227;0.11820984;0.02015686 +34161;0;-0.90756226;4.893524;8.621979 +34162;12;0.16186973;0.18992049;0.6021705;0.758366 +34162;3;0.10116577;0.11149597;0.0158844 +34165;1;-0.9040095;4.654391;8.588103 +34165;0;-0.92666626;4.874527;8.617218 +34165;3;0.0962677;0.10600281;0.012817383 +34166;4;15.193176;-20.541382;-47.247314 +34166;6;-1.0385803;-0.5123365;0.10712492 +34166;7;0.459371;-0.7510456;0.47424537;0.0;0.88334215;0.44228902;-0.15519932;0.0;-0.09319176 +34167;0;-0.92666626;4.907776;8.621979 +34167;3;0.093826294;0.10050964;0.008544922 +34167;12;0.1623025;0.189944;0.6006458;0.7594761 +34168;0;-0.93621826;4.9267883;8.6410675 +34169;1;-0.9080305;4.6585927;8.585401 +34169;3;0.093826294;0.096832275;0.0061035156 +34171;0;-0.90756226;4.9267883;8.6410675 +34171;12;0.1623426;0.19027278;0.6006604;0.75937355 +34172;3;0.09199524;0.093170166;0.0024414062 +34173;0;-0.89323425;4.9315186;8.607666 +34174;1;-0.9118062;4.662691;8.582776 +34174;3;0.090164185;0.09011841;-0.0012207031 +34176;4;14.743042;-22.640991;-45.89691 +34176;6;-1.2153472;-0.51796407;0.10340184 +34176;7;0.29824287;-0.81451875;0.4976046;0.0;0.9502678;0.30236247;-0.07461887;0.0;-0.08967851 +34176;0;-0.9457855;4.893524;8.612442 +34176;3;0.08772278;0.088897705;-0.0036621094 +34177;12;0.16238779;0.19058576;0.6006612;0.7592849 +34178;0;-0.95054626;4.893524;8.6362915 +34179;1;-0.9155897;4.666572;8.580262 +34179;2;-0.044481218;-0.18353987;-0.08118725; +34179;3;0.086502075;0.08706665;-0.0048828125 +34181;0;-0.90756226;4.8887787;8.660141 +34181;12;0.1624285;0.19088575;0.60064965;0.7592099 +34181;3;0.082839966;0.085235596;-0.007949829 +34183;0;-0.91711426;4.884018;8.631531 +34183;1;-0.91924417;4.670214;8.577889 +34183;3;0.08406067;0.08706665;-0.0073394775 +34188;4;12.792969;-21.740723;-45.89691 +34188;6;-1.0910153;-0.5125165;0.10585448 +34188;7;0.41303974;-0.77311593;0.48134184;0.0;0.90604585;0.4022773;-0.13135353;0.0;-0.09208138 +34188;0;-0.93144226;4.874527;8.617218 +34188;3;0.07977295;0.08706665;-0.007949829 +34188;12;0.16247207;0.19116622;0.6006013;0.75916815 +34188;5;999.6013 +34189;0;-0.93621826;4.8460083;8.598129 +34189;1;-0.92299294;4.6737266;8.575575 +34189;3;0.07977295;0.0864563;-0.006729126 +34191;0;-0.97442627;4.874527;8.626755 +34191;12;0.1624993;0.19145203;0.6005824;0.7591054 +34191;3;0.078552246;0.08340454;-0.005508423 +34192;0;-0.97442627;4.86026;8.612442 +34193;1;-0.9266672;4.677123;8.573326 +34193;3;0.07611084;0.083999634;-0.0036621094 +34195;4;13.093567;-22.640991;-46.347046 +34195;6;-1.1493647;-0.5110609;0.11266259 +34195;7;0.35629788;-0.79591006;0.4894681;0.0;0.9292127;0.3567991;-0.09621977;0.0;-0.0980595 +34195;0;-0.97442627;4.869766;8.631531 +34195;3;0.074279785;0.0864563;-0.0036621094 +34196;12;0.16252454;0.19172972;0.6005665;0.75904244 +34197;0;-0.9696655;4.879257;8.588608 +34197;1;-0.93029;4.680375;8.571159 +34198;2;-0.03505665;-0.13646889;-0.085990906; +34198;3;0.07244873;0.08584595;-0.0036621094 +34200;0;-0.98399353;4.884018;8.574295 +34200;12;0.16254473;0.1920027;0.60055673;0.7589769 +34200;3;0.07183838;0.08584595;-0.0024414062 +34202;0;-1.0222168;4.884018;8.602905 +34202;1;-0.93396246;4.68352;8.56904 +34203;3;0.06939697;0.08584595;-0.0018463135 +34204;4;12.643433;-23.240662;-45.29724 +34204;6;-1.2275366;-0.51333964;0.11826777 +34205;7;0.27964312;-0.820291;0.4989212;0.0;0.9545863;0.29317924;-0.053016804;0.0;-0.10278415 +34205;0;-0.9983368;4.8650208;8.6458435 +34205;3;0.06695557;0.08584595;-0.0012207031 +34206;12;0.16255625;0.19227195;0.6005498;0.75891167 +34207;0;-0.98876953;4.869766;8.65538 +34207;1;-0.93757534;4.6864524;8.567043 +34208;3;0.06451416;0.08584595;-0.0048828125 +34210;0;-1.0222168;4.9125214;8.631531 +34211;12;0.16256174;0.1925344;0.6005473;0.7588459 +34211;3;0.06266785;0.0864563;-0.0036621094 +34212;13;352.25598 +34214;0;-1.0317688;4.8887787;8.650604 +34214;3;0.05595398;0.0864563;-0.006729126 +34214;1;-0.94130105;4.689216;8.565122 +34214;4;16.093445;-20.690918;-46.647644 +34214;6;-1.0823418;-0.5113709;0.11871051 +34214;7;0.41477934;-0.7700933;0.48467973;0.0;0.9040415;0.40923116;-0.123445556;0.0;-0.10328142 +34215;0;-1.0078735;4.8460083;8.588608 +34215;3;0.050460815;0.084625244;-0.007949829 +34215;12;0.16255613;0.19279192;0.60054195;0.75878596 +34217;0;-1.0174255;4.8650208;8.593384 +34217;1;-0.94505453;4.69152;8.563446 +34217;2;0.011461139;-0.13062906;-0.09057808; +34217;3;0.044952393;0.08155823;-0.008560181 +34219;0;-1.0365448;4.884018;8.602905 +34219;12;0.16253161;0.19303541;0.60053545;0.7587345 +34219;3;0.04373169;0.07484436;-0.008560181 +34224;1;-0.94857734;4.6934776;8.561984 +34224;0;-1.0699768;4.9125214;8.631531 +34224;3;0.038848877;0.06752014;-0.007949829 +34224;4;13.542175;-22.790527;-45.747375 +34224;6;-1.1708077;-0.5141453;0.12333226 +34224;7;0.33072552;-0.801984;0.49743572;0.0;0.9376284;0.33906263;-0.07674325;0.0;-0.107115015 +34224;0;-1.0413208;4.879257;8.664902 +34224;3;0.033966064;0.06201172;-0.007949829 +34225;12;0.16249996;0.19325365;0.60052747;0.7586921 +34226;0;-1.0556488;4.907776;8.660141 +34226;1;-0.9515198;4.6950793;8.56078 +34227;3;0.030303955;0.055908203;-0.008560181 +34227;5;999.6013 +34228;0;-1.0556488;4.879257;8.650604 +34229;3;0.026626587;0.052246094;-0.009170532 +34230;12;0.16247316;0.1934354;0.60051936;0.75865793 +34231;1;-0.95402807;4.696349;8.559804 +34231;0;-1.0174255;4.879257;8.626755 +34231;3;0.021743774;0.047958374;-0.011001587 +34233;4;16.093445;-22.340393;-45.14618 +34233;6;-1.2627727;-0.5117838;0.11739609 +34233;7;0.24642803;-0.83083737;0.49898157;0.0;0.9637661;0.2643307;-0.035839334;0.0;-0.10211946 +34234;0;-1.0652008;4.9267883;8.6792145 +34234;3;0.022964478;0.040023804;-0.01222229 +34235;12;0.16244785;0.19358627;0.6005092;0.7586329 +34236;0;-1.0604248;4.907776;8.65538 +34236;1;-0.95621085;4.6973743;8.558998 +34236;2;0.041924715;-0.14544916;-0.123449326; +34236;3;0.020523071;0.036361694;-0.014053345 +34238;0;-1.0413208;4.9125214;8.674438 +34239;12;0.1624244;0.19371128;0.6004929;0.7586189 +34239;3;0.022964478;0.032089233;-0.014053345 +34240;0;-1.0269775;4.9315186;8.73645 +34241;1;-0.95800155;4.6983466;8.558264 +34241;3;0.02418518;0.029632568;-0.0158844 +34243;4;14.593506;-21.440125;-44.996643 +34243;6;-1.163651;-0.5109573;0.117013894 +34243;7;0.34085792;-0.8009725;0.49219814;0.0;0.93458307;0.3454126;-0.085116155;0.0;-0.101835735 +34244;0;-0.9983368;4.9267883;8.731674 +34244;3;0.025405884;0.029632568;-0.017105103 +34244;12;0.16241394;0.19381534;0.6004672;0.75861484 +34246;1;-0.95961875;4.6994004;8.557505 +34246;0;-1.0174255;4.8887787;8.741211 +34246;3;0.026626587;0.027816772;-0.017105103 +34249;12;0.16241272;0.19391489;0.6004365;0.758614 +34249;0;-0.9792175;4.884018;8.703064 +34249;3;0.029067993;0.027816772;-0.018325806 +34251;1;-0.9611721;4.700564;8.556691 +34253;0;-1.0078735;4.8887787;8.722153 +34253;3;0.030303955;0.027816772;-0.020767212 +34253;4;15.193176;-22.790527;-46.046448 +34253;6;-1.2564448;-0.5080462;0.115043074 +34253;7;0.25405064;-0.83088297;0.49506748;0.0;0.9619771;0.2701469;-0.040258072;0.0;-0.100291185 +34253;0;-1.0078735;4.874527;8.726913 +34253;3;0.03213501;0.029632568;-0.02017212 +34254;12;0.16241848;0.19401605;0.60040134;0.75861466 +34255;1;-0.9628499;4.7018332;8.555804 +34255;0;-1.0030975;4.850769;8.698288 +34256;3;0.037628174;0.028411865;-0.020767212 +34256;2;-0.0044970512;-0.1390338;-0.19681358; +34257;0;-1.0126648;4.8365173;8.70784 +34258;12;0.16242655;0.19412449;0.60036;0.758618 +34258;3;0.03945923;0.028411865;-0.021392822 +34260;0;-1.0174255;4.869766;8.722153 +34260;3;0.04006958;0.030853271;-0.021392822 +34261;1;-0.9645291;4.703378;8.554767 +34262;4;13.693237;-22.04132;-45.14618 +34262;6;-1.201349;-0.50633854;0.11612365 +34262;7;0.30626854;-0.81551933;0.49104777;0.0;0.9465374;0.31579146;-0.06590108;0.0;-0.10132508 +34263;0;-1.0269775;4.827011;8.774612 +34263;3;0.041900635;0.033309937;-0.021392822 +34263;12;0.1624471;0.19424166;0.60031307;0.75862074 +34265;1;-0.96634245;4.70497;8.553686 +34265;0;-0.9792175;4.841263;8.7603 +34265;3;0.04434204;0.035751343;-0.021987915 +34266;5;999.6013 +34267;0;-1.0413208;4.8127594;8.745987 +34268;3;0.044952393;0.0388031;-0.023208618 +34268;12;0.16246562;0.19436787;0.60026735;0.75862056 +34271;0;-1.0030975;4.8127594;8.717377 +34271;1;-0.9684241;4.706701;8.552499 +34271;3;0.046173096;0.040634155;-0.021392822 +34272;4;14.143372;-22.340393;-46.647644 +34272;6;-1.1914967;-0.5016669;0.114564866 +34272;7;0.3167776;-0.8144642;0.4861071;0.0;0.9431893;0.32464615;-0.07070165;0.0;-0.10022884 +34273;0;-1.0078735;4.760498;8.712601 +34273;3;0.04373169;0.041244507;-0.019546509 +34273;12;0.16248184;0.19450833;0.6002201;0.7586186 +34276;1;-0.97060907;4.7084064;8.5513115 +34277;0;-1.0317688;4.7462463;8.688751 +34277;2;-0.0072534084;-0.051325798;-0.21317768; +34277;3;0.044952393;0.040634155;-0.017105103 +34278;0;-0.98876953;4.717743;8.722153 +34281;12;0.16249186;0.19465327;0.6001782;0.7586123 +34282;3;0.04373169;0.0388031;-0.015274048 +34282;0;-1.0126648;4.7794952;8.73645 +34283;1;-0.9726158;4.7100844;8.550159 +34283;3;0.042510986;0.035751343;-0.012832642 +34283;4;14.743042;-22.340393;-47.096252 +34283;6;-1.2062165;-0.49779022;0.11539764 +34283;7;0.30282044;-0.82089;0.48418936;0.0;0.9476628;0.313285;-0.061544374;0.0;-0.10116808 +34283;0;-0.97442627;4.7700043;8.731674 +34283;3;0.041900635;0.032699585;-0.0116119385 +34283;12;0.16250893;0.19479135;0.60013425;0.758608 +34284;1;-0.97428155;4.711715;8.549071 +34284;0;-0.99354553;4.7747498;8.731674 +34284;3;0.038848877;0.032699585;-0.01222229 +34286;0;-0.98399353;4.7794952;8.650604 +34287;12;0.16253048;0.19491771;0.60010594;0.7585933 +34288;3;0.038238525;0.029037476;-0.01222229 +34289;0;-0.9457855;4.784256;8.660141 +34289;1;-0.97578955;4.713248;8.548055 +34290;3;0.038238525;0.027191162;-0.012832642 +34291;4;14.143372;-22.640991;-46.347046 +34291;6;-1.2428203;-0.50221354;0.10878022 +34291;7;0.27074933;-0.8297974;0.4879868;0.0;0.957935;0.28235108;-0.05136624;0.0;-0.095160015 +34291;0;-0.9792175;4.7747498;8.674438 +34292;3;0.03945923;0.023529053;-0.014663696 +34292;12;0.16255167;0.19503213;0.6000783;0.75858134 +34294;1;-0.9771122;4.7147613;8.547069 +34294;2;-0.04825008;-0.0011672974;-0.18821716; +34294;0;-0.9648895;4.7747498;8.688751 +34294;3;0.03945923;0.019866943;-0.017730713 +34296;0;-0.97442627;4.7652435;8.664902 +34296;3;0.041290283;0.018035889;-0.021392822 +34297;12;0.16257967;0.19513716;0.60004556;0.7585742 +34298;0;-0.9648895;4.7557526;8.65538 +34298;1;-0.97830224;4.716305;8.546082 +34299;17;1;38dead6d7725;15363;2525;-83; +34300;17;1;38dead6d60ff;12132;1198;-70; +34300;17;1;1c1bb5efa29a;3313;4203;-73; +34300;17;1;1c1bb5ecd182;-2849;1196;-44; +34301;3;0.042510986;0.016815186;-0.026885986 +34301;4;14.442444;-22.04132;-45.596313 +34301;6;-1.2452012;-0.49982366;0.11102019 +34301;7;0.2675937;-0.83155495;0.48673403;0.0;0.9586127;0.28074172;-0.047390506;0.0;-0.097238734 +34301;0;-0.98876953;4.7224884;8.6362915 +34301;3;0.045562744;0.014984131;-0.031143188 +34302;12;0.16261639;0.19523434;0.59999704;0.75857955 +34304;1;-0.9796119;4.717912;8.545044 +34304;0;-0.98876953;4.6987305;8.626755 +34304;3;0.049240112;0.01008606;-0.032989502 +34304;5;999.5992 +34307;0;-0.9601135;4.7082367;8.602905 +34307;3;0.05656433;0.00642395;-0.03604126 +34307;12;0.16265829;0.19533463;0.59993064;0.75859743 +34309;1;-0.9806689;4.7198596;8.543847 +34309;0;-0.92666626;4.717743;8.664902 +34309;3;0.060836792;0.0033721924;-0.037261963 +34312;4;15.193176;-21.440125;-44.996643 +34312;6;-1.2687973;-0.49620005;0.10653987 +34312;7;0.24740775;-0.8395998;0.4835923;0.0;0.96438813;0.2615588;-0.03927353;0.0;-0.0935138 +34312;0;-0.883667;4.750992;8.76506 +34312;3;0.06329346;0.0058288574;-0.038482666 +34312;12;0.16272622;0.19543138;0.5998483;0.75862294 +34315;1;-0.98150545;4.722136;8.542493 +34316;0;-0.816803;4.7794952;8.807983 +34316;3;0.06266785;0.009490967;-0.037872314 +34316;2;-0.09507048;0.038172245;-0.17137337; +34316;0;-0.859787;4.7700043;8.798447 +34316;12;0.1628166;0.19553235;0.5997551;0.7586512 +34316;3;0.059005737;0.017425537;-0.037261963 +34318;0;-0.883667;4.7747498;8.73645 +34318;1;-0.9827272;4.724377;8.541114 +34318;3;0.057174683;0.023529053;-0.03970337 +34320;4;13.693237;-22.340393;-46.347046 +34320;6;-1.2417383;-0.49803796;0.10080431 +34320;7;0.2760175;-0.83138645;0.4822977;0.0;0.9570781;0.28389573;-0.05835238;0.0;-0.08840886 +34320;0;-0.93621826;4.7652435;8.664902 +34320;3;0.057174683;0.029037476;-0.040924072 +34321;12;0.16289535;0.19564962;0.5996509;0.7586864 +34322;0;-0.98876953;4.7652435;8.612442 +34322;1;-0.9846843;4.7265263;8.539699 +34322;3;0.059005737;0.030258179;-0.04458618 +34324;0;-0.9792175;4.7557526;8.621979 +34325;12;0.1629431;0.19579473;0.59956086;0.7587099 +34325;3;0.060836792;0.030853271;-0.04824829 +34327;1;-0.9869674;4.7287655;8.538196 +34327;0;-0.9648895;4.7794952;8.626755 +34327;3;0.06510925;0.03147888;-0.051315308 +34331;4;13.842773;-23.54126;-45.29724 +34331;6;-1.3636999;-0.5033025;0.111385554 +34331;7;0.15187797;-0.8572763;0.4919455;0.0;0.9835914;0.18012127;0.0102203265;0.0;-0.0973715 +34331;0;-0.9457855;4.7557526;8.631531 +34331;12;0.1629878;0.19595253;0.5994605;0.75873893 +34331;3;0.066345215;0.030258179;-0.054367065 +34332;0;-0.93621826;4.7224884;8.650604 +34332;1;-0.98934865;4.7311554;8.536596 +34332;3;0.06756592;0.030853271;-0.05619812 +34332;2;-0.10416198;0.0232625;-0.16716099; +34335;0;-0.93621826;4.7700043;8.6792145 +34335;12;0.16303815;0.19611798;0.599347;0.758775 +34335;3;0.06695557;0.030258179;-0.057418823 +34336;0;-0.93144226;4.7890015;8.688751 +34336;1;-0.99178696;4.7336035;8.534955 +34337;3;0.06451416;0.030853271;-0.058029175 +34341;4;14.442444;-21.740723;-46.347046 +34341;6;-1.1853907;-0.5013314;0.10679309 +34341;7;0.3263244;-0.8126161;0.48287407;0.0;0.9406247;0.3296737;-0.08087126;0.0;-0.09347358 +34341;0;-0.9696655;4.7985077;8.6410675 +34341;3;0.06022644;0.029037476;-0.058029175 +34341;12;0.16311353;0.19627047;0.599141;0.75888205 +34342;1;-0.9942879;4.735897;8.533392 +34342;0;-0.9792175;4.7890015;8.579071 +34342;3;0.057785034;0.025970459;-0.05986023 +34342;5;999.5992 +34343;0;-1.0222168;4.760498;8.531357 +34344;12;0.16315804;0.19643754;0.5990178;0.7589266 +34344;3;0.057174683;0.019866943;-0.061080933 +34346;0;-1.0078735;4.784256;8.531357 +34346;1;-0.99662024;4.737994;8.531956 +34346;3;0.059005737;0.008865356;-0.061691284 +34348;4;13.542175;-22.190857;-45.29724 +34348;6;-1.1882495;-0.5081345;0.117592506 +34348;7;0.31774998;-0.8105033;0.4920562;0.0;0.94261813;0.32612133;-0.07152532;0.0;-0.10249852 +34349;0;-0.9553375;4.8127594;8.521835 +34349;3;0.058395386;0.0015563965;-0.06352234 +34350;12;0.16320494;0.19658631;0.59888965;0.7589791 +34351;0;-0.94099426;4.86026;8.6458435 +34351;1;-0.9981734;4.740169;8.530566 +34352;2;-0.08192778;-0.0024690628;-0.10758686; +34352;3;0.054733276;-0.0076141357;-0.065979004 +34353;0;-0.93621826;4.86026;8.731674 +34354;12;0.1632791;0.19670159;0.5987511;0.75904256 +34354;3;0.051071167;-0.00944519;-0.06535339 +34355;0;-0.9553375;4.8555145;8.731674 +34356;1;-0.99921274;4.7420254;8.529412 +34356;3;0.045562744;-0.008224487;-0.0665741 +34358;4;14.143372;-21.290588;-46.647644 +34358;6;-1.1025648;-0.50497645;0.10897712 +34358;7;0.40167758;-0.78098774;0.47823986;0.0;0.9108209;0.39497912;-0.11998679;0.0;-0.09518656 +34358;0;-0.9696655;4.869766;8.688751 +34359;3;0.04067993;-0.0051727295;-0.06719971 +34359;12;0.16381627;0.19640669;0.5968569;0.7604937 +34360;0;-0.9601135;4.8365173;8.621979 +34361;1;-1.0003885;4.7435117;8.528448 +34361;3;0.037017822;-0.0063934326;-0.06842041 +34363;0;-0.9696655;4.803253;8.555222 +34363;12;0.16387661;0.19648142;0.59671247;0.7605747 +34363;3;0.03640747;-0.0076141357;-0.06964111 +34365;0;-0.9983368;4.803253;8.583832 +34365;1;-1.0016377;4.7447186;8.52763 +34365;3;0.033966064;-0.011276245;-0.07208252 +34367;4;13.693237;-22.04132;-45.596313 +34368;6;-1.1725345;-0.507303;0.11578413 +34368;7;0.33348787;-0.80565107;0.48960415;0.0;0.93733114;0.33897436;-0.08066415;0.0;-0.10097607 +34368;0;-0.9792175;4.793747;8.626755 +34368;3;0.03213501;-0.014328003;-0.07208252 +34369;12;0.1639225;0.19654694;0.596567;0.7606619 +34370;0;-0.98399353;4.8079987;8.617218 +34370;1;-1.0027095;4.7457275;8.526942 +34371;2;-0.08531153;-0.030469418;-0.15343952; +34371;3;0.02784729;-0.01739502;-0.073913574 +34372;0;-0.98876953;4.8365173;8.693527 +34373;12;0.16396865;0.19659728;0.5964156;0.7607577 +34373;3;0.022964478;-0.018615723;-0.073913574 +34375;0;-0.9983368;4.8222656;8.698288 +34375;1;-1.0036153;4.746401;8.526462 +34375;3;0.01625061;-0.01676941;-0.073913574 +34377;4;13.542175;-23.54126;-46.046448 +34377;6;-1.3094274;-0.5034393;0.11427391 +34377;7;0.20357567;-0.84617954;0.49248075;0.0;0.97395146;0.22634274;-0.013698466;0.0;-0.099878065 +34378;0;-1.0078735;4.817505;8.6792145 +34378;12;0.16400602;0.19662762;0.59626234;0.76086193 +34378;3;0.011367798;-0.01739502;-0.07513428 +34380;0;-1.0222168;4.86026;8.6410675 +34380;1;-1.0046034;4.746625;8.52622 +34380;3;0.0064697266;-0.019836426;-0.074523926 +34381;5;999.5992 +34382;0;-1.0317688;4.8079987;8.674438 +34383;12;0.16402121;0.19664557;0.59611326;0.76097083 +34383;3;0.0040283203;-0.023498535;-0.074523926 +34385;0;-1.0699768;4.7985077;8.70784 +34385;1;-1.0054506;4.746443;8.526222 +34385;3;-0.0020751953;-0.027160645;-0.073913574 +34387;4;14.892578;-20.840454;-45.747375 +34387;6;-1.1269395;-0.5004928;0.122262254 +34387;7;0.37336844;-0.79233325;0.48249766;0.0;0.92149174;0.37675506;-0.09438472;0.0;-0.106999286 +34387;0;-1.1416473;4.7557526;8.674438 +34387;3;-0.0020751953;-0.030212402;-0.07147217 +34388;12;0.16402142;0.19664337;0.595966;0.76108676 +34391;1;-1.0060971;4.7459292;8.526431 +34391;2;-0.0073416233;-0.009061813;-0.18843746; +34391;0;-1.1416473;4.760498;8.664902 +34391;3;-0.0032958984;-0.036315918;-0.07208252 +34392;0;-1.0890961;4.8127594;8.693527 +34392;12;0.16401957;0.19661821;0.59582245;0.76120603 +34392;3;0.0015869141;-0.042434692;-0.070251465 +34394;0;-1.0317688;4.8222656;8.731674 +34394;1;-1.006152;4.7455163;8.526654 +34394;3;0.0015869141;-0.047317505;-0.06903076 +34396;4;13.542175;-22.790527;-44.996643 +34397;6;-1.2997084;-0.50165784;0.117618516 +34397;7;0.21156052;-0.84476644;0.49154022;0.0;0.97193414;0.23478577;-0.014818229;0.0;-0.10288872 +34397;0;-1.0317688;4.827011;8.798447 +34397;3;3.6621094E-4;-0.047317505;-0.0677948 +34397;12;0.16403866;0.19657032;0.5956779;0.76132727 +34399;1;-1.0057653;4.7451496;8.526905 +34399;0;-1.0269775;4.8222656;8.803207 +34399;3;-8.544922E-4;-0.047317505;-0.06719971 +34401;0;-1.0269775;4.8317566;8.779373 +34402;12;0.16407363;0.19650847;0.5955339;0.7614484 +34402;3;-0.0026855469;-0.046707153;-0.0665741 +34404;1;-1.0053751;4.7446976;8.527202 +34404;0;-1.0508728;4.817505;8.7603 +34404;3;-0.0026855469;-0.046707153;-0.0677948 +34407;4;15.193176;-21.440125;-44.996643 +34407;6;-1.2290417;-0.49977478;0.11938806 +34407;7;0.27897787;-0.82693195;0.48821607;0.0;0.9545907;0.2941499;-0.047248982;0.0;-0.10453701 +34407;0;-1.0699768;4.803253;8.726913 +34408;12;0.1641028;0.19644506;0.5953944;0.7615676 +34408;3;-8.544922E-4;-0.047317505;-0.06903076 +34409;1;-1.0050963;4.7442546;8.527481 +34409;0;-1.1082001;4.817505;8.693527 +34409;2;-0.0020662546;-0.022714615;-0.25646114; +34410;3;0.0034179688;-0.048538208;-0.06964111 +34414;12;0.16413155;0.19638519;0.5952513;0.7616887 +34414;0;-1.0795288;4.8222656;8.703064 +34414;3;0.008300781;-0.048538208;-0.07086182 +34414;0;-1.0699768;4.8079987;8.731674 +34415;1;-1.0047761;4.744116;8.527596 +34415;3;0.014419556;-0.04914856;-0.07330322 +34416;4;14.743042;-20.991516;-45.14618 +34416;6;-1.1647047;-0.5001911;0.12193183 +34416;7;0.33850023;-0.80612606;0.48536402;0.0;0.93489385;0.3466281;-0.07630526;0.0;-0.10672916 +34417;0;-1.0652008;4.8079987;8.741211 +34417;12;0.1641866;0.19632201;0.59505725;0.7618448 +34417;3;0.019302368;-0.0460968;-0.073913574 +34419;0;-1.0652008;4.8127594;8.70784 +34419;1;-1.0045565;4.7444024;8.527463 +34420;3;0.021133423;-0.042434692;-0.07269287 +34420;5;999.5992 +34421;0;-1.0604248;4.793747;8.745987 +34421;12;0.16424738;0.19628693;0.5948963;0.7619663 +34421;3;0.02418518;-0.039382935;-0.07208252 +34424;0;-0.9983368;4.8079987;8.712601 +34424;1;-1.0045356;4.7449203;8.527178 +34424;3;0.025405884;-0.039993286;-0.07086182 +34427;4;13.693237;-22.04132;-45.89691 +34427;6;-1.1911359;-0.5015038;0.114087805 +34427;7;0.31736475;-0.81441987;0.48579827;0.0;0.9430351;0.32496902;-0.07127423;0.0;-0.09982223 +34427;0;-1.0556488;4.8222656;8.664902 +34427;12;0.16431226;0.19627176;0.5947377;0.76208 +34427;3;0.02784729;-0.04121399;-0.070251465 +34430;1;-1.0045829;4.7456613;8.526759 +34430;2;0.01172173;-0.019079208;-0.22725582; +34430;0;-1.1464081;4.86026;8.741211 +34430;3;0.026016235;-0.043045044;-0.07086182 +34433;12;0.16438054;0.19626752;0.59457904;0.76219016 +34433;0;-1.1846313;4.8555145;8.78891 +34433;3;0.026626587;-0.04121399;-0.07269287 +34433;1;-1.004616;4.7463336;8.526381 +34435;0;-1.0652008;4.8317566;8.793686 +34436;3;0.029067993;-0.035720825;-0.07330322 +34436;4;14.442444;-21.740723;-45.89691 +34436;6;-1.18666;-0.4993588;0.120545164 +34436;7;0.31865075;-0.8139114;0.48580867;0.0;0.94197506;0.3289967;-0.066665955;0.0;-0.10556926 +34436;0;-1.0556488;4.7985077;8.698288 +34436;3;0.029067993;-0.031433105;-0.07147217 +34437;12;0.16445714;0.19625047;0.5943984;0.76231897 +34437;0;-1.0843201;4.827011;8.631531 +34437;1;-1.0049565;4.747156;8.525883 +34437;3;0.030303955;-0.02960205;-0.070251465 +34440;0;-1.0795288;4.850769;8.602905 +34440;3;0.03152466;-0.02960205;-0.06842041 +34440;12;0.16452396;0.19626266;0.59423834;0.76242626 +34442;1;-1.0054152;4.7481213;8.525291 +34442;0;-1.0890961;4.817505;8.617218 +34442;3;0.03274536;-0.030212402;-0.06535339 +34445;4;13.842773;-21.141052;-44.996643 +34445;6;-1.1110101;-0.50640124;0.12571949 +34445;7;0.38575268;-0.783677;0.4868729;0.0;0.91606283;0.38806313;-0.10117133;0.0;-0.10965175 +34445;0;-1.1368561;4.850769;8.722153 +34445;12;0.1645875;0.1962833;0.59408444;0.76252717 +34446;3;0.030303955;-0.0289917;-0.06535339 +34447;1;-1.0058422;4.7490644;8.524716 +34447;0;-1.1368561;4.803253;8.6839905 +34447;3;0.027252197;-0.026550293;-0.06535339 +34447;2;0.04716456;-0.028345585;-0.20297432; +34449;0;-1.1798553;4.8222656;8.703064 +34449;12;0.16465098;0.19630371;0.59393716;0.7626228 +34450;3;0.027252197;-0.025939941;-0.06291199 +34452;0;-1.1082001;4.9220276;8.583832 +34452;1;-1.0063926;4.749918;8.524176 +34452;3;0.026016235;-0.020446777;-0.06291199 +34454;4;13.842773;-22.790527;-46.496582 +34454;6;-1.1098878;-0.517077;0.128393 +34454;7;0.38441038;-0.7785587;0.49605948;0.0;0.9164282;0.3866173;-0.1033752;0.0;-0.11130153 +34454;0;-1.0078735;4.907776;8.76506 +34455;3;0.02784729;-0.021057129;-0.05986023 +34455;12;0.16471168;0.19632278;0.59379274;0.76271737 +34456;0;-1.0269775;4.869766;8.908142 +34456;1;-1.0069089;4.7506857;8.523686 +34457;3;0.030914307;-0.0131073;-0.057418823 +34457;5;999.61053 +34459;0;-1.1082001;4.827011;8.879532 +34459;12;0.16475637;0.19634354;0.59366035;0.7628053 +34460;3;0.029067993;-0.0015106201;-0.05558777 +34461;0;-1.1511993;4.803253;8.807983 +34462;1;-1.0080158;4.7515135;8.523093 +34462;3;0.02784729;0.008270264;-0.053756714 +34464;4;14.442444;-22.340393;-46.647644 +34464;6;-1.1976647;-0.49569872;0.12996286 +34464;7;0.30405822;-0.81910914;0.4864246;0.0;0.9458081;0.32065684;-0.05124695;0.0;-0.11399853 +34464;0;-1.1177521;4.827011;8.70784 +34464;3;0.027252197;0.011932373;-0.053146362 +34465;12;0.16478896;0.19639626;0.5935395;0.7628788 +34466;0;-1.0938568;4.8317566;8.726913 +34466;1;-1.0097562;4.7523494;8.522423 +34467;2;0.038730502;-0.04719925;-0.27316666; +34467;3;0.027252197;0.012527466;-0.053146362 +34469;0;-1.1273041;4.817505;8.717377 +34469;3;0.027252197;0.011306763;-0.054367065 +34469;12;0.16479582;0.19647671;0.59343153;0.7629405 +34471;0;-1.1798553;4.8365173;8.731674 +34471;1;-1.0116171;4.753148;8.521756 +34471;3;0.030914307;0.01071167;-0.053146362 +34473;4;13.842773;-22.190857;-44.54651 +34473;6;-1.2378294;-0.50201094;0.13431013 +34473;7;0.26300922;-0.8284701;0.49443245;0.0;0.9576256;0.28652072;-0.02930741;0.0;-0.11738483 +34473;0;-1.1416473;4.8555145;8.750748 +34474;3;0.03274536;0.0076446533;-0.053756714 +34474;12;0.1647983;0.19656134;0.5933242;0.76300174 +34475;0;-1.1320801;4.8887787;8.755524 +34475;1;-1.013348;4.754175;8.520977 +34476;3;0.04067993;0.0058288574;-0.054977417 +34478;0;-1.1607513;4.8887787;8.712601 +34478;12;0.16481581;0.19664948;0.5932131;0.76306164 +34479;3;0.043121338;0.0045928955;-0.05253601 +34480;0;-1.1511993;4.893524;8.712601 +34480;1;-1.0149415;4.7556458;8.519967 +34481;3;0.049850464;0.0027770996;-0.05253601 +34483;4;15.942383;-22.491455;-44.096375 +34483;6;-1.3140521;-0.508065;0.13136943 +34483;7;0.19010769;-0.8450496;0.49975002;0.0;0.9750698;0.22185794;0.0042275116;0.0;-0.114445984 +34483;0;-1.1511993;4.8982697;8.703064 +34483;3;0.05168152;-0.0015106201;-0.05253601 +34484;12;0.1648578;0.19674519;0.5930956;0.7631192 +34485;0;-1.1750793;4.869766;8.70784 +34486;3;0.055343628;-0.0039520264;-0.05253601 +34490;1;-1.0163294;4.757477;8.518779 +34490;2;0.08570635;-0.059509277;-0.24034882; +34490;0;-1.1798553;4.8887787;8.712601 +34491;12;0.16492133;0.19684498;0.5929742;0.7631741 +34491;3;0.058395386;-0.007003784;-0.05192566 +34491;0;-1.2276306;4.869766;8.650604 +34491;1;-1.0175188;4.759562;8.517473 +34491;3;0.061447144;-0.011886597;-0.05253601 +34493;4;15.193176;-22.491455;-44.996643 +34493;6;-1.2310423;-0.50847256;0.14097138 +34493;7;0.2654556;-0.8235576;0.5012845;0.0;0.9562797;0.29109484;-0.028160527;0.0;-0.12272953 +34493;0;-1.1894073;4.9315186;8.669678 +34493;3;0.06451416;-0.019836426;-0.051315308 +34494;12;0.16500576;0.19694531;0.5928471;0.7632286 +34494;0;-1.0652008;5.0455627;8.569519 +34495;3;0.066345215;-0.022277832;-0.05253601 +34495;1;-1.018174;4.762048;8.5160055 +34495;5;999.61053 +34497;12;0.16512886;0.19703203;0.5927152;0.7632821 +34498;0;-0.9696655;5.0217896;8.717377 +34498;3;0.06817627;-0.02960205;-0.050094604 +34499;17;1;38dead6d7725;14136;1839;-83; +34500;17;1;38dead6d60ff;10541;2044;-70; +34500;17;1;1c1bb5efa29a;3530;4455;-73; +34501;17;1;1c1bb5ecd182;-2951;1168;-43; +34501;0;-1.0078735;4.9647827;8.827072 +34501;1;-1.0182011;4.7646313;8.514556 +34501;3;0.06939697;-0.025939941;-0.045806885 +34502;4;14.593506;-22.790527;-46.046448 +34502;6;-1.2357054;-0.50958854;0.11368747 +34502;7;0.27447072;-0.82439244;0.4950181;0.0;0.95648265;0.2870725;-0.052252784;0.0;-0.0990293 +34502;0;-1.0938568;4.9552917;8.741211 +34502;3;0.06817627;-0.019210815;-0.04336548 +34503;12;0.16526672;0.19710131;0.5925792;0.76334 +34504;0;-1.1225281;4.9125214;8.607666 +34504;1;-1.018387;4.7672944;8.513043 +34505;2;0.038522005;-0.13026762;-0.20896721; +34505;3;0.066345215;-0.014953613;-0.042144775 +34506;0;-1.0890961;4.9885406;8.559982 +34507;12;0.16540773;0.19718319;0.59245443;0.7633852 +34508;3;0.06329346;-0.015548706;-0.04397583 +34509;0;-1.0890961;5.007553;8.54567 +34509;1;-1.0188221;4.7699356;8.511512 +34509;3;0.06510925;-0.01739502;-0.04397583 +34511;4;13.392639;-22.340393;-43.94684 +34511;6;-1.1515911;-0.5265366;0.12676087 +34511;7;0.3457377;-0.7896934;0.50680333;0.0;0.9319438;0.3519029;-0.087435655;0.0;-0.10929821 +34512;0;-1.0460968;4.9933014;8.559982 +34512;3;0.06510925;-0.018615723;-0.04397583 +34512;12;0.16553593;0.19727296;0.5923371;0.76342535 +34514;0;-1.0556488;4.969528;8.593384 +34514;1;-1.0191139;4.772553;8.510009 +34514;3;0.06510925;-0.01676941;-0.04336548 +34516;0;-1.0413208;5.0122986;8.621979 +34516;12;0.1656669;0.19735575;0.5922175;0.76346815 +34517;3;0.06451416;-0.012496948;-0.04336548 +34519;0;-1.0317688;4.9790497;8.631531 +34519;1;-1.0195026;4.775144;8.508509 +34519;3;0.062057495;-0.005783081;-0.04336548 +34521;4;14.743042;-22.340393;-44.69757 +34521;6;-1.2080721;-0.52015436;0.118970364 +34521;7;0.29716223;-0.81128156;0.5035044;0.0;0.949256;0.30789462;-0.06413809;0.0;-0.102992274 +34521;0;-1.0317688;4.9885406;8.593384 +34521;3;0.06022644;-8.8500977E-4;-0.042755127 +34522;12;0.16579285;0.19744281;0.59210086;0.7635088 +34523;0;-1.0269775;4.960037;8.512299 +34523;1;-1.0203443;4.777604;8.507027 +34524;2;-0.01884687;-0.15917587;-0.1050148; +34524;3;0.058395386;0.0021514893;-0.042144775 +34526;0;-1.0269775;4.950531;8.474136 +34526;12;0.16589762;0.1975469;0.5919906;0.7635446 +34526;3;0.057785034;0.0021514893;-0.040924072 +34528;0;-1.0460968;4.94104;8.49321 +34528;1;-1.0213951;4.7799544;8.505581 +34529;3;0.05656433;0.0033721924;-0.04031372 +34531;4;14.442444;-22.340393;-44.69757 +34531;6;-1.1738333;-0.5236363;0.12255137 +34531;7;0.3273466;-0.79866546;0.50495327;0.0;0.93895525;0.33481497;-0.07913335;0.0;-0.10586484 +34531;0;-0.9792175;4.9267883;8.497986 +34531;3;0.057785034;0.0027770996;-0.03970337 +34532;12;0.16598916;0.1976544;0.59188676;0.7635774 +34533;0;-1.0699768;4.94104;8.507523 +34533;1;-1.0224357;4.782261;8.504159 +34534;3;0.05656433;0.0021514893;-0.04031372 +34534;5;999.61053 +34535;0;-1.1129761;4.9790497;8.526611 +34536;12;0.16607681;0.19776604;0.5917852;0.76360816 +34536;3;0.05595398;0.0027770996;-0.041534424 +34538;0;-1.0890961;4.9790497;8.517059 +34538;1;-1.0235629;4.7845387;8.502742 +34538;3;0.05656433;0.0070495605;-0.04458618 +34540;4;12.942505;-22.491455;-46.046448 +34540;6;-1.021989;-0.5254907;0.12718211 +34540;7;0.46317306;-0.7380389;0.4906826;0.0;0.87944925;0.45128524;-0.15136291;0.0;-0.109726064 +34540;0;-1.0222168;4.960037;8.507523 +34540;3;0.05595398;0.011306763;-0.04458618 +34541;12;0.16616435;0.19787371;0.5916832;0.7636403 +34543;0;-1.0413208;4.9267883;8.46936 +34543;1;-1.0249593;4.7867837;8.50131 +34543;2;-0.026284456;-0.113740444;-0.0323925; +34544;3;0.054122925;0.014984131;-0.04397583 +34546;0;-1.0556488;4.884018;8.38829 +34546;12;0.16623971;0.19799455;0.59157723;0.7636747 +34546;3;0.05595398;0.016204834;-0.042755127 +34547;0;-1.0365448;4.9315186;8.416901 +34548;1;-1.0266197;4.7889934;8.499865 +34548;3;0.05961609;0.012527466;-0.042144775 +34550;4;15.792847;-21.290588;-44.396973 +34551;6;-1.139474;-0.52671564;0.122533455 +34551;7;0.35912195;-0.78528976;0.50433254;0.0;0.92729014;0.36140797;-0.09755518;0.0;-0.10566073 +34551;0;-0.98399353;4.917267;8.478897 +34551;3;0.055343628;0.012527466;-0.041534424 +34553;12;0.16630639;0.19812284;0.59147555;0.7637056 +34553;1;-1.0280218;4.7912693;8.498413 +34553;0;-0.98399353;4.9220276;8.507523 +34553;3;0.054733276;0.016204834;-0.039093018 +34555;0;-1.0222168;4.9315186;8.526611 +34556;12;0.16638091;0.19824651;0.59137636;0.7637341 +34556;3;0.05290222;0.020477295;-0.038482666 +34558;1;-1.0296161;4.793458;8.496985 +34558;0;-0.98876953;4.998047;8.44075 +34558;3;0.04862976;0.027816772;-0.03604126 +34560;4;14.593506;-22.491455;-44.54651 +34560;6;-1.1739202;-0.53163224;0.11661092 +34560;7;0.3295176;-0.7949816;0.50933534;0.0;0.93880796;0.33318943;-0.08731827;0.0;-0.10028873 +34560;0;-0.9553375;4.9790497;8.455063 +34561;3;0.046798706;0.030258179;-0.037261963 +34561;12;0.16644731;0.19837686;0.5912865;0.7637554 +34563;0;-1.0030975;4.8982697;8.445526 +34563;1;-1.0315639;4.7954;8.495653 +34563;2;-0.07763338;-0.087881565;0.0038995743; +34563;3;0.047409058;0.032699585;-0.03604126 +34565;12;0.16648078;0.19851702;0.59120727;0.763773 +34565;0;-1.0986481;4.8365173;8.38829 +34565;3;0.047409058;0.036972046;-0.037261963 +34567;1;-1.0339781;4.797275;8.494301 +34567;0;-1.1655273;4.827011;8.273819 +34567;3;0.045562744;0.03453064;-0.037872314 +34569;4;15.342712;-23.091125;-45.596313 +34569;6;-1.1777794;-0.52386403;0.13994846 +34569;7;0.3147747;-0.79987526;0.51099557;0.0;0.94144994;0.33161706;-0.060846582;0.0;-0.120785184 +34569;0;-1.1320801;4.893524;8.316757 +34570;3;0.044952393;0.028411865;-0.04031372 +34570;12;0.1665045;0.1986745;0.5911285;0.76378787 +34572;0;-0.99354553;5.0122986;8.292908 +34572;3;0.044952393;0.025360107;-0.040924072 +34572;1;-1.0362078;4.7991962;8.492945 +34572;5;999.61053 +34574;0;-0.888443;4.9790497;8.38829 +34577;12;0.16654024;0.19881797;0.59104717;0.7638057 +34577;1;-1.0379157;4.801045;8.491691 +34578;3;0.046173096;0.021697998;-0.04031372 +34578;0;-0.9219055;4.9030304;8.459839 +34578;3;0.04434204;0.022918701;-0.03604126 +34579;4;13.542175;-22.491455;-44.996643 +34579;6;-1.176302;-0.5227015;0.10854603 +34579;7;0.3321511;-0.79992074;0.49980235;0.0;0.9385438;0.3330217;-0.09073066;0.0;-0.093867704 +34579;0;-0.9601135;4.893524;8.455063 +34580;3;0.041290283;0.029037476;-0.032989502 +34581;12;0.1665798;0.19894117;0.5909611;0.76383156 +34581;0;-0.97442627;4.8887787;8.373978 +34581;2;-0.07252514;-0.052583694;0.0878067; +34582;3;0.03945923;0.032089233;-0.03236389 +34582;1;-1.0396705;4.8027577;8.490507 +34585;12;0.16661482;0.19906712;0.59088737;0.7638482 +34585;0;-0.98876953;4.893524;8.297668 +34585;3;0.034576416;0.032089233;-0.03236389 +34586;1;-1.0416796;4.8043118;8.489382 +34586;0;-1.0126648;4.907776;8.33107 +34586;3;0.03152466;0.030258179;-0.033584595 +34589;4;14.143372;-21.290588;-45.596313 +34589;6;-1.012563;-0.5291597;0.1209594 +34589;7;0.47415277;-0.73218626;0.4889605;0.0;0.8742595;0.4572439;-0.16309056;0.0;-0.10416154 +34589;0;-0.99354553;4.8887787;8.311981 +34589;3;0.030303955;0.029632568;-0.034210205 +34590;12;0.16705354;0.1988439;0.5892134;0.76510257 +34591;0;-1.0413208;4.9315186;8.311981 +34591;1;-1.0436567;4.805618;8.4883995 +34591;3;0.026016235;0.029632568;-0.03604126 +34594;12;0.1670621;0.19896352;0.58914703;0.7651206 +34594;0;-1.0174255;4.9362793;8.345367 +34594;3;0.02418518;0.03147888;-0.039093018 +34595;1;-1.045785;4.80665;8.487554 +34596;0;-1.0938568;4.9220276;8.38829 +34596;3;0.021743774;0.036972046;-0.03970337 +34598;4;15.193176;-21.890259;-44.996643 +34598;6;-1.1173009;-0.526965;0.12967113 +34598;7;0.37597486;-0.7769712;0.5049344;0.0;0.9198649;0.3786752;-0.10224365;0.0;-0.111765765 +34599;0;-1.1511993;4.9362793;8.254761 +34599;3;0.015640259;0.04307556;-0.04031372 +34599;12;0.1670542;0.19908156;0.5890758;0.7651466 +34600;0;-1.0030975;5.040802;8.273819 +34601;1;-1.048389;4.8075323;8.4867325 +34601;2;-0.06019771;-0.07639933;0.13859844; +34601;3;0.013198853;0.037582397;-0.04397583 +34603;12;0.16702972;0.19920574;0.5890082;0.76517165 +34603;0;-0.94099426;4.9933014;8.326294 +34603;3;0.014419556;0.03453064;-0.045196533 +34605;1;-1.0507877;4.808091;8.486119 +34606;0;-0.98399353;4.850769;8.335815 +34606;3;0.01625061;0.040023804;-0.04336548 +34608;4;15.193176;-23.54126;-44.996643 +34608;6;-1.2864532;-0.52401584;0.11750031 +34608;7;0.22229058;-0.83105093;0.5098443;0.0;0.96968275;0.24288493;-0.026874058;0.0;-0.10149981 +34608;0;-1.0699768;4.8079987;8.340591 +34608;3;0.011962891;0.041244507;-0.04031372 +34609;12;0.16698779;0.19931287;0.58893394;0.76521 +34615;0;-1.0843201;4.8555145;8.30722 +34615;1;-1.0534722;4.8085756;8.485511 +34615;3;0.007080078;0.040634155;-0.03665161 +34615;5;999.60205 +34615;12;0.16694207;0.19943397;0.58886427;0.76524204 +34615;0;-1.1320801;4.9220276;8.316757 +34615;3;0.0040283203;0.037582397;-0.03665161 +34619;1;-1.0560162;4.808824;8.485055 +34619;0;-1.1177521;4.907776;8.316757 +34619;3;-8.544922E-4;0.03453064;-0.03665161 +34619;4;15.942383;-22.491455;-45.747375 +34619;6;-1.1327313;-0.5292043;0.13359705 +34619;7;0.3595122;-0.78169984;0.50960404;0.0;0.92602956;0.36616287;-0.09161911;0.0;-0.114979446 +34619;0;-1.0890961;4.8982697;8.283371 +34620;3;-0.00390625;0.03147888;-0.03604126 +34620;12;0.16688678;0.19953789;0.5888079;0.7652704 +34620;0;-1.1225281;4.893524;8.292908 +34620;1;-1.0582805;4.8087487;8.484815 +34620;2;-0.040040255;-0.034764767;0.13635826; +34620;3;-0.007583618;0.029632568;-0.034820557 +34624;12;0.16682498;0.19961934;0.58875334;0.7653046 +34624;0;-1.1082001;4.907776;8.33107 +34624;3;-0.010025024;0.029037476;-0.0317688 +34624;0;-1.0938568;4.8982697;8.283371 +34624;3;-0.0155181885;0.030853271;-0.029327393 +34624;1;-1.0603135;4.8084245;8.484745 +34627;4;13.842773;-22.190857;-45.29724 +34627;6;-1.048634;-0.5302465;0.13129488 +34627;7;0.43707466;-0.74772376;0.4998749;0.0;0.8923061;0.43026757;-0.13660035;0.0;-0.11294065 +34627;0;-1.1034241;4.9362793;8.297668 +34627;3;-0.016738892;0.028411865;-0.02810669 +34627;12;0.16676325;0.19968134;0.58869344;0.76534784 +34629;0;-1.1464081;4.917267;8.297668 +34629;1;-1.0622823;4.8078556;8.48482 +34629;3;-0.020401001;0.028411865;-0.025650024 +34631;0;-1.0938568;4.8887787;8.302444 +34632;12;0.16668506;0.19973464;0.58865803;0.76537824 +34632;3;-0.02406311;0.024749756;-0.023834229 +34635;1;-1.0640213;4.807047;8.485062 +34635;0;-1.1320801;4.9125214;8.249985 +34635;3;-0.02772522;0.021697998;-0.023834229 +34640;12;0.16660117;0.19977388;0.58863115;0.7654071 +34640;1;-1.0655292;4.805865;8.485541 +34640;4;14.593506;-22.190857;-45.29724 +34640;6;-1.0558035;-0.5329821;0.13637039 +34640;7;0.42783955;-0.7495824;0.50505406;0.0;0.8962382;0.42421275;-0.12961729;0.0;-0.11709151 +34641;2;0.0038110018;-0.060771465;0.14397717; +34641;0;-1.1750793;4.907776;8.350128 +34641;3;-0.033843994;0.01864624;-0.026885986 +34641;0;-1.0938568;4.94104;8.354904 +34641;3;-0.041778564;0.01864624;-0.026885986 +34641;0;-1.0174255;4.98378;8.559982 +34642;12;0.16651258;0.19978279;0.5886064;0.7654429 +34642;3;-0.05154419;0.019866943;-0.024429321 +34643;0;-1.0699768;4.9315186;8.65538 +34644;1;-1.066845;4.803927;8.486474 +34644;3;-0.06437683;0.030258179;-0.025650024 +34646;4;14.593506;-23.240662;-45.747375 +34646;6;-1.2448385;-0.5146345;0.122995846 +34646;7;0.26058897;-0.8246374;0.50206226;0.0;0.9595251;0.2787396;-0.04019928;0.0;-0.10679479 +34646;0;-1.1750793;4.874527;8.474136 +34646;3;-0.07659912;0.040023804;-0.02810669 +34647;12;0.16638888;0.19976577;0.5885883;0.76548815 +34648;0;-1.2419586;4.8887787;8.33107 +34648;1;-1.0690897;4.8010483;8.487821 +34649;3;-0.08331299;0.046142578;-0.029922485 +34649;5;999.60205 +34651;0;-1.2324066;4.8982697;8.297668 +34651;12;0.16619994;0.19975631;0.58858305;0.7655359 +34651;3;-0.08270264;0.04185486;-0.0317688 +34653;0;-1.2276306;4.9125214;8.335815 +34653;1;-1.071822;4.7977185;8.489358 +34653;3;-0.08514404;0.03514099;-0.032989502 +34655;4;15.792847;-22.04132;-45.14618 +34655;6;-1.0991285;-0.5278542;0.14622073 +34655;7;0.38415042;-0.7695632;0.5100989;0.0;0.91465044;0.39252788;-0.09662506;0.0;-0.12586896 +34655;0;-1.2228394;4.9125214;8.397842 +34656;3;-0.085754395;0.025360107;-0.0317688 +34656;12;0.165974;0.19974571;0.58858025;0.76558965 +34658;0;-1.1798553;4.8982697;8.512299 +34659;1;-1.0739672;4.7942047;8.491072 +34659;2;0.04832089;-0.07161474;0.0126981735; +34659;3;-0.0869751;0.018035889;-0.030548096 +34660;0;-1.1511993;4.94104;8.65538 +34661;12;0.1657601;0.19969903;0.58857244;0.7656543 +34661;3;-0.0869751;0.016815186;-0.029327393 +34662;0;-1.1559601;4.9267883;8.674438 +34663;1;-1.0754356;4.790556;8.492946 +34663;3;-0.08758545;0.020477295;-0.026260376 +34665;4;14.143372;-23.091125;-46.647644 +34665;6;-1.1539636;-0.5127611;0.13247998 +34665;7;0.34206468;-0.79678094;0.49812838;0.0;0.9325999;0.3527979;-0.07609856;0.0;-0.115104765 +34665;0;-1.1846313;4.9125214;8.6792145 +34666;12;0.16556169;0.19962275;0.58856136;0.7657257 +34666;3;-0.09309387;0.023529053;-0.022613525 +34667;0;-1.1846313;4.9030304;8.660141 +34667;1;-1.0770047;4.7867694;8.494882 +34668;3;-0.09370422;0.027816772;-0.02017212 +34670;0;-1.2085114;4.8555145;8.669678 +34671;12;0.16535008;0.19954887;0.5885673;0.76578593 +34671;3;-0.09124756;0.029632568;-0.018325806 +34672;0;-1.1894073;4.86026;8.70784 +34672;1;-1.078746;4.7828646;8.49686 +34673;3;-0.08943176;0.032089233;-0.016494751 +34674;4;14.892578;-22.190857;-45.29724 +34674;6;-1.2078452;-0.5051533;0.13575034 +34674;7;0.29054132;-0.8180903;0.49630037;0.0;0.94950515;0.31069088;-0.043718077;0.0;-0.11843064 +34675;0;-1.1846313;4.8555145;8.750748 +34675;3;-0.08453369;0.032699585;-0.0116119385 +34675;12;0.1651258;0.19947958;0.5885871;0.7658372 +34677;0;-1.1989594;4.879257;8.769836 +34677;1;-1.080505;4.779161;8.498719 +34677;2;0.053468704;-0.0659318;-0.22989845; +34677;3;-0.08087158;0.036361694;-0.008560181 +34679;0;-1.2037506;4.8982697;8.803207 +34680;3;-0.07537842;0.04185486;-0.0048828125 +34680;12;0.16490757;0.19942269;0.58861524;0.7658774 +34683;17;0;38dead6d7725;0;0;0; +34684;17;1;38dead6d60ff;11308;998;-70; +34684;17;1;1c1bb5efa29a;4687;3635;-73; +34685;17;1;1c1bb5ecd182;-3484;1605;-43; +34685;0;-1.1798553;4.874527;8.860458 +34685;1;-1.082346;4.775862;8.5003395 +34685;3;-0.07170105;0.049194336;-0.0048828125 +34685;4;14.743042;-22.340393;-45.596313 +34685;6;-1.239445;-0.499251;0.13238086 +34685;7;0.26271757;-0.8301846;0.49170431;0.0;0.95788866;0.28561297;-0.029576115;0.0;-0.11588348 +34685;0;-1.2132874;4.86026;8.922455 +34685;3;-0.066207886;0.055908203;-0.0024414062 +34685;12;0.16469872;0.19938418;0.5886541;0.7659025 +34687;0;-1.1894073;4.841263;8.893829 +34687;1;-1.0846665;4.772877;8.50172 +34687;3;-0.06254578;0.06384277;0.0 +34688;5;999.60205 +34689;0;-1.2324066;4.869766;8.941528 +34689;12;0.16448742;0.19938204;0.58870125;0.76591223 +34690;3;-0.057662964;0.06996155;0.0036621094 +34692;0;-1.2180786;4.869766;8.989227 +34692;1;-1.0874643;4.770272;8.502826 +34692;3;-0.053390503;0.076675415;0.0048828125 +34693;4;15.942383;-21.890259;-45.29724 +34694;6;-1.2754006;-0.4926738;0.13468392 +34694;7;0.22772197;-0.8429096;0.4874897;0.0;0.9665123;0.25649607;-0.007986009;0.0;-0.11830772 +34694;0;-1.2132874;4.86026;9.003525 +34694;3;-0.045440674;0.080947876;0.00793457 +34695;12;0.16427366;0.19941515;0.5887602;0.76590425 +34696;0;-1.2324066;4.8555145;9.036911 +34696;1;-1.0906289;4.7680855;8.503647 +34696;2;0.0718056;-0.051252365;-0.46050072; +34697;3;-0.041778564;0.08584595;0.009155273 +34698;0;-1.2324066;4.879257;9.056 +34699;12;0.1640637;0.19948287;0.5888271;0.76588017 +34699;3;-0.033218384;0.08950806;0.012207031 +34701;0;-1.2419586;4.874527;9.041687 +34701;1;-1.0940653;4.7664123;8.504143 +34701;3;-0.025894165;0.093170166;0.013427734 +34703;4;16.093445;-22.04132;-44.69757 +34703;6;-1.3271273;-0.49055552;0.13650495 +34703;7;0.17680426;-0.8560142;0.4857775;0.0;0.97689927;0.2128128;0.019455075;0.0;-0.1200335 +34704;0;-1.2180786;4.850769;9.027374 +34705;3;-0.019180298;0.09378052;0.015258789 +34705;12;0.16386549;0.19958194;0.58889943;0.7658412 +34707;1;-1.0976384;4.76537;8.504266 +34707;0;-1.2324066;4.879257;9.027374 +34707;3;-0.01184082;0.09194946;0.017105103 +34710;0;-1.2897186;4.879257;9.056 +34710;12;0.16368802;0.19971287;0.5889733;0.7657881 +34710;3;-0.0057373047;0.08706665;0.02015686 +34712;1;-1.1010215;4.7648773;8.504105 +34712;0;-1.2849579;4.841263;9.094147 +34712;3;3.6621094E-4;0.08218384;0.020767212 +34713;4;15.193176;-21.440125;-44.096375 +34713;6;-1.3083011;-0.48510242;0.14036587 +34713;7;0.1939359;-0.8543247;0.48220137;0.0;0.97317576;0.22955285;0.015302621;0.0;-0.123764105 +34714;0;-1.1798553;4.9267883;9.184769 +34714;3;0.0034179688;0.076675415;0.023208618 +34715;12;0.16354278;0.19985077;0.5890478;0.76572603 +34716;1;-1.103776;4.7648096;8.503786 +34717;0;-1.2228394;4.907776;9.313538 +34717;3;0.0040283203;0.07423401;0.023208618 +34717;2;0.08654404;-0.06784153;-0.62927246; +34718;0;-1.2610626;4.8460083;9.21814 +34719;3;0.0064697266;0.076675415;0.024429321 +34719;12;0.16342995;0.1999809;0.58911985;0.7656605 +34721;1;-1.1064531;4.764872;8.503404 +34721;0;-1.3183899;4.869766;9.089371 +34721;3;0.013809204;0.07484436;0.02381897 +34723;4;14.743042;-22.640991;-46.347046 +34723;6;-1.2686193;-0.48752755;0.1440429 +34723;7;0.23032118;-0.8434634;0.48530558;0.0;0.9648152;0.2629271;-9.2314184E-4;0.0;-0.12682137 +34724;0;-1.3279419;4.8887787;9.056 +34724;3;0.022964478;0.06690979;0.022598267 +34724;12;0.16333187;0.2001151;0.5891871;0.76559466 +34726;1;-1.108986;4.765543;8.502697 +34727;0;-1.2897186;4.8982697;9.094147 +34729;3;0.034576416;0.05529785;0.021377563 +34729;5;999.60205 +34729;0;-1.2610626;4.9552917;9.151382 +34729;12;0.16326597;0.20025858;0.5892488;0.76552373 +34729;3;0.046173096;0.04673767;0.020767212 +34731;0;-1.2419586;4.9362793;9.21814 +34732;1;-1.1106637;4.767094;8.501608 +34732;3;0.05656433;0.0388031;0.021987915 +34733;4;15.193176;-22.190857;-44.996643 +34733;6;-1.3266814;-0.48790586;0.13392341 +34733;7;0.17879644;-0.85712755;0.48307782;0.0;0.97679126;0.2134955;0.017276898;0.0;-0.11794344 +34734;0;-1.1941986;4.9315186;9.299225 +34734;3;0.06573486;0.03453064;0.023208618 +34734;12;0.16326687;0.20039198;0.58928967;0.7654572 +34736;1;-1.1116318;4.7694383;8.500167 +34736;0;-1.1941986;4.960037;9.308762 +34736;3;0.07366943;0.033309937;0.024429321 +34736;2;0.10234904;-0.09374428;-0.7123976; +34738;0;-1.2419586;4.9315186;9.275375 +34738;12;0.16332664;0.20052719;0.5893178;0.7653873 +34738;3;0.08161926;0.030853271;0.026870728 +34740;0;-1.2515106;4.9362793;9.184769 +34740;1;-1.1124192;4.772489;8.498352 +34741;3;0.09321594;0.029037476;0.024429321 +34742;4;14.743042;-22.340393;-44.69757 +34742;6;-1.3378932;-0.48932475;0.13542533 +34742;7;0.16694371;-0.85881937;0.48431316;0.0;0.9787384;0.20371851;0.0238754;0.0;-0.1191682 +34742;0;-1.2180786;4.9647827;9.19429 +34743;3;0.10542297;0.02659607;0.024429321 +34743;12;0.16342616;0.20067915;0.5893408;0.7653086 +34745;1;-1.1130362;4.776452;8.496044 +34745;0;-1.2324066;4.94104;9.175232 +34745;3;0.114608765;0.021697998;0.022598267 +34748;0;-1.2228394;4.98378;9.175232 +34748;12;0.16357157;0.20085461;0.58934975;0.7652246 +34748;3;0.1292572;0.020477295;0.024429321 +34750;0;-1.1989594;4.969528;9.189545 +34751;1;-1.1133808;4.781382;8.493225 +34751;3;0.13781738;0.021697998;0.022598267 +34753;4;15.193176;-22.190857;-44.54651 +34753;6;-1.3337688;-0.4922144;0.12973711 +34753;7;0.17341116;-0.85664797;0.48588356;0.0;0.9782275;0.2069391;0.01572062;0.0;-0.114015356 +34753;0;-1.1464081;4.9885406;9.089371 +34753;3;0.14941406;0.021087646;0.023208618 +34753;12;0.1637717;0.20105018;0.58934385;0.76513493 +34754;0;-1.1559601;5.0122986;9.065521 +34754;1;-1.1136819;4.7871957;8.489911 +34755;3;0.15797424;0.017425537;0.024429321 +34755;2;0.047962785;-0.13104534;-0.7121515; +34757;0;-1.2228394;5.031311;9.08461 +34757;12;0.16401032;0.20127779;0.5893259;0.76503795 +34757;3;0.16773987;0.013153076;0.026260376 +34759;1;-1.1137633;4.7938943;8.486119 +34759;0;-1.2180786;5.0455627;9.11322 +34759;3;0.17507935;0.011932373;0.024429321 +34765;4;15.04364;-22.340393;-45.596313 +34765;6;-1.2329415;-0.5019006;0.13287307 +34765;7;0.2684091;-0.8271098;0.4938076;0.0;0.95627785;0.29058447;-0.033066325;0.0;-0.11614335 +34765;0;-1.1989594;5.0550537;9.108459 +34765;3;0.18118286;0.011306763;0.024429321 +34766;12;0.16429757;0.20152336;0.5892975;0.76493347 +34766;1;-1.1136783;4.8011746;8.482014 +34766;0;-1.1846313;5.0550537;9.079834 +34766;3;0.18606567;0.013748169;0.025039673 +34766;5;999.6046 +34766;0;-1.2276306;5.059799;8.917694 +34767;12;0.1646172;0.20178565;0.5892609;0.7648238 +34767;3;0.1927948;0.011306763;0.026260376 +34769;0;-1.3900452;5.1168213;5.874878 +34769;3;0.18301392;-0.024719238;0.02748108 +34769;1;-1.1140208;4.809995;8.47697 +34771;4;15.04364;-22.340393;-45.596313 +34771;6;-0.28980386;-0.7030784;0.2323356 +34771;7;0.890009;-0.21799678;0.40045145;0.0;0.42075127;0.7310441;-0.5371616;0.0;-0.17564818 +34771;0;-1.7865448;5.330597;4.3725433 +34771;3;0.06817627;-0.2079773;0.025650024 +34771;12;0.16505948;0.20222782;0.5891847;0.7646703 +34773;0;-1.7626648;5.6821747;6.4901123 +34773;1;-1.1102521;4.8182797;8.472758 +34773;2;0.21809173;-0.30846977;0.68554974; +34773;3;-0.1211853;-0.39611816;0.02748108 +34775;0;-1.4664917;5.995743;7.6299744 +34776;3;-0.29589844;-0.47431946;0.022598267 +34776;12;0.1655315;0.20228237;0.5891038;0.7646162 +34779;1;-1.092529;4.811919;8.478675 +34780;0;-1.4043732;6.143036;7.1196594 +34780;3;-0.42967224;-0.50730896;0.012817383 +34780;4;14.892578;-23.240662;-44.54651 +34780;6;-0.45125046;-0.702468;0.19475268 +34780;7;0.8283631;-0.33284664;0.45058614;0.0;0.54036784;0.68685067;-0.48604435;0.0;-0.14770712 +34780;0;-1.3422699;5.895981;6.203964 +34780;3;-0.5304718;-0.5525055;-0.0030670166 +34781;12;0.16586953;0.20129202;0.5890544;0.7648424 +34782;0;-1.1320801;5.5396423;5.703186 +34782;1;-1.0714501;4.7953043;8.490769 +34782;3;-0.60928345;-0.62519836;-0.014053345 +34788;0;-0.831131;5.2165833;6.1085663 +34788;3;-0.68074036;-0.7107239;-0.02017212 +34788;0;-0.71647644;4.9030304;7.0385895 +34788;3;-0.73817444;-0.76509094;-0.025650024 +34788;1;-1.0444701;4.770664;8.507994 +34788;12;0.1658464;0.19974343;0.5890628;0.7652468 +34790;4;14.892578;-23.240662;-44.54651 +34791;6;-0.9740799;-0.60602033;0.10144321 +34791;7;0.51132596;-0.6798812;0.52564955;0.0;0.85534656;0.46186176;-0.2346616;0.0;-0.083235405 +34791;0;-0.73558044;4.760498;7.897049 +34791;3;-0.7693176;-0.7657013;-0.03543091 +34792;12;0.16563855;0.1976305;0.5890714;0.7658335 +34792;0;-0.68304443;4.727234;8.488449 +34792;3;-0.7680969;-0.71928406;-0.041534424 +34792;1;-1.0133443;4.7397814;8.528993 +34792;2;-0.020044565;-0.615818;1.4762049; +34794;0;-0.6113739;4.703491;8.827072 +34796;12;0.16532758;0.19513725;0.58907235;0.766539 +34796;3;-0.73327637;-0.6429138;-0.047027588 +34797;0;-0.5015106;4.7462463;9.017838 +34797;3;-0.6618042;-0.5512848;-0.045196533 +34797;1;-0.98603487;4.7088876;8.549282 +34799;4;15.193176;-21.440125;-44.54651 +34799;6;-1.4065899;-0.48384324;0.055555955 +34799;7;0.13773435;-0.87330616;0.4672962;0.0;0.9892488;0.1447055;-0.02114578;0.0;-0.049153592 +34799;0;-0.4298401;4.73674;9.294464 +34799;3;-0.55674744;-0.44865417;-0.03604126 +34800;12;0.164898;0.19282228;0.5890798;0.7672113 +34801;0;-0.43463135;4.660721;9.747543 +34801;1;-0.96566755;4.683255;8.565671 +34802;3;-0.42295837;-0.33137512;-0.018325806 +34803;5;999.6046 +34803;0;-0.5015106;4.470688;10.200623 +34804;12;0.16444775;0.19100313;0.5891014;0.76774627 +34804;3;-0.26657104;-0.20065308;0.004272461 +34806;0;-0.6018219;4.180893;10.529694 +34806;1;-0.9542542;4.667868;8.575344 +34806;3;-0.106536865;-0.059539795;0.026260376 +34808;4;15.193176;-21.440125;-44.54651 +34808;6;-1.8206834;-0.37740815;0.057092626 +34808;7;-0.26726636;-0.90074915;0.34237358;0.0;0.9621616;-0.22989064;0.14627188;0.0;-0.053045787 +34809;0;-0.6018219;4.024109;10.577393 +34809;3;0.053512573;0.083999634;0.050704956 +34809;12;0.1641361;0.18995497;0.5891575;0.7680299 +34811;0;-0.5922699;3.9813385;10.296005 +34812;1;-0.9533134;4.6654124;8.576784 +34812;2;-0.46603024;0.2712903;-1.2639656; +34812;3;0.20072937;0.21290588;0.073287964 +34813;0;-0.69737244;4.1048584;10.167236 +34814;12;0.16403902;0.18985489;0.5892604;0.7679965 +34814;3;0.32901;0.31918335;0.094070435 +34816;0;-0.76901245;4.389923;10.167236 +34816;1;-0.96194595;4.6754637;8.570345 +34817;99;4 diff --git a/measurements/data/wifiModel.xml b/measurements/data/wifiModel.xml new file mode 100644 index 0000000..a57df60 --- /dev/null +++ b/measurements/data/wifiModel.xml @@ -0,0 +1,3 @@ + + +